From 89a23fcc97b992ed6161a406cba4e1a1df62de3a Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 19 Dec 2023 16:07:33 -0700 Subject: [PATCH 01/19] schedule_based_appliance_from_develop --- measures/BuildExistingModel/measure.rb | 155 ++++++++++++++++++ .../Clothes Dryer Usage Level.tsv | 4 +- .../Clothes Washer Usage Level.tsv | 4 +- .../Cooking Range Usage Level.tsv | 4 +- .../Dishwasher Usage Level.tsv | 4 +- project_national/national_baseline.yml | 20 +-- .../resources/README.md | 2 +- 7 files changed, 174 insertions(+), 19 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 81f1a9278e..60d014229a 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -695,6 +695,161 @@ def run(model, runner, user_arguments) return false end + #report sechedule + require 'csv' + schedule_csv_file_path = measures['BuildResidentialScheduleFile'][0]['output_csv_path'] + + # calculate the time that each value represent in hour + if File.exist?(schedule_csv_file_path) + @tmp_schedules = CSV.table(schedule_csv_file_path) + hour_each_value = 8760.0 / @tmp_schedules.length + + cooking_range_max_value = nil + cooking_range_full_load_operation = 0 + cooking_range_operation = 0 + cooking_range_event_num = 0 + + dishwasher_max_value = nil + dishwasher_full_load_operation = 0 + dishwasher_operation = 0 + dishwasher_event_num = 0 + + clothes_washer_max_value = nil + clothes_washer_full_load_operation = 0 + clothes_washer_operation = 0 + clothes_washer_event_num = 0 + + clothes_dryer_max_value = nil + clothes_dryer_full_load_operation = 0 + clothes_dryer_operation = 0 + clothes_dryer_event_num = 0 + + #peak power + CSV.foreach(schedule_csv_file_path, headers: true) do |row| + cooking_range_column_value = row['cooking_range'].to_f + dishwasher_column_value = row['dishwasher'].to_f + clothes_washer_column_value = row['clothes_washer'].to_f + clothes_dryer_column_value = row['clothes_dryer'].to_f + + if cooking_range_max_value.nil? || cooking_range_column_value > cooking_range_max_value + cooking_range_max_value = cooking_range_column_value + end + + if dishwasher_max_value.nil? || dishwasher_column_value > dishwasher_max_value + dishwasher_max_value = dishwasher_column_value + end + + if clothes_washer_max_value.nil? || clothes_washer_column_value > clothes_washer_max_value + clothes_washer_max_value = clothes_washer_column_value + end + + if clothes_dryer_max_value.nil? || clothes_dryer_column_value > clothes_dryer_max_value + clothes_dryer_max_value = clothes_dryer_column_value + end + end + + #number of events and operation hour + cooking_range_previous_row_value = nil + dishwasher_previous_row_value = nil + clothes_washer_previous_row_value = nil + clothes_dryer_previous_row_value = nil + CSV.foreach(schedule_csv_file_path, headers: true) do |row| + cooking_range_column_value = row['cooking_range'].to_f + dishwasher_column_value = row['dishwasher'].to_f + clothes_washer_column_value = row['clothes_washer'].to_f + clothes_dryer_column_value = row['clothes_dryer'].to_f + + if cooking_range_previous_row_value.nil? + cooking_range_previous_row_value = cooking_range_column_value + else + if cooking_range_previous_row_value == 0 && cooking_range_column_value > 0 + cooking_range_event_num += 1 + end + end + cooking_range_previous_row_value = cooking_range_column_value + if cooking_range_column_value == cooking_range_max_value + cooking_range_full_load_operation += 1 + end + if cooking_range_column_value > 0 + cooking_range_operation += 1 + end + + if dishwasher_previous_row_value.nil? + dishwasher_previous_row_value = dishwasher_column_value + else + if dishwasher_previous_row_value == 0 && dishwasher_column_value > 0 + dishwasher_event_num += 1 + end + end + dishwasher_previous_row_value = dishwasher_column_value + if dishwasher_column_value == dishwasher_max_value + dishwasher_full_load_operation += 1 + end + if dishwasher_column_value > 0 + dishwasher_operation += 1 + end + + if clothes_washer_previous_row_value.nil? + clothes_washer_previous_row_value = clothes_washer_column_value + else + if clothes_washer_previous_row_value == 0 && clothes_washer_column_value > 0 + clothes_washer_event_num += 1 + end + end + clothes_washer_previous_row_value = clothes_washer_column_value + if clothes_washer_column_value == clothes_washer_max_value + clothes_washer_full_load_operation += 1 + end + if clothes_washer_column_value > 0 + clothes_washer_operation += 1 + end + + if clothes_dryer_previous_row_value.nil? + clothes_dryer_previous_row_value = clothes_dryer_column_value + else + if clothes_dryer_previous_row_value == 0 && clothes_dryer_column_value > 0 + clothes_dryer_event_num += 1 + end + end + clothes_dryer_previous_row_value = clothes_dryer_column_value + if clothes_dryer_column_value == clothes_dryer_max_value + clothes_dryer_full_load_operation += 1 + end + if clothes_dryer_column_value > 0 + clothes_dryer_operation += 1 + end + end + + #register outputs + cooking_range_full_load_operation_hour = (cooking_range_full_load_operation * hour_each_value).to_s + cooking_range_operation_hour = (cooking_range_operation * hour_each_value).to_s + cooking_range_event_num = (cooking_range_event_num).to_s + register_value(runner, 'cooking_range_full_load_operation_hour', cooking_range_full_load_operation_hour) + register_value(runner, 'cooking_range_operation_hour', cooking_range_operation_hour) + register_value(runner, 'cooking_range_event_num', cooking_range_event_num) + + dishwasher_full_load_operation_hour = (dishwasher_full_load_operation * hour_each_value).to_s + dishwasher_operation_hour = (dishwasher_operation * hour_each_value).to_s + dishwasher_event_num = (dishwasher_event_num).to_s + register_value(runner, 'dishwaser_full_load_operation_hour', dishwasher_full_load_operation_hour) + register_value(runner, 'dishwasher_operation_hour', dishwasher_operation_hour) + register_value(runner, 'dishwasher_event_num', dishwasher_event_num) + + clothes_washer_full_load_operation_hour = (clothes_washer_full_load_operation * hour_each_value).to_s + clothes_washer_operation_hour = (clothes_washer_operation * hour_each_value).to_s + clothes_washer_event_num = (clothes_washer_event_num).to_s + register_value(runner, 'clothes_washer_full_load_operation_hour', clothes_washer_full_load_operation_hour) + register_value(runner, 'clothes_washer_operation_hour', clothes_washer_operation_hour) + register_value(runner, 'clothes_washer_event_num', clothes_washer_event_num) + + clothes_dryer_full_load_operation_hour = (clothes_dryer_full_load_operation * hour_each_value).to_s + clothes_dryer_operation_hour = (clothes_dryer_operation * hour_each_value).to_s + clothes_dryer_event_num = (clothes_dryer_event_num).to_s + register_value(runner, 'clothes_dryer_full_load_operation_hour', clothes_dryer_full_load_operation_hour) + register_value(runner, 'clothes_dryer_operation_hour', clothes_dryer_operation_hour) + register_value(runner, 'clothes_dryer_event_num', clothes_dryer_event_num) + end + # Copy existing.xml to home.xml for downstream HPXMLtoOpenStudio # We need existing.xml (and not just home.xml) for UpgradeCosts in_path = File.expand_path('../home.xml') diff --git a/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv b/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv index 87360f6065..a3c9e0dd19 100644 --- a/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv +++ b/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 1 0 0 0.25 -High 0 0 1 0.25 +Low 0 1 0 0.25 +High 0 1 0 0.25 # Created by: sources\other\tsv_maker.py # Description: Clothes dryer energy usage level multiplier. # Source: n/a diff --git a/project_national/housing_characteristics/Clothes Washer Usage Level.tsv b/project_national/housing_characteristics/Clothes Washer Usage Level.tsv index c19e9b7744..52def74808 100644 --- a/project_national/housing_characteristics/Clothes Washer Usage Level.tsv +++ b/project_national/housing_characteristics/Clothes Washer Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 1 0 0 0.25 -High 0 0 1 0.25 +Low 0 1 0 0.25 +High 0 1 0 0.25 # Created by: sources\other\tsv_maker.py # Description: Clothes washer energy usage level multiplier. # Source: n/a diff --git a/project_national/housing_characteristics/Cooking Range Usage Level.tsv b/project_national/housing_characteristics/Cooking Range Usage Level.tsv index d2b3e5d36c..5e8fc0f82a 100644 --- a/project_national/housing_characteristics/Cooking Range Usage Level.tsv +++ b/project_national/housing_characteristics/Cooking Range Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 1 0 0 0.25 -High 0 0 1 0.25 +Low 0 1 0 0.25 +High 0 1 0 0.25 # Created by: sources\other\tsv_maker.py # Description: Cooling range energy usage level multiplier. # Source: n/a diff --git a/project_national/housing_characteristics/Dishwasher Usage Level.tsv b/project_national/housing_characteristics/Dishwasher Usage Level.tsv index 2aab102d2b..2f14f11216 100644 --- a/project_national/housing_characteristics/Dishwasher Usage Level.tsv +++ b/project_national/housing_characteristics/Dishwasher Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 1 0 0 0.25 -High 0 0 1 0.25 +Low 0 1 0 0.25 +High 0 1 0 0.25 # Created by: sources\other\tsv_maker.py # Description: Dishwasher energy usage level multiplier. # Source: n/a diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index 152896d5b2..cb9de552df 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -16,7 +16,7 @@ workflow_generator: type: residential_hpxml args: build_existing_model: - simulation_control_timestep: 60 + simulation_control_timestep: 15 simulation_control_run_period_begin_month: 1 simulation_control_run_period_begin_day_of_month: 1 simulation_control_run_period_end_month: 12 @@ -32,7 +32,7 @@ workflow_generator: - scenario_name: Bills simulation_output_report: - timeseries_frequency: hourly + timeseries_frequency: timestep include_timeseries_total_consumptions: true include_timeseries_fuel_consumptions: true include_timeseries_end_use_consumptions: true @@ -58,12 +58,12 @@ workflow_generator: baseline: n_buildings_represented: 139647020 # American Community Survey 2021 5-year, B25001, does not include territories ( 138765649 without AK and HI ) -eagle: - n_jobs: 3 - minutes_per_sim: 30 - account: - postprocessing: - time: 20 - n_workers: 1 +kestrel: + n_jobs: 10 + minutes_per_sim: 0.8 + account: panels sampling: - time: 5 + time: 30 + postprocessing: + time: 30 + n_workers: 4 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md index 01341703a2..877fb77550 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md @@ -39,7 +39,7 @@ The files are divided into four clusters (cluster0 to cluster3), for 4 occupant `_consumption_dist.csv` -These files contain the 15-min power consumption kWh samples for the given end use, obtained from RBSA (average 15-min end use kWh for each submetered home; N=number of homes with that end use). +These files contain the 1-min power kW samples for the given end use, obtained from NREL metered data. The metered range is Whirlpool WFE540H0AS, which is a standard electric range. The metered clothes dryer is Bosch WTG865H4UC, whose CEF=2.68. The schedule generator randomly picks one of these values to determine the power level of the appliance schedule. `_duration_dist.csv` From 30306f13b7326bc3135abf5c99a692ced19750f7 Mon Sep 17 00:00:00 2001 From: Yingli Date: Tue, 19 Dec 2023 17:05:50 -0700 Subject: [PATCH 02/19] test run --- project_national/national_baseline.yml | 2 +- .../clothes_dryer_consumption_dist.csv | 100 +----------------- .../clothes_washer_consumption_dist.csv | 95 +---------------- .../resources/cooking_consumption_dist.csv | 71 ++----------- .../resources/dishwasher_consumption_dist.csv | 57 +--------- .../resources/schedules.rb | 25 +++-- .../resources/hotwater_appliances.rb | 26 ++++- .../HPXMLtoOpenStudio/resources/schedules.rb | 32 +++++- 8 files changed, 83 insertions(+), 325 deletions(-) diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index cb9de552df..4af2416379 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -10,7 +10,7 @@ weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1 sampler: type: residential_quota args: - n_datapoints: 250 + n_datapoints: 5 workflow_generator: type: residential_hpxml diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv index 5a9d15bf27..e11588eeca 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv @@ -1,95 +1,5 @@ -0.7401875901875902 -0.6763526834611172 -0.6933136094674556 -0.7525892857142857 -0.6114730290456432 -0.6686034353995519 -0.6486158192090395 -0.8418343195266272 -0.5109159779614325 -0.7325305738476011 -0.7300523350987 -0.8098499541059488 -0.7579439252336448 -0.505147348212131 -0.8228205128205128 -0.757375415282392 -0.6456170212765957 -0.6166452095808383 -0.5857394366197183 -0.7722986682107701 -0.5820289855072464 -0.8095555555555556 -0.8690485829959514 -0.5393928798474253 -0.6707438016528926 -0.6491715976331361 -0.6852181208053691 -0.7737162162162162 -0.5468722466960353 -0.6900119904076739 -0.6686852589641434 -0.5546972369194592 -0.7376367498672332 -0.7106993006993007 -0.8190260631001371 -0.9360693641618497 -0.7348567530695771 -0.5642268041237113 -0.4671391917896087 -0.576453488372093 -0.7148119469026548 -0.5451612903225806 -0.7728179190751445 -0.5989509433962265 -0.7988797250859107 -0.614203211351755 -0.6865119651921683 -0.643011583011583 -0.656452296819788 -0.624065934065934 -0.49186450492182976 -0.698195991091314 -0.5266933333333333 -0.6834490740740741 -0.6792571428571429 -0.580092920073819 -0.6755813953488372 -0.7074688796680498 -0.6719745222929936 -0.7267451523545706 -0.5332251655629139 -0.6518089167280766 -0.7233875338753387 -0.5308162031438936 -0.7748849104859334 -0.5244340505144995 -0.7985 -0.6511931818181819 -0.5508247422680412 -0.5128938156359393 -0.5025907590759076 -0.5205498281786941 -0.5137831858407079 -0.5919750628069445 -0.5294406822425564 -0.6661693548387096 -0.7131951219512195 -0.6371662206363367 -0.49895771878072764 -0.5738197424892704 -0.4593438320209974 -0.83614 -0.6048826895565093 -0.5638992581023038 -0.6861959662853703 -0.5313793103448275 -0.715788876276958 -0.4535348226018397 -0.7158775067750407 -0.6221506849315068 -0.7510689869484152 -0.8052488687782805 -0.714069640914037 -0.5361458333333333 -0.6422522522522522 +0.182461667 +1.9305556 +2.578876433 +2.607120267 +5.981998067 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv index 40dc6fb042..298e976a34 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv @@ -1,93 +1,2 @@ -0.07840152649072847 -0.08468426286190477 -0.07354431109509202 -0.05928571428571429 -0.047323492187499996 -0.08326639892904954 -0.08801944565 -0.10726148409893993 -0.06470188386108597 -0.036913244172727275 -0.06380358329255953 -0.03639135685580222 -0.06532894736842106 -0.075 -0.0724594589916996 -0.04552238805970149 -0.0454150216342155 -0.08559735020011683 -0.04075611066856492 -0.049579831932773114 -0.09103340292275575 -0.055832836370387245 -0.04031746031746032 -0.060389375761458336 -0.03660564553348165 -0.08472395263956835 -0.051892162410218975 -0.04075858495649351 -0.036328667291947565 -0.17408163265306123 -0.056306947876447876 -0.0396128506696 -0.04122222222222222 -0.10344627299128752 -0.11312958614822646 -0.036449818245376346 -0.08550582650327869 -0.07144449236641222 -0.06485333333061225 -0.044670719351570416 -0.04111545881583012 -0.07306586750025063 -0.061816410982954546 -0.06934900732161896 -0.036943585438202246 -0.08009580838323353 -0.07253886010362695 -0.09161556603773585 -0.06734366904857143 -0.04669642857142857 -0.09067542213883678 -0.07715048591408451 -0.03741839523160377 -0.07300678889151516 -0.07983786760725807 -0.08426026080046685 -0.06947525244250614 -0.08961722488038278 -0.036504996461146494 -0.04847781164346764 -0.07804588823411765 -0.054262407749416666 -0.03410074324978541 -0.07096827022890173 -0.0365219869796875 -0.06884012422808641 -0.07333511100723127 -0.06980131860797546 -0.07540567352784314 -0.048277994330612244 -0.03508549061456044 -0.08235954552052023 -0.08555555555555555 -0.04969387972166667 -0.07329218106995886 -0.042370467636666666 -0.09774325928465753 -0.047965425507356156 -0.07347945054308944 -0.05227391342638889 -0.03785645173949045 -0.03873201797222222 -0.10400276502513116 -0.08141323676074766 -0.07476731104767442 -0.03763019355974441 -0.0832133676092545 -0.057244647308859226 -0.04419379292659933 -0.08293756397134085 -0.03424707690035088 -0.0862861697537037 -0.050176510811891895 +0.755685783 +0.711993683 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv index 6dd4bd9671..f7f2321fe4 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv @@ -1,63 +1,8 @@ -0.24184278350515465 -0.35916249105225484 -0.3342277992277992 -0.22115897435897436 -0.09386666666666667 -0.2452562225475842 -0.2596535129932628 -0.2432636193530874 -0.24371917463512835 -0.29547826086956525 -0.26907056798623064 -0.1512106135986733 -0.30496503496503496 -0.24927876823338735 -0.28042694497153703 -0.21896645512239346 -0.22332857142857143 -0.26805182341650674 -0.28706552706552707 -0.2110576923076923 -0.2335443411539029 -0.2429324894514768 -0.26504347826086955 -0.27439024390243905 -0.2443854324734446 -0.256246719160105 -0.25103846153846154 -0.2787231503579952 -0.25219110378912685 -0.21715078416728903 -0.3207981220657277 -0.23244106463878328 -0.2183682008368201 -0.20691096305269535 -0.26887706855791965 -0.22020926756352766 -0.27527944969905416 -0.3208922238372093 -0.21243827160493828 -0.1282451253481894 -0.24433724075743912 -0.2594965449160908 -0.22655840455840456 -0.23205211726384364 -0.1833734939759036 -0.2773582295988935 -0.20106739053043787 -0.20534220532319392 -0.23474915254237289 -0.2620616570327553 -0.26216216216216215 -0.19722676579925652 -0.22963117236760225 -0.2672146739130435 -0.20087423312883435 -0.27033473154362414 -0.19489583333333332 -0.18529780564263323 -0.13686559139784946 -0.2350279552715655 -0.23928018575851392 -0.3259296875 -0.18784615384615386 +0.428622011 +1.1382695 +1.255058153 +3.327111361 +3.345616878 +3.351581688 +3.449142567 +8.0799699 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv index 231559fbae..13ec6c5951 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv @@ -1,56 +1 @@ -0.17106035889070148 -0.15234417344173443 -0.12264907135874878 -0.17646869983948635 -0.159185667752443 -0.08693232131562302 -0.14911691542288558 -0.1589312536106297 -0.12033292231812577 -0.2234162162162162 -0.17139954853273137 -0.22575192096597146 -0.14875886524822696 -0.23615671641791044 -0.22696747114375657 -0.1382964509394572 -0.1954726368159204 -0.15478218780251693 -0.1606179775280899 -0.20641921397379911 -0.18277294038847958 -0.13049798115746972 -0.18272727272727274 -0.1634688995215311 -0.16244444444444445 -0.08069159836065574 -0.16043570669500531 -0.10926213286921388 -0.12836313617606604 -0.1486868686868687 -0.23592876712328767 -0.1351692913385827 -0.1369962686567164 -0.1741904761904762 -0.21345098039215687 -0.11025 -0.1772456813819578 -0.15782529743268628 -0.1526602564102564 -0.17230768295204263 -0.09601374570446736 -0.1711441647597254 -0.23446710090525502 -0.14131832797427654 -0.16409345794392524 -0.11176461562068436 -0.20523647001462703 -0.16846917666528755 -0.09413361169102297 -0.15504725897920604 -0.18657683215130025 -0.17790163934426229 -0.09052422097870969 -0.2059972299168975 -0.17470588235294118 -0.18686940966010734 +1.004 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb index e5fd81cd2c..b9715f9c7d 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb @@ -554,30 +554,30 @@ def create_stochastic_schedules(args:) random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cooking_power_sch = cooking_power_sch.rotate(random_offset) cooking_power_sch = apply_monthly_offsets(array: cooking_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cooking_power_sch = aggregate_array(cooking_power_sch, @minutes_per_step) + cooking_power_sch = average_array(cooking_power_sch, @minutes_per_step) cooking_peak_power = cooking_power_sch.max - @schedules[SchedulesFile::ColumnCookingRange] = cooking_power_sch.map { |power| power / cooking_peak_power } + @schedules[SchedulesFile::ColumnCookingRange] = cooking_power_sch.map { |power| power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cw_power_sch = cw_power_sch.rotate(random_offset) cw_power_sch = apply_monthly_offsets(array: cw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cw_power_sch = aggregate_array(cw_power_sch, @minutes_per_step) + cw_power_sch = average_array(cw_power_sch, @minutes_per_step) cw_peak_power = cw_power_sch.max - @schedules[SchedulesFile::ColumnClothesWasher] = cw_power_sch.map { |power| power / cw_peak_power } + @schedules[SchedulesFile::ColumnClothesWasher] = cw_power_sch.map { |power| power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cd_power_sch = cd_power_sch.rotate(random_offset) cd_power_sch = apply_monthly_offsets(array: cd_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cd_power_sch = aggregate_array(cd_power_sch, @minutes_per_step) + cd_power_sch = average_array(cd_power_sch, @minutes_per_step) cd_peak_power = cd_power_sch.max - @schedules[SchedulesFile::ColumnClothesDryer] = cd_power_sch.map { |power| power / cd_peak_power } + @schedules[SchedulesFile::ColumnClothesDryer] = cd_power_sch.map { |power| power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range dw_power_sch = dw_power_sch.rotate(random_offset) dw_power_sch = apply_monthly_offsets(array: dw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - dw_power_sch = aggregate_array(dw_power_sch, @minutes_per_step) + dw_power_sch = average_array(dw_power_sch, @minutes_per_step) dw_peak_power = dw_power_sch.max - @schedules[SchedulesFile::ColumnDishwasher] = dw_power_sch.map { |power| power / dw_peak_power } + @schedules[SchedulesFile::ColumnDishwasher] = dw_power_sch.map { |power| power } @schedules[SchedulesFile::ColumnOccupants] = away_schedule.map { |i| 1.0 - i } @@ -601,6 +601,15 @@ def aggregate_array(array, group_size) return new_array end + def average_array(array, group_size) + new_array_size = array.size / group_size + new_array = [0] * new_array_size + new_array_size.times do |j| + new_array[j] = array[(j * group_size)..(j + 1) * group_size - 1].sum(0) / group_size + end + return new_array + end + def apply_monthly_offsets(array:, weekday_monthly_shift_dict:, weekend_monthly_shift_dict:) month_strs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] new_array = [] diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index c616da8200..f02f45b082 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -49,7 +49,7 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cw_col_name = SchedulesFile::ColumnClothesWasher cw_object_name = Constants.ObjectNameClothesWasher if not schedules_file.nil? - cw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: cw_col_name, daily_kwh: cw_annual_kwh / 365.0) + cw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: cw_col_name) cw_power_schedule = schedules_file.create_schedule_file(model, col_name: cw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cw_power_schedule.nil? @@ -79,8 +79,17 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cd_schedule = nil cd_col_name = SchedulesFile::ColumnClothesDryer cd_obj_name = Constants.ObjectNameClothesDryer + metered_clothes_dryer_CEF = 2.68 + if clothes_dryer.combined_energy_factor.nil? + clothes_dryer.combined_energy_factor = calc_clothes_dryer_cef_from_ef(clothes_dryer.energy_factor) + end + clothes_dryer_power_multiplier = metered_clothes_dryer_CEF/clothes_dryer.combined_energy_factor if not schedules_file.nil? - cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) + if clothes_dryer.fuel_type == HPXML::FuelTypeElectricity + cd_design_level_e = clothes_dryer_power_multiplier * schedules_file.calc_design_level_from_schedule_max(col_name: cd_col_name) + else + cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) + end cd_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cd_col_name, annual_therm: cd_annual_therm) cd_schedule = schedules_file.create_schedule_file(model, col_name: cd_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end @@ -114,7 +123,7 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat dw_col_name = SchedulesFile::ColumnDishwasher dw_obj_name = Constants.ObjectNameDishwasher if not schedules_file.nil? - dw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: dw_col_name, daily_kwh: dw_annual_kwh / 365.0) + dw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: dw_col_name) dw_power_schedule = schedules_file.create_schedule_file(model, col_name: dw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if dw_power_schedule.nil? @@ -201,13 +210,22 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat # Cooking Range energy if not cooking_range.nil? cook_annual_kwh, cook_annual_therm, cook_frac_sens, cook_frac_lat = calc_range_oven_energy(nbeds, cooking_range, oven, cooking_range.additional_properties.space.nil?) + if cooking_range.is_induction + burner_ef = 0.91 + else + burner_ef = 1.0 + end # Create schedule cook_schedule = nil cook_col_name = SchedulesFile::ColumnCookingRange cook_obj_name = Constants.ObjectNameCookingRange if not schedules_file.nil? - cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) + if cooking_range.fuel_type == HPXML::FuelTypeElectricity + cook_design_level_e = burner_ef * schedules_file.calc_design_level_from_schedule_max(col_name: cook_col_name) + else + cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) + end cook_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cook_col_name, annual_therm: cook_annual_therm) cook_schedule = schedules_file.create_schedule_file(model, col_name: cook_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index 6ec3bfa1de..62ca6a85ff 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -1362,12 +1362,24 @@ def initialize(runner: nil, battery_schedules expand_schedules @tmp_schedules = Marshal.load(Marshal.dump(@schedules)) + normalize_zero_to_one_scale set_unavailable_periods(runner, unavailable_periods) convert_setpoints @output_schedules_path = output_path export() end + def normalize_zero_to_one_scale + range_max_value = @tmp_schedules['cooking_range'].max + @tmp_schedules['cooking_range'] = @tmp_schedules['cooking_range'].map { |power| power / range_max_value } + dishwasher_max_value = @tmp_schedules['dishwasher'].max + @tmp_schedules['dishwasher'] = @tmp_schedules['dishwasher'].map { |power| power / dishwasher_max_value } + washer_max_value = @tmp_schedules['clothes_washer'].max + @tmp_schedules['clothes_washer'] = @tmp_schedules['clothes_washer'].map { |power| power / washer_max_value } + dryer_max_value = @tmp_schedules['clothes_dryer'].max + @tmp_schedules['clothes_dryer'] = @tmp_schedules['clothes_dryer'].map { |power| power / dryer_max_value } + end + def nil? if @schedules.nil? return true @@ -1404,11 +1416,11 @@ def import(schedules_paths) fail "Schedule column name '#{col_name}' is duplicated. [context: #{schedules_path}]" end - if max_value_one[col_name] - if values.max > 1 - fail "Schedule max value for column '#{col_name}' must be 1. [context: #{schedules_path}]" - end - end + #if max_value_one[col_name] + #if values.max > 1 + #fail "Schedule max value for column '#{col_name}' must be 1. [context: #{schedules_path}]" + #end + #end if min_value_zero[col_name] if values.min < 0 @@ -1539,6 +1551,16 @@ def calc_design_level_from_annual_kwh(col_name:, return design_level end + def calc_design_level_from_schedule_max(col_name:) + if @schedules[col_name].nil? + return + end + + design_level = @schedules[col_name].max * 1000 # W + + return design_level + end + # Similar to ann_equiv_full_load_hrs, but for thermal energy def calc_design_level_from_annual_therm(col_name:, annual_therm:) From 5adccb01163374d4bec77c6bcb19fa981ef6cba7 Mon Sep 17 00:00:00 2001 From: Yingli Lou Date: Wed, 20 Dec 2023 17:59:49 -0700 Subject: [PATCH 03/19] peak power in output --- measures/BuildExistingModel/measure.rb | 4 ++++ project_national/national_baseline.yml | 33 +++++++++++++++++--------- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 60d014229a..23189839f7 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -824,6 +824,7 @@ def run(model, runner, user_arguments) cooking_range_full_load_operation_hour = (cooking_range_full_load_operation * hour_each_value).to_s cooking_range_operation_hour = (cooking_range_operation * hour_each_value).to_s cooking_range_event_num = (cooking_range_event_num).to_s + register_value(runner, 'cooking_range_peak_power_kw', cooking_range_max_value) register_value(runner, 'cooking_range_full_load_operation_hour', cooking_range_full_load_operation_hour) register_value(runner, 'cooking_range_operation_hour', cooking_range_operation_hour) register_value(runner, 'cooking_range_event_num', cooking_range_event_num) @@ -831,6 +832,7 @@ def run(model, runner, user_arguments) dishwasher_full_load_operation_hour = (dishwasher_full_load_operation * hour_each_value).to_s dishwasher_operation_hour = (dishwasher_operation * hour_each_value).to_s dishwasher_event_num = (dishwasher_event_num).to_s + register_value(runner, 'dishwaser_peak_power_kw', dishwasher_max_value) register_value(runner, 'dishwaser_full_load_operation_hour', dishwasher_full_load_operation_hour) register_value(runner, 'dishwasher_operation_hour', dishwasher_operation_hour) register_value(runner, 'dishwasher_event_num', dishwasher_event_num) @@ -838,6 +840,7 @@ def run(model, runner, user_arguments) clothes_washer_full_load_operation_hour = (clothes_washer_full_load_operation * hour_each_value).to_s clothes_washer_operation_hour = (clothes_washer_operation * hour_each_value).to_s clothes_washer_event_num = (clothes_washer_event_num).to_s + register_value(runner, 'clothes_washer_peak_power_kw', clothes_washer_max_value) register_value(runner, 'clothes_washer_full_load_operation_hour', clothes_washer_full_load_operation_hour) register_value(runner, 'clothes_washer_operation_hour', clothes_washer_operation_hour) register_value(runner, 'clothes_washer_event_num', clothes_washer_event_num) @@ -845,6 +848,7 @@ def run(model, runner, user_arguments) clothes_dryer_full_load_operation_hour = (clothes_dryer_full_load_operation * hour_each_value).to_s clothes_dryer_operation_hour = (clothes_dryer_operation * hour_each_value).to_s clothes_dryer_event_num = (clothes_dryer_event_num).to_s + register_value(runner, 'clothes_dryer_peak_power_kw', clothes_dryer_max_value) register_value(runner, 'clothes_dryer_full_load_operation_hour', clothes_dryer_full_load_operation_hour) register_value(runner, 'clothes_dryer_operation_hour', clothes_dryer_operation_hour) register_value(runner, 'clothes_dryer_event_num', clothes_dryer_event_num) diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index 4af2416379..b6fce0fa00 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -3,14 +3,14 @@ os_version: 3.7.0 os_sha: d5269793f1 buildstock_directory: ../ # Relative to this file or absolute project_directory: project_national # Relative to buildstock_directory -output_directory: national_baseline -weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip -# weather_files_path: c:/OpenStudio/BuildStock_TMY3_FIPS.zip +output_directory: /kfs2/projects/panels/schedule_based_appliance/test_run20231220 +#weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip +weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_TMY3_FIPS.zip sampler: type: residential_quota args: - n_datapoints: 5 + n_datapoints: 20 workflow_generator: type: residential_hpxml @@ -23,13 +23,13 @@ workflow_generator: simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2007 - emissions: - - scenario_name: LRMER_MidCase_15 - type: CO2e - elec_folder: data/cambium/2022/LRMER_MidCase_15 + #emissions: + #- scenario_name: LRMER_MidCase_15 + # type: CO2e + # elec_folder: data/cambium/2022/LRMER_MidCase_15 - utility_bills: - - scenario_name: Bills + #utility_bills: + #- scenario_name: Bills simulation_output_report: timeseries_frequency: timestep @@ -60,10 +60,21 @@ baseline: kestrel: n_jobs: 10 - minutes_per_sim: 0.8 + minutes_per_sim: 3 account: panels sampling: time: 30 postprocessing: time: 30 n_workers: 4 + +postprocessing: + aws: + region_name: us-west-2 + s3: + bucket: resstock-panels + prefix: resstock-panels_runs + #athena: + # glue_service_role: service-role/AWSGlueServiceRole-default + # database_name: resstock-panels + # max_crawling_time: 1200 \ No newline at end of file From 8747249dea26acbc28e7baebc273a4bdce1578d3 Mon Sep 17 00:00:00 2001 From: Yingli Lou Date: Tue, 26 Dec 2023 10:35:10 -0700 Subject: [PATCH 04/19] test run --- project_national/national_baseline.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index b6fce0fa00..947697e5f7 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -3,14 +3,14 @@ os_version: 3.7.0 os_sha: d5269793f1 buildstock_directory: ../ # Relative to this file or absolute project_directory: project_national # Relative to buildstock_directory -output_directory: /kfs2/projects/panels/schedule_based_appliance/test_run20231220 +output_directory: /kfs2/projects/panels/schedule_based_appliance/test_run20231221 #weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_TMY3_FIPS.zip sampler: - type: residential_quota + type: precomputed args: - n_datapoints: 20 + sample_file: /kfs2/projects/panels/schedule_based_appliance/buildstock_550K.csv workflow_generator: type: residential_hpxml @@ -59,14 +59,14 @@ baseline: n_buildings_represented: 139647020 # American Community Survey 2021 5-year, B25001, does not include territories ( 138765649 without AK and HI ) kestrel: - n_jobs: 10 - minutes_per_sim: 3 + n_jobs: 240 + minutes_per_sim: 2 account: panels sampling: - time: 30 + time: 60 postprocessing: - time: 30 - n_workers: 4 + time: 2000 + n_workers: 32 postprocessing: aws: @@ -74,7 +74,7 @@ postprocessing: s3: bucket: resstock-panels prefix: resstock-panels_runs - #athena: - # glue_service_role: service-role/AWSGlueServiceRole-default - # database_name: resstock-panels - # max_crawling_time: 1200 \ No newline at end of file + athena: + glue_service_role: service-role/AWSGlueServiceRole-default + database_name: resstock_panels + max_crawling_time: 1200 \ No newline at end of file From c0e853d72de7ac0453fb8f120c3081eeb739c98c Mon Sep 17 00:00:00 2001 From: Yingli Date: Thu, 1 Feb 2024 17:09:10 -0700 Subject: [PATCH 05/19] fix more failure problem and improvement for washer and dishwasher --- measures/BuildExistingModel/measure.rb | 4 ---- .../resources/cooking_consumption_dist.csv | 1 - .../resources/hotwater_appliances.rb | 16 +++++++++++++--- .../HPXMLtoOpenStudio/resources/schedules.rb | 2 +- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 23189839f7..60d014229a 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -824,7 +824,6 @@ def run(model, runner, user_arguments) cooking_range_full_load_operation_hour = (cooking_range_full_load_operation * hour_each_value).to_s cooking_range_operation_hour = (cooking_range_operation * hour_each_value).to_s cooking_range_event_num = (cooking_range_event_num).to_s - register_value(runner, 'cooking_range_peak_power_kw', cooking_range_max_value) register_value(runner, 'cooking_range_full_load_operation_hour', cooking_range_full_load_operation_hour) register_value(runner, 'cooking_range_operation_hour', cooking_range_operation_hour) register_value(runner, 'cooking_range_event_num', cooking_range_event_num) @@ -832,7 +831,6 @@ def run(model, runner, user_arguments) dishwasher_full_load_operation_hour = (dishwasher_full_load_operation * hour_each_value).to_s dishwasher_operation_hour = (dishwasher_operation * hour_each_value).to_s dishwasher_event_num = (dishwasher_event_num).to_s - register_value(runner, 'dishwaser_peak_power_kw', dishwasher_max_value) register_value(runner, 'dishwaser_full_load_operation_hour', dishwasher_full_load_operation_hour) register_value(runner, 'dishwasher_operation_hour', dishwasher_operation_hour) register_value(runner, 'dishwasher_event_num', dishwasher_event_num) @@ -840,7 +838,6 @@ def run(model, runner, user_arguments) clothes_washer_full_load_operation_hour = (clothes_washer_full_load_operation * hour_each_value).to_s clothes_washer_operation_hour = (clothes_washer_operation * hour_each_value).to_s clothes_washer_event_num = (clothes_washer_event_num).to_s - register_value(runner, 'clothes_washer_peak_power_kw', clothes_washer_max_value) register_value(runner, 'clothes_washer_full_load_operation_hour', clothes_washer_full_load_operation_hour) register_value(runner, 'clothes_washer_operation_hour', clothes_washer_operation_hour) register_value(runner, 'clothes_washer_event_num', clothes_washer_event_num) @@ -848,7 +845,6 @@ def run(model, runner, user_arguments) clothes_dryer_full_load_operation_hour = (clothes_dryer_full_load_operation * hour_each_value).to_s clothes_dryer_operation_hour = (clothes_dryer_operation * hour_each_value).to_s clothes_dryer_event_num = (clothes_dryer_event_num).to_s - register_value(runner, 'clothes_dryer_peak_power_kw', clothes_dryer_max_value) register_value(runner, 'clothes_dryer_full_load_operation_hour', clothes_dryer_full_load_operation_hour) register_value(runner, 'clothes_dryer_operation_hour', clothes_dryer_operation_hour) register_value(runner, 'clothes_dryer_event_num', clothes_dryer_event_num) diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv index f7f2321fe4..48faf8a3d8 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv @@ -5,4 +5,3 @@ 3.345616878 3.351581688 3.449142567 -8.0799699 diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index f02f45b082..96d9d42f75 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -48,8 +48,13 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cw_power_schedule = nil cw_col_name = SchedulesFile::ColumnClothesWasher cw_object_name = Constants.ObjectNameClothesWasher + metered_clothes_washer_IMEF = 2.07 + if clothes_washer.integrated_modified_energy_factor.nil? + clothes_washer.integrated_modified_energy_factor = 2.07 + end + clothes_washer_power_multiplier = metered_clothes_washer_IMEF/clothes_washer.integrated_modified_energy_factor if not schedules_file.nil? - cw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: cw_col_name) + cw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: cw_col_name) * clothes_washer_power_multiplier cw_power_schedule = schedules_file.create_schedule_file(model, col_name: cw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cw_power_schedule.nil? @@ -81,7 +86,7 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cd_obj_name = Constants.ObjectNameClothesDryer metered_clothes_dryer_CEF = 2.68 if clothes_dryer.combined_energy_factor.nil? - clothes_dryer.combined_energy_factor = calc_clothes_dryer_cef_from_ef(clothes_dryer.energy_factor) + clothes_dryer.combined_energy_factor = 2.68 end clothes_dryer_power_multiplier = metered_clothes_dryer_CEF/clothes_dryer.combined_energy_factor if not schedules_file.nil? @@ -122,8 +127,13 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat dw_power_schedule = nil dw_col_name = SchedulesFile::ColumnDishwasher dw_obj_name = Constants.ObjectNameDishwasher + metered_dishwasher_rated_annual_kwh = 240 + if dishwasher.rated_annual_kwh.nil? + dishwasher.rated_annual_kwh = 240 + end + dishwasher_power_multiplier = dishwasher.rated_annual_kwh/metered_dishwasher_rated_annual_kwh if not schedules_file.nil? - dw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: dw_col_name) + dw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: dw_col_name) * dishwasher_power_multiplier dw_power_schedule = schedules_file.create_schedule_file(model, col_name: dw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if dw_power_schedule.nil? diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index 62ca6a85ff..ec2a5d10c9 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -1519,7 +1519,7 @@ def create_schedule_file(model, col_name:, rows_to_skip: 1, def annual_equivalent_full_load_hrs(col_name:, schedules: nil) if schedules.nil? - schedules = @schedules # the schedules before vacancy is applied + schedules = @tmp_schedules # the schedules before vacancy is applied end if schedules[col_name].nil? From 515805f3bf5eadaa9171989af260d2e3230c6046 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 7 Feb 2024 18:07:30 -0700 Subject: [PATCH 06/19] yml file for panel run --- measures/ApplyUpgrade/README.md | 2225 --- resources/options_lookup.tsv | 25987 +++++++++++++++--------------- 2 files changed, 13009 insertions(+), 15203 deletions(-) delete mode 100644 measures/ApplyUpgrade/README.md diff --git a/measures/ApplyUpgrade/README.md b/measures/ApplyUpgrade/README.md deleted file mode 100644 index d758a237ef..0000000000 --- a/measures/ApplyUpgrade/README.md +++ /dev/null @@ -1,2225 +0,0 @@ - -###### (Automatically generated documentation) - -# Apply Upgrade - -## Description -Measure that applies an upgrade (one or more child measures) to a building model based on the specified logic. - -Determines if the upgrade should apply to a given building model. If so, calls one or more child measures with the appropriate arguments. - -## Arguments - - -**Upgrade Name** - -User-specificed name that describes the upgrade. - -- **Name:** ``upgrade_name`` -- **Type:** ``String`` - -- **Required:** ``true`` - -
- -**Option 1** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_1`` -- **Type:** ``String`` - -- **Required:** ``true`` - -
- -**Option 1 Apply Logic** - -Logic that specifies if the Option 1 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_1_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 1 Cost 1 Value** - -Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_1_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 1 Cost 1 Multiplier** - -Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_1_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 1 Cost 2 Value** - -Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_1_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 1 Cost 2 Multiplier** - -Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_1_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 1 Lifetime** - -The option lifetime. - -- **Name:** ``option_1_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 2** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_2`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 2 Apply Logic** - -Logic that specifies if the Option 2 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_2_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 2 Cost 1 Value** - -Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_2_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 2 Cost 1 Multiplier** - -Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_2_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 2 Cost 2 Value** - -Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_2_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 2 Cost 2 Multiplier** - -Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_2_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 2 Lifetime** - -The option lifetime. - -- **Name:** ``option_2_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 3** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_3`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 3 Apply Logic** - -Logic that specifies if the Option 3 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_3_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 3 Cost 1 Value** - -Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_3_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 3 Cost 1 Multiplier** - -Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_3_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 3 Cost 2 Value** - -Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_3_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 3 Cost 2 Multiplier** - -Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_3_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 3 Lifetime** - -The option lifetime. - -- **Name:** ``option_3_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 4** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_4`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 4 Apply Logic** - -Logic that specifies if the Option 4 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_4_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 4 Cost 1 Value** - -Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_4_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 4 Cost 1 Multiplier** - -Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_4_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 4 Cost 2 Value** - -Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_4_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 4 Cost 2 Multiplier** - -Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_4_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 4 Lifetime** - -The option lifetime. - -- **Name:** ``option_4_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 5** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_5`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 5 Apply Logic** - -Logic that specifies if the Option 5 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_5_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 5 Cost 1 Value** - -Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_5_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 5 Cost 1 Multiplier** - -Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_5_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 5 Cost 2 Value** - -Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_5_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 5 Cost 2 Multiplier** - -Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_5_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 5 Lifetime** - -The option lifetime. - -- **Name:** ``option_5_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 6** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_6`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 6 Apply Logic** - -Logic that specifies if the Option 6 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_6_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 6 Cost 1 Value** - -Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_6_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 6 Cost 1 Multiplier** - -Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_6_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 6 Cost 2 Value** - -Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_6_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 6 Cost 2 Multiplier** - -Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_6_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 6 Lifetime** - -The option lifetime. - -- **Name:** ``option_6_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 7** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_7`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 7 Apply Logic** - -Logic that specifies if the Option 7 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_7_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 7 Cost 1 Value** - -Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_7_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 7 Cost 1 Multiplier** - -Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_7_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 7 Cost 2 Value** - -Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_7_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 7 Cost 2 Multiplier** - -Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_7_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 7 Lifetime** - -The option lifetime. - -- **Name:** ``option_7_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 8** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_8`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 8 Apply Logic** - -Logic that specifies if the Option 8 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_8_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 8 Cost 1 Value** - -Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_8_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 8 Cost 1 Multiplier** - -Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_8_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 8 Cost 2 Value** - -Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_8_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 8 Cost 2 Multiplier** - -Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_8_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 8 Lifetime** - -The option lifetime. - -- **Name:** ``option_8_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 9** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_9`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 9 Apply Logic** - -Logic that specifies if the Option 9 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_9_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 9 Cost 1 Value** - -Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_9_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 9 Cost 1 Multiplier** - -Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_9_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 9 Cost 2 Value** - -Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_9_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 9 Cost 2 Multiplier** - -Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_9_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 9 Lifetime** - -The option lifetime. - -- **Name:** ``option_9_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 10** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_10`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 10 Apply Logic** - -Logic that specifies if the Option 10 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_10_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 10 Cost 1 Value** - -Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_10_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 10 Cost 1 Multiplier** - -Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_10_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 10 Cost 2 Value** - -Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_10_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 10 Cost 2 Multiplier** - -Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_10_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 10 Lifetime** - -The option lifetime. - -- **Name:** ``option_10_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 11** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_11`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 11 Apply Logic** - -Logic that specifies if the Option 11 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_11_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 11 Cost 1 Value** - -Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_11_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 11 Cost 1 Multiplier** - -Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_11_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 11 Cost 2 Value** - -Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_11_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 11 Cost 2 Multiplier** - -Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_11_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 11 Lifetime** - -The option lifetime. - -- **Name:** ``option_11_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 12** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_12`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 12 Apply Logic** - -Logic that specifies if the Option 12 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_12_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 12 Cost 1 Value** - -Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_12_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 12 Cost 1 Multiplier** - -Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_12_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 12 Cost 2 Value** - -Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_12_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 12 Cost 2 Multiplier** - -Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_12_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 12 Lifetime** - -The option lifetime. - -- **Name:** ``option_12_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 13** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_13`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 13 Apply Logic** - -Logic that specifies if the Option 13 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_13_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 13 Cost 1 Value** - -Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_13_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 13 Cost 1 Multiplier** - -Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_13_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 13 Cost 2 Value** - -Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_13_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 13 Cost 2 Multiplier** - -Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_13_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 13 Lifetime** - -The option lifetime. - -- **Name:** ``option_13_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 14** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_14`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 14 Apply Logic** - -Logic that specifies if the Option 14 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_14_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 14 Cost 1 Value** - -Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_14_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 14 Cost 1 Multiplier** - -Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_14_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 14 Cost 2 Value** - -Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_14_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 14 Cost 2 Multiplier** - -Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_14_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 14 Lifetime** - -The option lifetime. - -- **Name:** ``option_14_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 15** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_15`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 15 Apply Logic** - -Logic that specifies if the Option 15 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_15_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 15 Cost 1 Value** - -Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_15_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 15 Cost 1 Multiplier** - -Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_15_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 15 Cost 2 Value** - -Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_15_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 15 Cost 2 Multiplier** - -Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_15_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 15 Lifetime** - -The option lifetime. - -- **Name:** ``option_15_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 16** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_16`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 16 Apply Logic** - -Logic that specifies if the Option 16 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_16_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 16 Cost 1 Value** - -Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_16_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 16 Cost 1 Multiplier** - -Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_16_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 16 Cost 2 Value** - -Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_16_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 16 Cost 2 Multiplier** - -Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_16_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 16 Lifetime** - -The option lifetime. - -- **Name:** ``option_16_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 17** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_17`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 17 Apply Logic** - -Logic that specifies if the Option 17 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_17_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 17 Cost 1 Value** - -Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_17_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 17 Cost 1 Multiplier** - -Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_17_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 17 Cost 2 Value** - -Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_17_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 17 Cost 2 Multiplier** - -Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_17_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 17 Lifetime** - -The option lifetime. - -- **Name:** ``option_17_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 18** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_18`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 18 Apply Logic** - -Logic that specifies if the Option 18 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_18_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 18 Cost 1 Value** - -Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_18_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 18 Cost 1 Multiplier** - -Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_18_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 18 Cost 2 Value** - -Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_18_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 18 Cost 2 Multiplier** - -Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_18_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 18 Lifetime** - -The option lifetime. - -- **Name:** ``option_18_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 19** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_19`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 19 Apply Logic** - -Logic that specifies if the Option 19 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_19_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 19 Cost 1 Value** - -Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_19_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 19 Cost 1 Multiplier** - -Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_19_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 19 Cost 2 Value** - -Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_19_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 19 Cost 2 Multiplier** - -Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_19_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 19 Lifetime** - -The option lifetime. - -- **Name:** ``option_19_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 20** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_20`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 20 Apply Logic** - -Logic that specifies if the Option 20 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_20_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 20 Cost 1 Value** - -Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_20_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 20 Cost 1 Multiplier** - -Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_20_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 20 Cost 2 Value** - -Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_20_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 20 Cost 2 Multiplier** - -Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_20_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 20 Lifetime** - -The option lifetime. - -- **Name:** ``option_20_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 21** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_21`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 21 Apply Logic** - -Logic that specifies if the Option 21 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_21_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 21 Cost 1 Value** - -Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_21_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 21 Cost 1 Multiplier** - -Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_21_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 21 Cost 2 Value** - -Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_21_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 21 Cost 2 Multiplier** - -Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_21_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 21 Lifetime** - -The option lifetime. - -- **Name:** ``option_21_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 22** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_22`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 22 Apply Logic** - -Logic that specifies if the Option 22 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_22_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 22 Cost 1 Value** - -Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_22_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 22 Cost 1 Multiplier** - -Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_22_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 22 Cost 2 Value** - -Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_22_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 22 Cost 2 Multiplier** - -Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_22_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 22 Lifetime** - -The option lifetime. - -- **Name:** ``option_22_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 23** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_23`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 23 Apply Logic** - -Logic that specifies if the Option 23 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_23_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 23 Cost 1 Value** - -Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_23_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 23 Cost 1 Multiplier** - -Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_23_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 23 Cost 2 Value** - -Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_23_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 23 Cost 2 Multiplier** - -Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_23_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 23 Lifetime** - -The option lifetime. - -- **Name:** ``option_23_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 24** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_24`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 24 Apply Logic** - -Logic that specifies if the Option 24 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_24_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 24 Cost 1 Value** - -Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_24_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 24 Cost 1 Multiplier** - -Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_24_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 24 Cost 2 Value** - -Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_24_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 24 Cost 2 Multiplier** - -Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_24_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 24 Lifetime** - -The option lifetime. - -- **Name:** ``option_24_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Option 25** - -Specify the parameter|option as found in resources\options_lookup.tsv. - -- **Name:** ``option_25`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 25 Apply Logic** - -Logic that specifies if the Option 25 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``option_25_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Option 25 Cost 1 Value** - -Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_25_cost_1_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 25 Cost 1 Multiplier** - -Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_25_cost_1_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 25 Cost 2 Value** - -Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_25_cost_2_value`` -- **Type:** ``Double`` - -- **Units:** ``$`` - -- **Required:** ``false`` - -
- -**Option 25 Cost 2 Multiplier** - -Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). - -- **Name:** ``option_25_cost_2_multiplier`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** ``, `Fixed (1)`, `Wall Area, Above-Grade, Conditioned (ft^2)`, `Wall Area, Above-Grade, Exterior (ft^2)`, `Wall Area, Below-Grade (ft^2)`, `Floor Area, Conditioned (ft^2)`, `Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50)`, `Floor Area, Lighting (ft^2)`, `Floor Area, Foundation (ft^2)`, `Floor Area, Attic (ft^2)`, `Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value)`, `Roof Area (ft^2)`, `Window Area (ft^2)`, `Door Area (ft^2)`, `Duct Unconditioned Surface Area (ft^2)`, `Rim Joist Area, Above-Grade, Exterior (ft^2)`, `Slab Perimeter, Exposed, Conditioned (ft)`, `Size, Heating System Primary (kBtu/h)`, `Size, Heating System Secondary (kBtu/h)`, `Size, Cooling System Primary (kBtu/h)`, `Size, Heat Pump Backup Primary (kBtu/h)`, `Size, Water Heater (gal)`, `Flow Rate, Mechanical Ventilation (cfm)` - -
- -**Option 25 Lifetime** - -The option lifetime. - -- **Name:** ``option_25_lifetime`` -- **Type:** ``Double`` - -- **Units:** ``years`` - -- **Required:** ``false`` - -
- -**Package Apply Logic** - -Logic that specifies if the entire package upgrade (all options) will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - -- **Name:** ``package_apply_logic`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- -**Run Measure** - -integer argument to run measure [1 is run, 0 is no run] - -- **Name:** ``run_measure`` -- **Type:** ``Integer`` - -- **Required:** ``true`` - -
- - - - - diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 15ca4327d8..54e7c05f44 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,9728 +1,9728 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" -City "AL, Auburn" -City "AL, Birmingham" -City "AL, Decatur" -City "AL, Dothan" -City "AL, Florence" -City "AL, Gadsden" -City "AL, Hoover" -City "AL, Huntsville" -City "AL, Madison" -City "AL, Mobile" -City "AL, Montgomery" -City "AL, Phenix City" -City "AL, Tuscaloosa" -City "AR, Bentonville" -City "AR, Conway" -City "AR, Fayetteville" -City "AR, Fort Smith" -City "AR, Hot Springs" -City "AR, Jonesboro" -City "AR, Little Rock" -City "AR, North Little Rock" -City "AR, Pine Bluff" -City "AR, Rogers" -City "AR, Springdale" -City "AZ, Apache Junction" -City "AZ, Avondale" -City "AZ, Buckeye" -City "AZ, Bullhead City" -City "AZ, Casa Grande" -City "AZ, Casas Adobes" -City "AZ, Catalina Foothills" -City "AZ, Chandler" -City "AZ, Flagstaff" -City "AZ, Fortuna Foothills" -City "AZ, Gilbert" -City "AZ, Glendale" -City "AZ, Goodyear" -City "AZ, Green Valley" -City "AZ, Lake Havasu City" -City "AZ, Marana" -City "AZ, Maricopa" -City "AZ, Mesa" -City "AZ, Oro Valley" -City "AZ, Peoria" -City "AZ, Phoenix" -City "AZ, Prescott Valley" -City "AZ, Prescott" -City "AZ, San Tan Valley" -City "AZ, Scottsdale" -City "AZ, Sierra Vista" -City "AZ, Sun City West" -City "AZ, Sun City" -City "AZ, Surprise" -City "AZ, Tempe" -City "AZ, Tucson" -City "AZ, Yuma" -City "CA, Alameda" -City "CA, Alhambra" -City "CA, Aliso Viejo" -City "CA, Altadena" -City "CA, Anaheim" -City "CA, Antioch" -City "CA, Apple Valley" -City "CA, Arcadia" -City "CA, Arden-Arcade" -City "CA, Bakersfield" -City "CA, Baldwin Park" -City "CA, Bellflower" -City "CA, Berkeley" -City "CA, Beverly Hills" -City "CA, Brea" -City "CA, Brentwood" -City "CA, Buena Park" -City "CA, Burbank" -City "CA, Camarillo" -City "CA, Campbell" -City "CA, Carlsbad" -City "CA, Carmichael" -City "CA, Carson" -City "CA, Castro Valley" -City "CA, Cathedral City" -City "CA, Cerritos" -City "CA, Chico" -City "CA, Chino Hills" -City "CA, Chino" -City "CA, Chula Vista" -City "CA, Citrus Heights" -City "CA, Clovis" -City "CA, Colton" -City "CA, Compton" -City "CA, Concord" -City "CA, Corona" -City "CA, Costa Mesa" -City "CA, Covina" -City "CA, Culver City" -City "CA, Cupertino" -City "CA, Cypress" -City "CA, Daly City" -City "CA, Dana Point" -City "CA, Danville" -City "CA, Davis" -City "CA, Diamond Bar" -City "CA, Downey" -City "CA, Dublin" -City "CA, East Los Angeles" -City "CA, El Cajon" -City "CA, El Dorado Hills" -City "CA, El Monte" -City "CA, Elk Grove" -City "CA, Encinitas" -City "CA, Escondido" -City "CA, Fairfield" -City "CA, Florence-Graham" -City "CA, Florin" -City "CA, Folsom" -City "CA, Fontana" -City "CA, Fountain Valley" -City "CA, Fremont" -City "CA, Fresno" -City "CA, Fullerton" -City "CA, Garden Grove" -City "CA, Gardena" -City "CA, Gilroy" -City "CA, Glendale" -City "CA, Glendora" -City "CA, Hacienda Heights" -City "CA, Hanford" -City "CA, Hawthorne" -City "CA, Hayward" -City "CA, Hemet" -City "CA, Hesperia" -City "CA, Highland" -City "CA, Huntington Beach" -City "CA, Huntington Park" -City "CA, Indio" -City "CA, Inglewood" -City "CA, Irvine" -City "CA, La Habra" -City "CA, La Mesa" -City "CA, La Quinta" -City "CA, Laguna Niguel" -City "CA, Lake Elsinore" -City "CA, Lake Forest" -City "CA, Lakewood" -City "CA, Lancaster" -City "CA, Lincoln" -City "CA, Livermore" -City "CA, Lodi" -City "CA, Long Beach" -City "CA, Los Angeles" -City "CA, Lynwood" -City "CA, Madera" -City "CA, Manhattan Beach" -City "CA, Manteca" -City "CA, Martinez" -City "CA, Menifee" -City "CA, Merced" -City "CA, Milpitas" -City "CA, Mission Viejo" -City "CA, Modesto" -City "CA, Montebello" -City "CA, Monterey Park" -City "CA, Moreno Valley" -City "CA, Mountain View" -City "CA, Murrieta" -City "CA, Napa" -City "CA, National City" -City "CA, Newport Beach" -City "CA, North Highlands" -City "CA, Norwalk" -City "CA, Novato" -City "CA, Oakland" -City "CA, Oceanside" -City "CA, Ontario" -City "CA, Orange" -City "CA, Oxnard" -City "CA, Palm Desert" -City "CA, Palm Springs" -City "CA, Palmdale" -City "CA, Palo Alto" -City "CA, Pasadena" -City "CA, Perris" -City "CA, Petaluma" -City "CA, Pico Rivera" -City "CA, Pittsburg" -City "CA, Placentia" -City "CA, Pleasanton" -City "CA, Pomona" -City "CA, Porterville" -City "CA, Poway" -City "CA, Rancho Cordova" -City "CA, Rancho Cucamonga" -City "CA, Rancho Palos Verdes" -City "CA, Rancho Santa Margarita" -City "CA, Redding" -City "CA, Redlands" -City "CA, Redondo Beach" -City "CA, Redwood City" -City "CA, Rialto" -City "CA, Richmond" -City "CA, Riverside" -City "CA, Rocklin" -City "CA, Rohnert Park" -City "CA, Rosemead" -City "CA, Roseville" -City "CA, Rowland Heights" -City "CA, Sacramento" -City "CA, Salinas" -City "CA, San Bernardino" -City "CA, San Bruno" -City "CA, San Buenaventura Ventura" -City "CA, San Clemente" -City "CA, San Diego" -City "CA, San Francisco" -City "CA, San Jose" -City "CA, San Leandro" -City "CA, San Luis Obispo" -City "CA, San Marcos" -City "CA, San Mateo" -City "CA, San Rafael" -City "CA, San Ramon" -City "CA, Santa Ana" -City "CA, Santa Barbara" -City "CA, Santa Clara" -City "CA, Santa Clarita" -City "CA, Santa Cruz" -City "CA, Santa Maria" -City "CA, Santa Monica" -City "CA, Santa Rosa" -City "CA, Santee" -City "CA, Simi Valley" -City "CA, South Gate" -City "CA, South Lake Tahoe" -City "CA, South San Francisco" -City "CA, South Whittier" -City "CA, Stockton" -City "CA, Sunnyvale" -City "CA, Temecula" -City "CA, Thousand Oaks" -City "CA, Torrance" -City "CA, Tracy" -City "CA, Tulare" -City "CA, Turlock" -City "CA, Tustin" -City "CA, Union City" -City "CA, Upland" -City "CA, Vacaville" -City "CA, Vallejo" -City "CA, Victorville" -City "CA, Visalia" -City "CA, Vista" -City "CA, Walnut Creek" -City "CA, West Covina" -City "CA, West Hollywood" -City "CA, West Sacramento" -City "CA, Westminster" -City "CA, Whittier" -City "CA, Woodland" -City "CA, Yorba Linda" -City "CA, Yuba City" -City "CA, Yucaipa" -City "CO, Arvada" -City "CO, Aurora" -City "CO, Boulder" -City "CO, Broomfield" -City "CO, Castle Rock" -City "CO, Centennial" -City "CO, Colorado Springs" -City "CO, Commerce City" -City "CO, Denver" -City "CO, Englewood" -City "CO, Fort Collins" -City "CO, Grand Junction" -City "CO, Greeley" -City "CO, Highlands Ranch" -City "CO, Lakewood" -City "CO, Littleton" -City "CO, Longmont" -City "CO, Loveland" -City "CO, Parker" -City "CO, Pueblo" -City "CO, Thornton" -City "CO, Westminster" -City "CT, Bridgeport" -City "CT, Bristol" -City "CT, Danbury" -City "CT, East Hartford" -City "CT, Hartford" -City "CT, Meriden" -City "CT, Middletown" -City "CT, Milford City Balance" -City "CT, New Britain" -City "CT, New Haven" -City "CT, Norwalk" -City "CT, Norwich" -City "CT, Shelton" -City "CT, Stamford" -City "CT, Stratford" -City "CT, Torrington" -City "CT, Waterbury" -City "CT, West Hartford" -City "CT, West Haven" -City "DC, Washington" -City "DE, Dover" -City "DE, Wilmington" -City "FL, Alafaya" -City "FL, Altamonte Springs" -City "FL, Apopka" -City "FL, Aventura" -City "FL, Boca Raton" -City "FL, Bonita Springs" -City "FL, Boynton Beach" -City "FL, Bradenton" -City "FL, Brandon" -City "FL, Cape Coral" -City "FL, Carrollwood" -City "FL, Clearwater" -City "FL, Coconut Creek" -City "FL, Coral Gables" -City "FL, Coral Springs" -City "FL, Country Club" -City "FL, Dania Beach" -City "FL, Davie" -City "FL, Daytona Beach" -City "FL, Deerfield Beach" -City "FL, Delray Beach" -City "FL, Deltona" -City "FL, Doral" -City "FL, Dunedin" -City "FL, East Lake" -City "FL, Estero" -City "FL, Fort Lauderdale" -City "FL, Fort Myers" -City "FL, Fort Pierce" -City "FL, Fountainebleau" -City "FL, Four Corners" -City "FL, Gainesville" -City "FL, Greenacres" -City "FL, Hallandale Beach" -City "FL, Hialeah" -City "FL, Hollywood" -City "FL, Homestead" -City "FL, Jacksonville" -City "FL, Jupiter" -City "FL, Kendale Lakes" -City "FL, Kendall" -City "FL, Kissimmee" -City "FL, Lake Worth" -City "FL, Lakeland" -City "FL, Largo" -City "FL, Lauderhill" -City "FL, Lehigh Acres" -City "FL, Marco Island" -City "FL, Margate" -City "FL, Melbourne" -City "FL, Merritt Island" -City "FL, Miami Beach" -City "FL, Miami Gardens" -City "FL, Miami" -City "FL, Miramar" -City "FL, Naples" -City "FL, New Smyrna Beach" -City "FL, North Fort Myers" -City "FL, North Miami Beach" -City "FL, North Miami" -City "FL, North Port" -City "FL, Oakland Park" -City "FL, Ocala" -City "FL, Orlando" -City "FL, Ormond Beach" -City "FL, Palm Bay" -City "FL, Palm Beach Gardens" -City "FL, Palm Coast" -City "FL, Palm Harbor" -City "FL, Panama City Beach" -City "FL, Panama City" -City "FL, Pembroke Pines" -City "FL, Pensacola" -City "FL, Pine Hills" -City "FL, Pinellas Park" -City "FL, Plantation" -City "FL, Poinciana" -City "FL, Pompano Beach" -City "FL, Port Charlotte" -City "FL, Port Orange" -City "FL, Port St Lucie" -City "FL, Riverview" -City "FL, Riviera Beach" -City "FL, Sanford" -City "FL, Sarasota" -City "FL, Spring Hill" -City "FL, St Cloud" -City "FL, St Petersburg" -City "FL, Sun City Center" -City "FL, Sunny Isles Beach" -City "FL, Sunrise" -City "FL, Tallahassee" -City "FL, Tamarac" -City "FL, Tamiami" -City "FL, Tampa" -City "FL, The Hammocks" -City "FL, The Villages" -City "FL, Titusville" -City "FL, Town N Country" -City "FL, University" -City "FL, Venice" -City "FL, Wellington" -City "FL, Wesley Chapel" -City "FL, West Palm Beach" -City "FL, Weston" -City "FL, Winter Haven" -City "GA, Albany" -City "GA, Alpharetta" -City "GA, Athens-Clarke County Unified Government Balance" -City "GA, Atlanta" -City "GA, Augusta-Richmond County Consolidated Government Balance" -City "GA, Columbus" -City "GA, Dunwoody" -City "GA, East Point" -City "GA, Hinesville" -City "GA, Johns Creek" -City "GA, Mableton" -City "GA, Macon" -City "GA, Marietta" -City "GA, Newnan" -City "GA, North Atlanta" -City "GA, Rome" -City "GA, Roswell" -City "GA, Sandy Springs" -City "GA, Savannah" -City "GA, Smyrna" -City "GA, Valdosta" -City "GA, Warner Robins" -City "HI, East Honolulu" -City "HI, Hilo" -City "HI, Kailua" -City "HI, Urban Honolulu" -City "IA, Ames" -City "IA, Ankeny" -City "IA, Cedar Falls" -City "IA, Cedar Rapids" -City "IA, Council Bluffs" -City "IA, Davenport" -City "IA, Des Moines" -City "IA, Dubuque" -City "IA, Iowa City" -City "IA, Marion" -City "IA, Sioux City" -City "IA, Urbandale" -City "IA, Waterloo" -City "IA, West Des Moines" -City "ID, Boise City" -City "ID, Caldwell" -City "ID, Coeur Dalene" -City "ID, Idaho Falls" -City "ID, Meridian" -City "ID, Nampa" -City "ID, Pocatello" -City "ID, Twin Falls" -City "IL, Arlington Heights" -City "IL, Aurora" -City "IL, Belleville" -City "IL, Berwyn" -City "IL, Bloomington" -City "IL, Bolingbrook" -City "IL, Buffalo Grove" -City "IL, Calumet City" -City "IL, Carol Stream" -City "IL, Champaign" -City "IL, Chicago" -City "IL, Cicero" -City "IL, Crystal Lake" -City "IL, Decatur" -City "IL, Dekalb" -City "IL, Des Plaines" -City "IL, Downers Grove" -City "IL, Elgin" -City "IL, Elmhurst" -City "IL, Evanston" -City "IL, Glenview" -City "IL, Hoffman Estates" -City "IL, Joliet" -City "IL, Lombard" -City "IL, Moline" -City "IL, Mount Prospect" -City "IL, Naperville" -City "IL, Normal" -City "IL, Oak Lawn" -City "IL, Oak Park" -City "IL, Orland Park" -City "IL, Palatine" -City "IL, Peoria" -City "IL, Quincy" -City "IL, Rock Island" -City "IL, Rockford" -City "IL, Schaumburg" -City "IL, Skokie" -City "IL, Springfield" -City "IL, Tinley Park" -City "IL, Urbana" -City "IL, Waukegan" -City "IL, Wheaton" -City "IL, Wheeling" -City "IN, Anderson" -City "IN, Bloomington" -City "IN, Carmel" -City "IN, Columbus" -City "IN, Elkhart" -City "IN, Evansville" -City "IN, Fishers" -City "IN, Fort Wayne" -City "IN, Gary" -City "IN, Greenwood" -City "IN, Hammond" -City "IN, Indianapolis City Balance" -City "IN, Jeffersonville" -City "IN, Kokomo" -City "IN, Lafayette" -City "IN, Lawrence" -City "IN, Mishawaka" -City "IN, Muncie" -City "IN, New Albany" -City "IN, Noblesville" -City "IN, Portage" -City "IN, Richmond" -City "IN, South Bend" -City "IN, Terre Haute" -City "KS, Hutchinson" -City "KS, Kansas City" -City "KS, Lawrence" -City "KS, Lenexa" -City "KS, Manhattan" -City "KS, Olathe" -City "KS, Overland Park" -City "KS, Salina" -City "KS, Shawnee" -City "KS, Topeka" -City "KS, Wichita" -City "KY, Bowling Green" -City "KY, Covington" -City "KY, Lexington-Fayette" -City "KY, Louisville Jefferson County Metro Government Balance" -City "KY, Owensboro" -City "LA, Alexandria" -City "LA, Baton Rouge" -City "LA, Bossier City" -City "LA, Kenner" -City "LA, Lafayette" -City "LA, Lake Charles" -City "LA, Metairie" -City "LA, Monroe" -City "LA, New Orleans" -City "LA, Shreveport" -City "MA, Arlington" -City "MA, Attleboro" -City "MA, Barnstable Town" -City "MA, Beverly" -City "MA, Boston" -City "MA, Brockton" -City "MA, Brookline" -City "MA, Cambridge" -City "MA, Chicopee" -City "MA, Everett" -City "MA, Fall River" -City "MA, Fitchburg" -City "MA, Framingham" -City "MA, Haverhill" -City "MA, Holyoke" -City "MA, Lawrence" -City "MA, Leominster" -City "MA, Lowell" -City "MA, Lynn" -City "MA, Malden" -City "MA, Marlborough" -City "MA, Medford" -City "MA, Methuen Town" -City "MA, New Bedford" -City "MA, Newton" -City "MA, Peabody" -City "MA, Pittsfield" -City "MA, Quincy" -City "MA, Revere" -City "MA, Salem" -City "MA, Somerville" -City "MA, Springfield" -City "MA, Taunton" -City "MA, Waltham" -City "MA, Watertown Town" -City "MA, Westfield" -City "MA, Weymouth Town" -City "MA, Woburn" -City "MA, Worcester" -City "MD, Annapolis" -City "MD, Aspen Hill" -City "MD, Baltimore" -City "MD, Bel Air South" -City "MD, Bethesda" -City "MD, Bowie" -City "MD, Catonsville" -City "MD, Columbia" -City "MD, Dundalk" -City "MD, Ellicott City" -City "MD, Essex" -City "MD, Frederick" -City "MD, Gaithersburg" -City "MD, Germantown" -City "MD, Glen Burnie" -City "MD, Hagerstown" -City "MD, North Bethesda" -City "MD, Ocean City" -City "MD, Odenton" -City "MD, Potomac" -City "MD, Rockville" -City "MD, Severn" -City "MD, Silver Spring" -City "MD, Towson" -City "MD, Waldorf" -City "MD, Wheaton" -City "MD, Woodlawn" -City "ME, Bangor" -City "ME, Lewiston" -City "ME, Portland" -City "MI, Ann Arbor" -City "MI, Battle Creek" -City "MI, Bay City" -City "MI, Dearborn Heights" -City "MI, Dearborn" -City "MI, Detroit" -City "MI, Farmington Hills" -City "MI, Flint" -City "MI, Grand Rapids" -City "MI, Jackson" -City "MI, Kalamazoo" -City "MI, Kentwood" -City "MI, Lansing" -City "MI, Lincoln Park" -City "MI, Livonia" -City "MI, Midland" -City "MI, Muskegon" -City "MI, Novi" -City "MI, Pontiac" -City "MI, Portage" -City "MI, Rochester Hills" -City "MI, Roseville" -City "MI, Royal Oak" -City "MI, Saginaw" -City "MI, Southfield" -City "MI, St Clair Shores" -City "MI, Sterling Heights" -City "MI, Taylor" -City "MI, Troy" -City "MI, Warren" -City "MI, Westland" -City "MI, Wyoming" -City "MN, Apple Valley" -City "MN, Blaine" -City "MN, Bloomington" -City "MN, Brooklyn Park" -City "MN, Burnsville" -City "MN, Coon Rapids" -City "MN, Duluth" -City "MN, Eagan" -City "MN, Eden Prairie" -City "MN, Edina" -City "MN, Lakeville" -City "MN, Mankato" -City "MN, Maple Grove" -City "MN, Maplewood" -City "MN, Minneapolis" -City "MN, Minnetonka" -City "MN, Moorhead" -City "MN, Plymouth" -City "MN, Richfield" -City "MN, Rochester" -City "MN, Roseville" -City "MN, St Cloud" -City "MN, St Louis Park" -City "MN, St Paul" -City "MN, Woodbury" -City "MO, Blue Springs" -City "MO, Cape Girardeau" -City "MO, Chesterfield" -City "MO, Columbia" -City "MO, Florissant" -City "MO, Independence" -City "MO, Jefferson City" -City "MO, Joplin" -City "MO, Kansas City" -City "MO, Lees Summit" -City "MO, Ofallon" -City "MO, Springfield" -City "MO, St Charles" -City "MO, St Joseph" -City "MO, St Louis" -City "MO, St Peters" -City "MO, University City" -City "MS, Biloxi" -City "MS, Gulfport" -City "MS, Hattiesburg" -City "MS, Jackson" -City "MS, Meridian" -City "MS, Southaven" -City "MS, Tupelo" -City "MT, Billings" -City "MT, Bozeman" -City "MT, Butte-Silver Bow Balance" -City "MT, Great Falls" -City "MT, Missoula" -City "NC, Asheville" -City "NC, Burlington" -City "NC, Cary" -City "NC, Chapel Hill" -City "NC, Charlotte" -City "NC, Concord" -City "NC, Durham" -City "NC, Fayetteville" -City "NC, Gastonia" -City "NC, Goldsboro" -City "NC, Greensboro" -City "NC, Greenville" -City "NC, Hickory" -City "NC, High Point" -City "NC, Huntersville" -City "NC, Jacksonville" -City "NC, Kannapolis" -City "NC, Raleigh" -City "NC, Rocky Mount" -City "NC, Wilmington" -City "NC, Wilson" -City "NC, Winston-Salem" -City "ND, Bismarck" -City "ND, Fargo" -City "ND, Grand Forks" -City "ND, Minot" -City "NE, Bellevue" -City "NE, Grand Island" -City "NE, Lincoln" -City "NE, Omaha" -City "NH, Concord" -City "NH, Manchester" -City "NH, Nashua" -City "NJ, Atlantic City" -City "NJ, Bayonne" -City "NJ, Camden" -City "NJ, Clifton" -City "NJ, East Orange" -City "NJ, Elizabeth" -City "NJ, Fort Lee" -City "NJ, Hackensack" -City "NJ, Hoboken" -City "NJ, Jersey City" -City "NJ, Linden" -City "NJ, New Brunswick" -City "NJ, Newark" -City "NJ, Ocean City" -City "NJ, Passaic" -City "NJ, Paterson" -City "NJ, Perth Amboy" -City "NJ, Plainfield" -City "NJ, Sayreville" -City "NJ, Toms River" -City "NJ, Trenton" -City "NJ, Union City" -City "NJ, Vineland" -City "NJ, West New York" -City "NM, Albuquerque" -City "NM, Clovis" -City "NM, Farmington" -City "NM, Las Cruces" -City "NM, Rio Rancho" -City "NM, Roswell" -City "NM, Santa Fe" -City "NM, South Valley" -City "NV, Carson City" -City "NV, Enterprise" -City "NV, Henderson" -City "NV, Las Vegas" -City "NV, North Las Vegas" -City "NV, Pahrump" -City "NV, Paradise" -City "NV, Reno" -City "NV, Sparks" -City "NV, Spring Valley" -City "NV, Sunrise Manor" -City "NV, Whitney" -City "NY, Albany" -City "NY, Binghamton" -City "NY, Brighton" -City "NY, Buffalo" -City "NY, Cheektowaga" -City "NY, Coram" -City "NY, Hempstead" -City "NY, Irondequoit" -City "NY, Levittown" -City "NY, Long Beach" -City "NY, Mount Vernon" -City "NY, New Rochelle" -City "NY, New York" -City "NY, Niagara Falls" -City "NY, Rochester" -City "NY, Rome" -City "NY, Schenectady" -City "NY, Syracuse" -City "NY, Tonawanda" -City "NY, Troy" -City "NY, Utica" -City "NY, West Seneca" -City "NY, White Plains" -City "NY, Yonkers" -City "OH, Akron" -City "OH, Beavercreek" -City "OH, Boardman" -City "OH, Canton" -City "OH, Cincinnati" -City "OH, Cleveland Heights" -City "OH, Cleveland" -City "OH, Columbus" -City "OH, Cuyahoga Falls" -City "OH, Dayton" -City "OH, Delaware" -City "OH, Dublin" -City "OH, Elyria" -City "OH, Euclid" -City "OH, Fairborn" -City "OH, Fairfield" -City "OH, Findlay" -City "OH, Grove City" -City "OH, Hamilton" -City "OH, Huber Heights" -City "OH, Kettering" -City "OH, Lakewood" -City "OH, Lancaster" -City "OH, Lima" -City "OH, Lorain" -City "OH, Mansfield" -City "OH, Marion" -City "OH, Mentor" -City "OH, Middletown" -City "OH, Newark" -City "OH, Parma" -City "OH, Springfield" -City "OH, Stow" -City "OH, Strongsville" -City "OH, Toledo" -City "OH, Warren" -City "OH, Youngstown" -City "OK, Bartlesville" -City "OK, Broken Arrow" -City "OK, Edmond" -City "OK, Enid" -City "OK, Lawton" -City "OK, Midwest City" -City "OK, Moore" -City "OK, Muskogee" -City "OK, Norman" -City "OK, Oklahoma City" -City "OK, Stillwater" -City "OK, Tulsa" -City "OR, Albany" -City "OR, Aloha" -City "OR, Beaverton" -City "OR, Bend" -City "OR, Corvallis" -City "OR, Eugene" -City "OR, Grants Pass" -City "OR, Gresham" -City "OR, Hillsboro" -City "OR, Lake Oswego" -City "OR, Medford" -City "OR, Portland" -City "OR, Salem" -City "OR, Springfield" -City "OR, Tigard" -City "PA, Allentown" -City "PA, Altoona" -City "PA, Bethlehem" -City "PA, Erie" -City "PA, Harrisburg" -City "PA, Lancaster" -City "PA, Levittown" -City "PA, Philadelphia" -City "PA, Pittsburgh" -City "PA, Reading" -City "PA, Scranton" -City "PA, Wilkes-Barre" -City "PA, York" -City "RI, Cranston" -City "RI, East Providence" -City "RI, Pawtucket" -City "RI, Providence" -City "RI, Warwick" -City "RI, Woonsocket" -City "SC, Charleston" -City "SC, Columbia" -City "SC, Florence" -City "SC, Goose Creek" -City "SC, Greenville" -City "SC, Hilton Head Island" -City "SC, Mount Pleasant" -City "SC, Myrtle Beach" -City "SC, North Charleston" -City "SC, North Myrtle Beach" -City "SC, Rock Hill" -City "SC, Spartanburg" -City "SC, Summerville" -City "SC, Sumter" -City "SD, Rapid City" -City "SD, Sioux Falls" -City "TN, Bartlett" -City "TN, Chattanooga" -City "TN, Clarksville" -City "TN, Cleveland" -City "TN, Collierville" -City "TN, Columbia" -City "TN, Franklin" -City "TN, Germantown" -City "TN, Hendersonville" -City "TN, Jackson" -City "TN, Johnson City" -City "TN, Kingsport" -City "TN, Knoxville" -City "TN, Memphis" -City "TN, Murfreesboro" -City "TN, Nashville-Davidson Metropolitan Government Balance" -City "TN, Smyrna" -City "TX, Abilene" -City "TX, Allen" -City "TX, Amarillo" -City "TX, Arlington" -City "TX, Atascocita" -City "TX, Austin" -City "TX, Baytown" -City "TX, Beaumont" -City "TX, Bedford" -City "TX, Brownsville" -City "TX, Bryan" -City "TX, Burleson" -City "TX, Carrollton" -City "TX, Cedar Hill" -City "TX, Cedar Park" -City "TX, College Station" -City "TX, Conroe" -City "TX, Coppell" -City "TX, Corpus Christi" -City "TX, Dallas" -City "TX, Denton" -City "TX, Desoto" -City "TX, Edinburg" -City "TX, El Paso" -City "TX, Euless" -City "TX, Flower Mound" -City "TX, Fort Worth" -City "TX, Frisco" -City "TX, Galveston" -City "TX, Garland" -City "TX, Georgetown" -City "TX, Grand Prairie" -City "TX, Grapevine" -City "TX, Haltom City" -City "TX, Harlingen" -City "TX, Houston" -City "TX, Hurst" -City "TX, Irving" -City "TX, Keller" -City "TX, Killeen" -City "TX, Laredo" -City "TX, League City" -City "TX, Lewisville" -City "TX, Longview" -City "TX, Lubbock" -City "TX, Lufkin" -City "TX, Mansfield" -City "TX, Mcallen" -City "TX, Mckinney" -City "TX, Mesquite" -City "TX, Midland" -City "TX, Mission" -City "TX, Missouri City" -City "TX, New Braunfels" -City "TX, North Richland Hills" -City "TX, Odessa" -City "TX, Pasadena" -City "TX, Pearland" -City "TX, Pflugerville" -City "TX, Pharr" -City "TX, Plano" -City "TX, Port Arthur" -City "TX, Richardson" -City "TX, Round Rock" -City "TX, Rowlett" -City "TX, San Angelo" -City "TX, San Antonio" -City "TX, San Marcos" -City "TX, Sherman" -City "TX, Spring" -City "TX, Sugar Land" -City "TX, Temple" -City "TX, Texarkana" -City "TX, Texas City" -City "TX, The Colony" -City "TX, The Woodlands" -City "TX, Tyler" -City "TX, Victoria" -City "TX, Waco" -City "TX, Wichita Falls" -City "TX, Wylie" -City "UT, Layton" -City "UT, Lehi" -City "UT, Logan" -City "UT, Millcreek" -City "UT, Murray" -City "UT, Ogden" -City "UT, Orem" -City "UT, Provo" -City "UT, Salt Lake City" -City "UT, Sandy" -City "UT, South Jordan" -City "UT, St George" -City "UT, Taylorsville" -City "UT, West Jordan" -City "UT, West Valley City" -City "VA, Alexandria" -City "VA, Arlington" -City "VA, Ashburn" -City "VA, Blacksburg" -City "VA, Centreville" -City "VA, Charlottesville" -City "VA, Chesapeake" -City "VA, Dale City" -City "VA, Danville" -City "VA, Hampton" -City "VA, Harrisonburg" -City "VA, Lake Ridge" -City "VA, Leesburg" -City "VA, Lynchburg" -City "VA, Mclean" -City "VA, Mechanicsville" -City "VA, Newport News" -City "VA, Norfolk" -City "VA, Petersburg" -City "VA, Portsmouth" -City "VA, Reston" -City "VA, Richmond" -City "VA, Roanoke" -City "VA, Suffolk" -City "VA, Tuckahoe" -City "VA, Virginia Beach" -City "VT, Burlington" -City "WA, Auburn" -City "WA, Bellevue" -City "WA, Bellingham" -City "WA, Bremerton" -City "WA, Edmonds" -City "WA, Everett" -City "WA, Federal Way" -City "WA, Kennewick" -City "WA, Kent" -City "WA, Kirkland" -City "WA, Lacey" -City "WA, Lakewood" -City "WA, Longview" -City "WA, Marysville" -City "WA, Olympia" -City "WA, Pasco" -City "WA, Puyallup" -City "WA, Redmond" -City "WA, Renton" -City "WA, Richland" -City "WA, Sammamish" -City "WA, Seattle" -City "WA, Shoreline" -City "WA, South Hill" -City "WA, Spokane Valley" -City "WA, Spokane" -City "WA, Tacoma" -City "WA, Vancouver" -City "WA, Yakima" -City "WI, Appleton" -City "WI, Beloit" -City "WI, Eau Claire" -City "WI, Fond Du Lac" -City "WI, Green Bay" -City "WI, Greenfield" -City "WI, Janesville" -City "WI, Kenosha" -City "WI, La Crosse" -City "WI, Madison" -City "WI, Manitowoc" -City "WI, Menomonee Falls" -City "WI, Milwaukee" -City "WI, New Berlin" -City "WI, Oshkosh" -City "WI, Racine" -City "WI, Sheboygan" -City "WI, Waukesha" -City "WI, Wausau" -City "WI, Wauwatosa" -City "WI, West Allis" -City "WV, Charleston" -City "WV, Huntington" -City "WV, Parkersburg" -City "WY, Casper" -City "WY, Cheyenne" -City In another census Place -City In another census Place -City Not in a census Place -City Not in a census Place -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 -Ground Thermal Conductivity 2.0 ResStockArguments site_ground_conductivity=2.0 -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Has Ducts No -HVAC Has Ducts Void -HVAC Has Ducts Yes -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" +City "AL, Auburn" +City "AL, Birmingham" +City "AL, Decatur" +City "AL, Dothan" +City "AL, Florence" +City "AL, Gadsden" +City "AL, Hoover" +City "AL, Huntsville" +City "AL, Madison" +City "AL, Mobile" +City "AL, Montgomery" +City "AL, Phenix City" +City "AL, Tuscaloosa" +City "AR, Bentonville" +City "AR, Conway" +City "AR, Fayetteville" +City "AR, Fort Smith" +City "AR, Hot Springs" +City "AR, Jonesboro" +City "AR, Little Rock" +City "AR, North Little Rock" +City "AR, Pine Bluff" +City "AR, Rogers" +City "AR, Springdale" +City "AZ, Apache Junction" +City "AZ, Avondale" +City "AZ, Buckeye" +City "AZ, Bullhead City" +City "AZ, Casa Grande" +City "AZ, Casas Adobes" +City "AZ, Catalina Foothills" +City "AZ, Chandler" +City "AZ, Flagstaff" +City "AZ, Fortuna Foothills" +City "AZ, Gilbert" +City "AZ, Glendale" +City "AZ, Goodyear" +City "AZ, Green Valley" +City "AZ, Lake Havasu City" +City "AZ, Marana" +City "AZ, Maricopa" +City "AZ, Mesa" +City "AZ, Oro Valley" +City "AZ, Peoria" +City "AZ, Phoenix" +City "AZ, Prescott Valley" +City "AZ, Prescott" +City "AZ, San Tan Valley" +City "AZ, Scottsdale" +City "AZ, Sierra Vista" +City "AZ, Sun City West" +City "AZ, Sun City" +City "AZ, Surprise" +City "AZ, Tempe" +City "AZ, Tucson" +City "AZ, Yuma" +City "CA, Alameda" +City "CA, Alhambra" +City "CA, Aliso Viejo" +City "CA, Altadena" +City "CA, Anaheim" +City "CA, Antioch" +City "CA, Apple Valley" +City "CA, Arcadia" +City "CA, Arden-Arcade" +City "CA, Bakersfield" +City "CA, Baldwin Park" +City "CA, Bellflower" +City "CA, Berkeley" +City "CA, Beverly Hills" +City "CA, Brea" +City "CA, Brentwood" +City "CA, Buena Park" +City "CA, Burbank" +City "CA, Camarillo" +City "CA, Campbell" +City "CA, Carlsbad" +City "CA, Carmichael" +City "CA, Carson" +City "CA, Castro Valley" +City "CA, Cathedral City" +City "CA, Cerritos" +City "CA, Chico" +City "CA, Chino Hills" +City "CA, Chino" +City "CA, Chula Vista" +City "CA, Citrus Heights" +City "CA, Clovis" +City "CA, Colton" +City "CA, Compton" +City "CA, Concord" +City "CA, Corona" +City "CA, Costa Mesa" +City "CA, Covina" +City "CA, Culver City" +City "CA, Cupertino" +City "CA, Cypress" +City "CA, Daly City" +City "CA, Dana Point" +City "CA, Danville" +City "CA, Davis" +City "CA, Diamond Bar" +City "CA, Downey" +City "CA, Dublin" +City "CA, East Los Angeles" +City "CA, El Cajon" +City "CA, El Dorado Hills" +City "CA, El Monte" +City "CA, Elk Grove" +City "CA, Encinitas" +City "CA, Escondido" +City "CA, Fairfield" +City "CA, Florence-Graham" +City "CA, Florin" +City "CA, Folsom" +City "CA, Fontana" +City "CA, Fountain Valley" +City "CA, Fremont" +City "CA, Fresno" +City "CA, Fullerton" +City "CA, Garden Grove" +City "CA, Gardena" +City "CA, Gilroy" +City "CA, Glendale" +City "CA, Glendora" +City "CA, Hacienda Heights" +City "CA, Hanford" +City "CA, Hawthorne" +City "CA, Hayward" +City "CA, Hemet" +City "CA, Hesperia" +City "CA, Highland" +City "CA, Huntington Beach" +City "CA, Huntington Park" +City "CA, Indio" +City "CA, Inglewood" +City "CA, Irvine" +City "CA, La Habra" +City "CA, La Mesa" +City "CA, La Quinta" +City "CA, Laguna Niguel" +City "CA, Lake Elsinore" +City "CA, Lake Forest" +City "CA, Lakewood" +City "CA, Lancaster" +City "CA, Lincoln" +City "CA, Livermore" +City "CA, Lodi" +City "CA, Long Beach" +City "CA, Los Angeles" +City "CA, Lynwood" +City "CA, Madera" +City "CA, Manhattan Beach" +City "CA, Manteca" +City "CA, Martinez" +City "CA, Menifee" +City "CA, Merced" +City "CA, Milpitas" +City "CA, Mission Viejo" +City "CA, Modesto" +City "CA, Montebello" +City "CA, Monterey Park" +City "CA, Moreno Valley" +City "CA, Mountain View" +City "CA, Murrieta" +City "CA, Napa" +City "CA, National City" +City "CA, Newport Beach" +City "CA, North Highlands" +City "CA, Norwalk" +City "CA, Novato" +City "CA, Oakland" +City "CA, Oceanside" +City "CA, Ontario" +City "CA, Orange" +City "CA, Oxnard" +City "CA, Palm Desert" +City "CA, Palm Springs" +City "CA, Palmdale" +City "CA, Palo Alto" +City "CA, Pasadena" +City "CA, Perris" +City "CA, Petaluma" +City "CA, Pico Rivera" +City "CA, Pittsburg" +City "CA, Placentia" +City "CA, Pleasanton" +City "CA, Pomona" +City "CA, Porterville" +City "CA, Poway" +City "CA, Rancho Cordova" +City "CA, Rancho Cucamonga" +City "CA, Rancho Palos Verdes" +City "CA, Rancho Santa Margarita" +City "CA, Redding" +City "CA, Redlands" +City "CA, Redondo Beach" +City "CA, Redwood City" +City "CA, Rialto" +City "CA, Richmond" +City "CA, Riverside" +City "CA, Rocklin" +City "CA, Rohnert Park" +City "CA, Rosemead" +City "CA, Roseville" +City "CA, Rowland Heights" +City "CA, Sacramento" +City "CA, Salinas" +City "CA, San Bernardino" +City "CA, San Bruno" +City "CA, San Buenaventura Ventura" +City "CA, San Clemente" +City "CA, San Diego" +City "CA, San Francisco" +City "CA, San Jose" +City "CA, San Leandro" +City "CA, San Luis Obispo" +City "CA, San Marcos" +City "CA, San Mateo" +City "CA, San Rafael" +City "CA, San Ramon" +City "CA, Santa Ana" +City "CA, Santa Barbara" +City "CA, Santa Clara" +City "CA, Santa Clarita" +City "CA, Santa Cruz" +City "CA, Santa Maria" +City "CA, Santa Monica" +City "CA, Santa Rosa" +City "CA, Santee" +City "CA, Simi Valley" +City "CA, South Gate" +City "CA, South Lake Tahoe" +City "CA, South San Francisco" +City "CA, South Whittier" +City "CA, Stockton" +City "CA, Sunnyvale" +City "CA, Temecula" +City "CA, Thousand Oaks" +City "CA, Torrance" +City "CA, Tracy" +City "CA, Tulare" +City "CA, Turlock" +City "CA, Tustin" +City "CA, Union City" +City "CA, Upland" +City "CA, Vacaville" +City "CA, Vallejo" +City "CA, Victorville" +City "CA, Visalia" +City "CA, Vista" +City "CA, Walnut Creek" +City "CA, West Covina" +City "CA, West Hollywood" +City "CA, West Sacramento" +City "CA, Westminster" +City "CA, Whittier" +City "CA, Woodland" +City "CA, Yorba Linda" +City "CA, Yuba City" +City "CA, Yucaipa" +City "CO, Arvada" +City "CO, Aurora" +City "CO, Boulder" +City "CO, Broomfield" +City "CO, Castle Rock" +City "CO, Centennial" +City "CO, Colorado Springs" +City "CO, Commerce City" +City "CO, Denver" +City "CO, Englewood" +City "CO, Fort Collins" +City "CO, Grand Junction" +City "CO, Greeley" +City "CO, Highlands Ranch" +City "CO, Lakewood" +City "CO, Littleton" +City "CO, Longmont" +City "CO, Loveland" +City "CO, Parker" +City "CO, Pueblo" +City "CO, Thornton" +City "CO, Westminster" +City "CT, Bridgeport" +City "CT, Bristol" +City "CT, Danbury" +City "CT, East Hartford" +City "CT, Hartford" +City "CT, Meriden" +City "CT, Middletown" +City "CT, Milford City Balance" +City "CT, New Britain" +City "CT, New Haven" +City "CT, Norwalk" +City "CT, Norwich" +City "CT, Shelton" +City "CT, Stamford" +City "CT, Stratford" +City "CT, Torrington" +City "CT, Waterbury" +City "CT, West Hartford" +City "CT, West Haven" +City "DC, Washington" +City "DE, Dover" +City "DE, Wilmington" +City "FL, Alafaya" +City "FL, Altamonte Springs" +City "FL, Apopka" +City "FL, Aventura" +City "FL, Boca Raton" +City "FL, Bonita Springs" +City "FL, Boynton Beach" +City "FL, Bradenton" +City "FL, Brandon" +City "FL, Cape Coral" +City "FL, Carrollwood" +City "FL, Clearwater" +City "FL, Coconut Creek" +City "FL, Coral Gables" +City "FL, Coral Springs" +City "FL, Country Club" +City "FL, Dania Beach" +City "FL, Davie" +City "FL, Daytona Beach" +City "FL, Deerfield Beach" +City "FL, Delray Beach" +City "FL, Deltona" +City "FL, Doral" +City "FL, Dunedin" +City "FL, East Lake" +City "FL, Estero" +City "FL, Fort Lauderdale" +City "FL, Fort Myers" +City "FL, Fort Pierce" +City "FL, Fountainebleau" +City "FL, Four Corners" +City "FL, Gainesville" +City "FL, Greenacres" +City "FL, Hallandale Beach" +City "FL, Hialeah" +City "FL, Hollywood" +City "FL, Homestead" +City "FL, Jacksonville" +City "FL, Jupiter" +City "FL, Kendale Lakes" +City "FL, Kendall" +City "FL, Kissimmee" +City "FL, Lake Worth" +City "FL, Lakeland" +City "FL, Largo" +City "FL, Lauderhill" +City "FL, Lehigh Acres" +City "FL, Marco Island" +City "FL, Margate" +City "FL, Melbourne" +City "FL, Merritt Island" +City "FL, Miami Beach" +City "FL, Miami Gardens" +City "FL, Miami" +City "FL, Miramar" +City "FL, Naples" +City "FL, New Smyrna Beach" +City "FL, North Fort Myers" +City "FL, North Miami Beach" +City "FL, North Miami" +City "FL, North Port" +City "FL, Oakland Park" +City "FL, Ocala" +City "FL, Orlando" +City "FL, Ormond Beach" +City "FL, Palm Bay" +City "FL, Palm Beach Gardens" +City "FL, Palm Coast" +City "FL, Palm Harbor" +City "FL, Panama City Beach" +City "FL, Panama City" +City "FL, Pembroke Pines" +City "FL, Pensacola" +City "FL, Pine Hills" +City "FL, Pinellas Park" +City "FL, Plantation" +City "FL, Poinciana" +City "FL, Pompano Beach" +City "FL, Port Charlotte" +City "FL, Port Orange" +City "FL, Port St Lucie" +City "FL, Riverview" +City "FL, Riviera Beach" +City "FL, Sanford" +City "FL, Sarasota" +City "FL, Spring Hill" +City "FL, St Cloud" +City "FL, St Petersburg" +City "FL, Sun City Center" +City "FL, Sunny Isles Beach" +City "FL, Sunrise" +City "FL, Tallahassee" +City "FL, Tamarac" +City "FL, Tamiami" +City "FL, Tampa" +City "FL, The Hammocks" +City "FL, The Villages" +City "FL, Titusville" +City "FL, Town N Country" +City "FL, University" +City "FL, Venice" +City "FL, Wellington" +City "FL, Wesley Chapel" +City "FL, West Palm Beach" +City "FL, Weston" +City "FL, Winter Haven" +City "GA, Albany" +City "GA, Alpharetta" +City "GA, Athens-Clarke County Unified Government Balance" +City "GA, Atlanta" +City "GA, Augusta-Richmond County Consolidated Government Balance" +City "GA, Columbus" +City "GA, Dunwoody" +City "GA, East Point" +City "GA, Hinesville" +City "GA, Johns Creek" +City "GA, Mableton" +City "GA, Macon" +City "GA, Marietta" +City "GA, Newnan" +City "GA, North Atlanta" +City "GA, Rome" +City "GA, Roswell" +City "GA, Sandy Springs" +City "GA, Savannah" +City "GA, Smyrna" +City "GA, Valdosta" +City "GA, Warner Robins" +City "HI, East Honolulu" +City "HI, Hilo" +City "HI, Kailua" +City "HI, Urban Honolulu" +City "IA, Ames" +City "IA, Ankeny" +City "IA, Cedar Falls" +City "IA, Cedar Rapids" +City "IA, Council Bluffs" +City "IA, Davenport" +City "IA, Des Moines" +City "IA, Dubuque" +City "IA, Iowa City" +City "IA, Marion" +City "IA, Sioux City" +City "IA, Urbandale" +City "IA, Waterloo" +City "IA, West Des Moines" +City "ID, Boise City" +City "ID, Caldwell" +City "ID, Coeur Dalene" +City "ID, Idaho Falls" +City "ID, Meridian" +City "ID, Nampa" +City "ID, Pocatello" +City "ID, Twin Falls" +City "IL, Arlington Heights" +City "IL, Aurora" +City "IL, Belleville" +City "IL, Berwyn" +City "IL, Bloomington" +City "IL, Bolingbrook" +City "IL, Buffalo Grove" +City "IL, Calumet City" +City "IL, Carol Stream" +City "IL, Champaign" +City "IL, Chicago" +City "IL, Cicero" +City "IL, Crystal Lake" +City "IL, Decatur" +City "IL, Dekalb" +City "IL, Des Plaines" +City "IL, Downers Grove" +City "IL, Elgin" +City "IL, Elmhurst" +City "IL, Evanston" +City "IL, Glenview" +City "IL, Hoffman Estates" +City "IL, Joliet" +City "IL, Lombard" +City "IL, Moline" +City "IL, Mount Prospect" +City "IL, Naperville" +City "IL, Normal" +City "IL, Oak Lawn" +City "IL, Oak Park" +City "IL, Orland Park" +City "IL, Palatine" +City "IL, Peoria" +City "IL, Quincy" +City "IL, Rock Island" +City "IL, Rockford" +City "IL, Schaumburg" +City "IL, Skokie" +City "IL, Springfield" +City "IL, Tinley Park" +City "IL, Urbana" +City "IL, Waukegan" +City "IL, Wheaton" +City "IL, Wheeling" +City "IN, Anderson" +City "IN, Bloomington" +City "IN, Carmel" +City "IN, Columbus" +City "IN, Elkhart" +City "IN, Evansville" +City "IN, Fishers" +City "IN, Fort Wayne" +City "IN, Gary" +City "IN, Greenwood" +City "IN, Hammond" +City "IN, Indianapolis City Balance" +City "IN, Jeffersonville" +City "IN, Kokomo" +City "IN, Lafayette" +City "IN, Lawrence" +City "IN, Mishawaka" +City "IN, Muncie" +City "IN, New Albany" +City "IN, Noblesville" +City "IN, Portage" +City "IN, Richmond" +City "IN, South Bend" +City "IN, Terre Haute" +City "KS, Hutchinson" +City "KS, Kansas City" +City "KS, Lawrence" +City "KS, Lenexa" +City "KS, Manhattan" +City "KS, Olathe" +City "KS, Overland Park" +City "KS, Salina" +City "KS, Shawnee" +City "KS, Topeka" +City "KS, Wichita" +City "KY, Bowling Green" +City "KY, Covington" +City "KY, Lexington-Fayette" +City "KY, Louisville Jefferson County Metro Government Balance" +City "KY, Owensboro" +City "LA, Alexandria" +City "LA, Baton Rouge" +City "LA, Bossier City" +City "LA, Kenner" +City "LA, Lafayette" +City "LA, Lake Charles" +City "LA, Metairie" +City "LA, Monroe" +City "LA, New Orleans" +City "LA, Shreveport" +City "MA, Arlington" +City "MA, Attleboro" +City "MA, Barnstable Town" +City "MA, Beverly" +City "MA, Boston" +City "MA, Brockton" +City "MA, Brookline" +City "MA, Cambridge" +City "MA, Chicopee" +City "MA, Everett" +City "MA, Fall River" +City "MA, Fitchburg" +City "MA, Framingham" +City "MA, Haverhill" +City "MA, Holyoke" +City "MA, Lawrence" +City "MA, Leominster" +City "MA, Lowell" +City "MA, Lynn" +City "MA, Malden" +City "MA, Marlborough" +City "MA, Medford" +City "MA, Methuen Town" +City "MA, New Bedford" +City "MA, Newton" +City "MA, Peabody" +City "MA, Pittsfield" +City "MA, Quincy" +City "MA, Revere" +City "MA, Salem" +City "MA, Somerville" +City "MA, Springfield" +City "MA, Taunton" +City "MA, Waltham" +City "MA, Watertown Town" +City "MA, Westfield" +City "MA, Weymouth Town" +City "MA, Woburn" +City "MA, Worcester" +City "MD, Annapolis" +City "MD, Aspen Hill" +City "MD, Baltimore" +City "MD, Bel Air South" +City "MD, Bethesda" +City "MD, Bowie" +City "MD, Catonsville" +City "MD, Columbia" +City "MD, Dundalk" +City "MD, Ellicott City" +City "MD, Essex" +City "MD, Frederick" +City "MD, Gaithersburg" +City "MD, Germantown" +City "MD, Glen Burnie" +City "MD, Hagerstown" +City "MD, North Bethesda" +City "MD, Ocean City" +City "MD, Odenton" +City "MD, Potomac" +City "MD, Rockville" +City "MD, Severn" +City "MD, Silver Spring" +City "MD, Towson" +City "MD, Waldorf" +City "MD, Wheaton" +City "MD, Woodlawn" +City "ME, Bangor" +City "ME, Lewiston" +City "ME, Portland" +City "MI, Ann Arbor" +City "MI, Battle Creek" +City "MI, Bay City" +City "MI, Dearborn Heights" +City "MI, Dearborn" +City "MI, Detroit" +City "MI, Farmington Hills" +City "MI, Flint" +City "MI, Grand Rapids" +City "MI, Jackson" +City "MI, Kalamazoo" +City "MI, Kentwood" +City "MI, Lansing" +City "MI, Lincoln Park" +City "MI, Livonia" +City "MI, Midland" +City "MI, Muskegon" +City "MI, Novi" +City "MI, Pontiac" +City "MI, Portage" +City "MI, Rochester Hills" +City "MI, Roseville" +City "MI, Royal Oak" +City "MI, Saginaw" +City "MI, Southfield" +City "MI, St Clair Shores" +City "MI, Sterling Heights" +City "MI, Taylor" +City "MI, Troy" +City "MI, Warren" +City "MI, Westland" +City "MI, Wyoming" +City "MN, Apple Valley" +City "MN, Blaine" +City "MN, Bloomington" +City "MN, Brooklyn Park" +City "MN, Burnsville" +City "MN, Coon Rapids" +City "MN, Duluth" +City "MN, Eagan" +City "MN, Eden Prairie" +City "MN, Edina" +City "MN, Lakeville" +City "MN, Mankato" +City "MN, Maple Grove" +City "MN, Maplewood" +City "MN, Minneapolis" +City "MN, Minnetonka" +City "MN, Moorhead" +City "MN, Plymouth" +City "MN, Richfield" +City "MN, Rochester" +City "MN, Roseville" +City "MN, St Cloud" +City "MN, St Louis Park" +City "MN, St Paul" +City "MN, Woodbury" +City "MO, Blue Springs" +City "MO, Cape Girardeau" +City "MO, Chesterfield" +City "MO, Columbia" +City "MO, Florissant" +City "MO, Independence" +City "MO, Jefferson City" +City "MO, Joplin" +City "MO, Kansas City" +City "MO, Lees Summit" +City "MO, Ofallon" +City "MO, Springfield" +City "MO, St Charles" +City "MO, St Joseph" +City "MO, St Louis" +City "MO, St Peters" +City "MO, University City" +City "MS, Biloxi" +City "MS, Gulfport" +City "MS, Hattiesburg" +City "MS, Jackson" +City "MS, Meridian" +City "MS, Southaven" +City "MS, Tupelo" +City "MT, Billings" +City "MT, Bozeman" +City "MT, Butte-Silver Bow Balance" +City "MT, Great Falls" +City "MT, Missoula" +City "NC, Asheville" +City "NC, Burlington" +City "NC, Cary" +City "NC, Chapel Hill" +City "NC, Charlotte" +City "NC, Concord" +City "NC, Durham" +City "NC, Fayetteville" +City "NC, Gastonia" +City "NC, Goldsboro" +City "NC, Greensboro" +City "NC, Greenville" +City "NC, Hickory" +City "NC, High Point" +City "NC, Huntersville" +City "NC, Jacksonville" +City "NC, Kannapolis" +City "NC, Raleigh" +City "NC, Rocky Mount" +City "NC, Wilmington" +City "NC, Wilson" +City "NC, Winston-Salem" +City "ND, Bismarck" +City "ND, Fargo" +City "ND, Grand Forks" +City "ND, Minot" +City "NE, Bellevue" +City "NE, Grand Island" +City "NE, Lincoln" +City "NE, Omaha" +City "NH, Concord" +City "NH, Manchester" +City "NH, Nashua" +City "NJ, Atlantic City" +City "NJ, Bayonne" +City "NJ, Camden" +City "NJ, Clifton" +City "NJ, East Orange" +City "NJ, Elizabeth" +City "NJ, Fort Lee" +City "NJ, Hackensack" +City "NJ, Hoboken" +City "NJ, Jersey City" +City "NJ, Linden" +City "NJ, New Brunswick" +City "NJ, Newark" +City "NJ, Ocean City" +City "NJ, Passaic" +City "NJ, Paterson" +City "NJ, Perth Amboy" +City "NJ, Plainfield" +City "NJ, Sayreville" +City "NJ, Toms River" +City "NJ, Trenton" +City "NJ, Union City" +City "NJ, Vineland" +City "NJ, West New York" +City "NM, Albuquerque" +City "NM, Clovis" +City "NM, Farmington" +City "NM, Las Cruces" +City "NM, Rio Rancho" +City "NM, Roswell" +City "NM, Santa Fe" +City "NM, South Valley" +City "NV, Carson City" +City "NV, Enterprise" +City "NV, Henderson" +City "NV, Las Vegas" +City "NV, North Las Vegas" +City "NV, Pahrump" +City "NV, Paradise" +City "NV, Reno" +City "NV, Sparks" +City "NV, Spring Valley" +City "NV, Sunrise Manor" +City "NV, Whitney" +City "NY, Albany" +City "NY, Binghamton" +City "NY, Brighton" +City "NY, Buffalo" +City "NY, Cheektowaga" +City "NY, Coram" +City "NY, Hempstead" +City "NY, Irondequoit" +City "NY, Levittown" +City "NY, Long Beach" +City "NY, Mount Vernon" +City "NY, New Rochelle" +City "NY, New York" +City "NY, Niagara Falls" +City "NY, Rochester" +City "NY, Rome" +City "NY, Schenectady" +City "NY, Syracuse" +City "NY, Tonawanda" +City "NY, Troy" +City "NY, Utica" +City "NY, West Seneca" +City "NY, White Plains" +City "NY, Yonkers" +City "OH, Akron" +City "OH, Beavercreek" +City "OH, Boardman" +City "OH, Canton" +City "OH, Cincinnati" +City "OH, Cleveland Heights" +City "OH, Cleveland" +City "OH, Columbus" +City "OH, Cuyahoga Falls" +City "OH, Dayton" +City "OH, Delaware" +City "OH, Dublin" +City "OH, Elyria" +City "OH, Euclid" +City "OH, Fairborn" +City "OH, Fairfield" +City "OH, Findlay" +City "OH, Grove City" +City "OH, Hamilton" +City "OH, Huber Heights" +City "OH, Kettering" +City "OH, Lakewood" +City "OH, Lancaster" +City "OH, Lima" +City "OH, Lorain" +City "OH, Mansfield" +City "OH, Marion" +City "OH, Mentor" +City "OH, Middletown" +City "OH, Newark" +City "OH, Parma" +City "OH, Springfield" +City "OH, Stow" +City "OH, Strongsville" +City "OH, Toledo" +City "OH, Warren" +City "OH, Youngstown" +City "OK, Bartlesville" +City "OK, Broken Arrow" +City "OK, Edmond" +City "OK, Enid" +City "OK, Lawton" +City "OK, Midwest City" +City "OK, Moore" +City "OK, Muskogee" +City "OK, Norman" +City "OK, Oklahoma City" +City "OK, Stillwater" +City "OK, Tulsa" +City "OR, Albany" +City "OR, Aloha" +City "OR, Beaverton" +City "OR, Bend" +City "OR, Corvallis" +City "OR, Eugene" +City "OR, Grants Pass" +City "OR, Gresham" +City "OR, Hillsboro" +City "OR, Lake Oswego" +City "OR, Medford" +City "OR, Portland" +City "OR, Salem" +City "OR, Springfield" +City "OR, Tigard" +City "PA, Allentown" +City "PA, Altoona" +City "PA, Bethlehem" +City "PA, Erie" +City "PA, Harrisburg" +City "PA, Lancaster" +City "PA, Levittown" +City "PA, Philadelphia" +City "PA, Pittsburgh" +City "PA, Reading" +City "PA, Scranton" +City "PA, Wilkes-Barre" +City "PA, York" +City "RI, Cranston" +City "RI, East Providence" +City "RI, Pawtucket" +City "RI, Providence" +City "RI, Warwick" +City "RI, Woonsocket" +City "SC, Charleston" +City "SC, Columbia" +City "SC, Florence" +City "SC, Goose Creek" +City "SC, Greenville" +City "SC, Hilton Head Island" +City "SC, Mount Pleasant" +City "SC, Myrtle Beach" +City "SC, North Charleston" +City "SC, North Myrtle Beach" +City "SC, Rock Hill" +City "SC, Spartanburg" +City "SC, Summerville" +City "SC, Sumter" +City "SD, Rapid City" +City "SD, Sioux Falls" +City "TN, Bartlett" +City "TN, Chattanooga" +City "TN, Clarksville" +City "TN, Cleveland" +City "TN, Collierville" +City "TN, Columbia" +City "TN, Franklin" +City "TN, Germantown" +City "TN, Hendersonville" +City "TN, Jackson" +City "TN, Johnson City" +City "TN, Kingsport" +City "TN, Knoxville" +City "TN, Memphis" +City "TN, Murfreesboro" +City "TN, Nashville-Davidson Metropolitan Government Balance" +City "TN, Smyrna" +City "TX, Abilene" +City "TX, Allen" +City "TX, Amarillo" +City "TX, Arlington" +City "TX, Atascocita" +City "TX, Austin" +City "TX, Baytown" +City "TX, Beaumont" +City "TX, Bedford" +City "TX, Brownsville" +City "TX, Bryan" +City "TX, Burleson" +City "TX, Carrollton" +City "TX, Cedar Hill" +City "TX, Cedar Park" +City "TX, College Station" +City "TX, Conroe" +City "TX, Coppell" +City "TX, Corpus Christi" +City "TX, Dallas" +City "TX, Denton" +City "TX, Desoto" +City "TX, Edinburg" +City "TX, El Paso" +City "TX, Euless" +City "TX, Flower Mound" +City "TX, Fort Worth" +City "TX, Frisco" +City "TX, Galveston" +City "TX, Garland" +City "TX, Georgetown" +City "TX, Grand Prairie" +City "TX, Grapevine" +City "TX, Haltom City" +City "TX, Harlingen" +City "TX, Houston" +City "TX, Hurst" +City "TX, Irving" +City "TX, Keller" +City "TX, Killeen" +City "TX, Laredo" +City "TX, League City" +City "TX, Lewisville" +City "TX, Longview" +City "TX, Lubbock" +City "TX, Lufkin" +City "TX, Mansfield" +City "TX, Mcallen" +City "TX, Mckinney" +City "TX, Mesquite" +City "TX, Midland" +City "TX, Mission" +City "TX, Missouri City" +City "TX, New Braunfels" +City "TX, North Richland Hills" +City "TX, Odessa" +City "TX, Pasadena" +City "TX, Pearland" +City "TX, Pflugerville" +City "TX, Pharr" +City "TX, Plano" +City "TX, Port Arthur" +City "TX, Richardson" +City "TX, Round Rock" +City "TX, Rowlett" +City "TX, San Angelo" +City "TX, San Antonio" +City "TX, San Marcos" +City "TX, Sherman" +City "TX, Spring" +City "TX, Sugar Land" +City "TX, Temple" +City "TX, Texarkana" +City "TX, Texas City" +City "TX, The Colony" +City "TX, The Woodlands" +City "TX, Tyler" +City "TX, Victoria" +City "TX, Waco" +City "TX, Wichita Falls" +City "TX, Wylie" +City "UT, Layton" +City "UT, Lehi" +City "UT, Logan" +City "UT, Millcreek" +City "UT, Murray" +City "UT, Ogden" +City "UT, Orem" +City "UT, Provo" +City "UT, Salt Lake City" +City "UT, Sandy" +City "UT, South Jordan" +City "UT, St George" +City "UT, Taylorsville" +City "UT, West Jordan" +City "UT, West Valley City" +City "VA, Alexandria" +City "VA, Arlington" +City "VA, Ashburn" +City "VA, Blacksburg" +City "VA, Centreville" +City "VA, Charlottesville" +City "VA, Chesapeake" +City "VA, Dale City" +City "VA, Danville" +City "VA, Hampton" +City "VA, Harrisonburg" +City "VA, Lake Ridge" +City "VA, Leesburg" +City "VA, Lynchburg" +City "VA, Mclean" +City "VA, Mechanicsville" +City "VA, Newport News" +City "VA, Norfolk" +City "VA, Petersburg" +City "VA, Portsmouth" +City "VA, Reston" +City "VA, Richmond" +City "VA, Roanoke" +City "VA, Suffolk" +City "VA, Tuckahoe" +City "VA, Virginia Beach" +City "VT, Burlington" +City "WA, Auburn" +City "WA, Bellevue" +City "WA, Bellingham" +City "WA, Bremerton" +City "WA, Edmonds" +City "WA, Everett" +City "WA, Federal Way" +City "WA, Kennewick" +City "WA, Kent" +City "WA, Kirkland" +City "WA, Lacey" +City "WA, Lakewood" +City "WA, Longview" +City "WA, Marysville" +City "WA, Olympia" +City "WA, Pasco" +City "WA, Puyallup" +City "WA, Redmond" +City "WA, Renton" +City "WA, Richland" +City "WA, Sammamish" +City "WA, Seattle" +City "WA, Shoreline" +City "WA, South Hill" +City "WA, Spokane Valley" +City "WA, Spokane" +City "WA, Tacoma" +City "WA, Vancouver" +City "WA, Yakima" +City "WI, Appleton" +City "WI, Beloit" +City "WI, Eau Claire" +City "WI, Fond Du Lac" +City "WI, Green Bay" +City "WI, Greenfield" +City "WI, Janesville" +City "WI, Kenosha" +City "WI, La Crosse" +City "WI, Madison" +City "WI, Manitowoc" +City "WI, Menomonee Falls" +City "WI, Milwaukee" +City "WI, New Berlin" +City "WI, Oshkosh" +City "WI, Racine" +City "WI, Sheboygan" +City "WI, Waukesha" +City "WI, Wausau" +City "WI, Wauwatosa" +City "WI, West Allis" +City "WV, Charleston" +City "WV, Huntington" +City "WV, Parkersburg" +City "WY, Casper" +City "WY, Cheyenne" +City In another census Place +City In another census Place +City Not in a census Place +City Not in a census Place +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Has Ducts No +HVAC Has Ducts Void +HVAC Has Ducts Yes +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto @@ -9735,3256 +9735,3287 @@ HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_sys HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Partial Space Conditioning 20% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 50% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.5 -HVAC Secondary Heating Partial Space Conditioning <10% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" -PUMA "AK, 00102" -PUMA "AK, 00200" -PUMA "AK, 00300" -PUMA "AK, 00400" -PUMA "AL, 00100" -PUMA "AL, 00200" -PUMA "AL, 00301" -PUMA "AL, 00302" -PUMA "AL, 00400" -PUMA "AL, 00500" -PUMA "AL, 00600" -PUMA "AL, 00700" -PUMA "AL, 00800" -PUMA "AL, 00900" -PUMA "AL, 01000" -PUMA "AL, 01100" -PUMA "AL, 01200" -PUMA "AL, 01301" -PUMA "AL, 01302" -PUMA "AL, 01303" -PUMA "AL, 01304" -PUMA "AL, 01305" -PUMA "AL, 01400" -PUMA "AL, 01500" -PUMA "AL, 01600" -PUMA "AL, 01700" -PUMA "AL, 01800" -PUMA "AL, 01900" -PUMA "AL, 02000" -PUMA "AL, 02100" -PUMA "AL, 02200" -PUMA "AL, 02300" -PUMA "AL, 02400" -PUMA "AL, 02500" -PUMA "AL, 02600" -PUMA "AL, 02701" -PUMA "AL, 02702" -PUMA "AL, 02703" -PUMA "AR, 00100" -PUMA "AR, 00200" -PUMA "AR, 00300" -PUMA "AR, 00400" -PUMA "AR, 00500" -PUMA "AR, 00600" -PUMA "AR, 00700" -PUMA "AR, 00800" -PUMA "AR, 00900" -PUMA "AR, 01000" -PUMA "AR, 01100" -PUMA "AR, 01200" -PUMA "AR, 01300" -PUMA "AR, 01400" -PUMA "AR, 01500" -PUMA "AR, 01600" -PUMA "AR, 01700" -PUMA "AR, 01800" -PUMA "AR, 01900" -PUMA "AR, 02000" -PUMA "AZ, 00100" -PUMA "AZ, 00101" -PUMA "AZ, 00102" -PUMA "AZ, 00103" -PUMA "AZ, 00104" -PUMA "AZ, 00105" -PUMA "AZ, 00106" -PUMA "AZ, 00107" -PUMA "AZ, 00108" -PUMA "AZ, 00109" -PUMA "AZ, 00110" -PUMA "AZ, 00111" -PUMA "AZ, 00112" -PUMA "AZ, 00113" -PUMA "AZ, 00114" -PUMA "AZ, 00115" -PUMA "AZ, 00116" -PUMA "AZ, 00117" -PUMA "AZ, 00118" -PUMA "AZ, 00119" -PUMA "AZ, 00120" -PUMA "AZ, 00121" -PUMA "AZ, 00122" -PUMA "AZ, 00123" -PUMA "AZ, 00124" -PUMA "AZ, 00125" -PUMA "AZ, 00126" -PUMA "AZ, 00127" -PUMA "AZ, 00128" -PUMA "AZ, 00129" -PUMA "AZ, 00130" -PUMA "AZ, 00131" -PUMA "AZ, 00132" -PUMA "AZ, 00133" -PUMA "AZ, 00134" -PUMA "AZ, 00201" -PUMA "AZ, 00202" -PUMA "AZ, 00203" -PUMA "AZ, 00204" -PUMA "AZ, 00205" -PUMA "AZ, 00206" -PUMA "AZ, 00207" -PUMA "AZ, 00208" -PUMA "AZ, 00209" -PUMA "AZ, 00300" -PUMA "AZ, 00400" -PUMA "AZ, 00500" -PUMA "AZ, 00600" -PUMA "AZ, 00700" -PUMA "AZ, 00800" -PUMA "AZ, 00803" -PUMA "AZ, 00805" -PUMA "AZ, 00807" -PUMA "AZ, 00900" -PUMA "CA, 00101" -PUMA "CA, 00102" -PUMA "CA, 00103" -PUMA "CA, 00104" -PUMA "CA, 00105" -PUMA "CA, 00106" -PUMA "CA, 00107" -PUMA "CA, 00108" -PUMA "CA, 00109" -PUMA "CA, 00110" -PUMA "CA, 00300" -PUMA "CA, 00701" -PUMA "CA, 00702" -PUMA "CA, 01100" -PUMA "CA, 01301" -PUMA "CA, 01302" -PUMA "CA, 01303" -PUMA "CA, 01304" -PUMA "CA, 01305" -PUMA "CA, 01306" -PUMA "CA, 01307" -PUMA "CA, 01308" -PUMA "CA, 01309" -PUMA "CA, 01500" -PUMA "CA, 01700" -PUMA "CA, 01901" -PUMA "CA, 01902" -PUMA "CA, 01903" -PUMA "CA, 01904" -PUMA "CA, 01905" -PUMA "CA, 01906" -PUMA "CA, 01907" -PUMA "CA, 02300" -PUMA "CA, 02500" -PUMA "CA, 02901" -PUMA "CA, 02902" -PUMA "CA, 02903" -PUMA "CA, 02904" -PUMA "CA, 02905" -PUMA "CA, 03100" -PUMA "CA, 03300" -PUMA "CA, 03701" -PUMA "CA, 03702" -PUMA "CA, 03703" -PUMA "CA, 03704" -PUMA "CA, 03705" -PUMA "CA, 03706" -PUMA "CA, 03707" -PUMA "CA, 03708" -PUMA "CA, 03709" -PUMA "CA, 03710" -PUMA "CA, 03711" -PUMA "CA, 03712" -PUMA "CA, 03713" -PUMA "CA, 03714" -PUMA "CA, 03715" -PUMA "CA, 03716" -PUMA "CA, 03717" -PUMA "CA, 03718" -PUMA "CA, 03719" -PUMA "CA, 03720" -PUMA "CA, 03721" -PUMA "CA, 03722" -PUMA "CA, 03723" -PUMA "CA, 03724" -PUMA "CA, 03725" -PUMA "CA, 03726" -PUMA "CA, 03727" -PUMA "CA, 03728" -PUMA "CA, 03729" -PUMA "CA, 03730" -PUMA "CA, 03731" -PUMA "CA, 03732" -PUMA "CA, 03733" -PUMA "CA, 03734" -PUMA "CA, 03735" -PUMA "CA, 03736" -PUMA "CA, 03737" -PUMA "CA, 03738" -PUMA "CA, 03739" -PUMA "CA, 03740" -PUMA "CA, 03741" -PUMA "CA, 03742" -PUMA "CA, 03743" -PUMA "CA, 03744" -PUMA "CA, 03745" -PUMA "CA, 03746" -PUMA "CA, 03747" -PUMA "CA, 03748" -PUMA "CA, 03749" -PUMA "CA, 03750" -PUMA "CA, 03751" -PUMA "CA, 03752" -PUMA "CA, 03753" -PUMA "CA, 03754" -PUMA "CA, 03755" -PUMA "CA, 03756" -PUMA "CA, 03757" -PUMA "CA, 03758" -PUMA "CA, 03759" -PUMA "CA, 03760" -PUMA "CA, 03761" -PUMA "CA, 03762" -PUMA "CA, 03763" -PUMA "CA, 03764" -PUMA "CA, 03765" -PUMA "CA, 03766" -PUMA "CA, 03767" -PUMA "CA, 03768" -PUMA "CA, 03769" -PUMA "CA, 03900" -PUMA "CA, 04101" -PUMA "CA, 04102" -PUMA "CA, 04701" -PUMA "CA, 04702" -PUMA "CA, 05301" -PUMA "CA, 05302" -PUMA "CA, 05303" -PUMA "CA, 05500" -PUMA "CA, 05700" -PUMA "CA, 05901" -PUMA "CA, 05902" -PUMA "CA, 05903" -PUMA "CA, 05904" -PUMA "CA, 05905" -PUMA "CA, 05906" -PUMA "CA, 05907" -PUMA "CA, 05908" -PUMA "CA, 05909" -PUMA "CA, 05910" -PUMA "CA, 05911" -PUMA "CA, 05912" -PUMA "CA, 05913" -PUMA "CA, 05914" -PUMA "CA, 05915" -PUMA "CA, 05916" -PUMA "CA, 05917" -PUMA "CA, 05918" -PUMA "CA, 06101" -PUMA "CA, 06102" -PUMA "CA, 06103" -PUMA "CA, 06501" -PUMA "CA, 06502" -PUMA "CA, 06503" -PUMA "CA, 06504" -PUMA "CA, 06505" -PUMA "CA, 06506" -PUMA "CA, 06507" -PUMA "CA, 06508" -PUMA "CA, 06509" -PUMA "CA, 06510" -PUMA "CA, 06511" -PUMA "CA, 06512" -PUMA "CA, 06513" -PUMA "CA, 06514" -PUMA "CA, 06515" -PUMA "CA, 06701" -PUMA "CA, 06702" -PUMA "CA, 06703" -PUMA "CA, 06704" -PUMA "CA, 06705" -PUMA "CA, 06706" -PUMA "CA, 06707" -PUMA "CA, 06708" -PUMA "CA, 06709" -PUMA "CA, 06710" -PUMA "CA, 06711" -PUMA "CA, 06712" -PUMA "CA, 07101" -PUMA "CA, 07102" -PUMA "CA, 07103" -PUMA "CA, 07104" -PUMA "CA, 07105" -PUMA "CA, 07106" -PUMA "CA, 07107" -PUMA "CA, 07108" -PUMA "CA, 07109" -PUMA "CA, 07110" -PUMA "CA, 07111" -PUMA "CA, 07112" -PUMA "CA, 07113" -PUMA "CA, 07114" -PUMA "CA, 07115" -PUMA "CA, 07301" -PUMA "CA, 07302" -PUMA "CA, 07303" -PUMA "CA, 07304" -PUMA "CA, 07305" -PUMA "CA, 07306" -PUMA "CA, 07307" -PUMA "CA, 07308" -PUMA "CA, 07309" -PUMA "CA, 07310" -PUMA "CA, 07311" -PUMA "CA, 07312" -PUMA "CA, 07313" -PUMA "CA, 07314" -PUMA "CA, 07315" -PUMA "CA, 07316" -PUMA "CA, 07317" -PUMA "CA, 07318" -PUMA "CA, 07319" -PUMA "CA, 07320" -PUMA "CA, 07321" -PUMA "CA, 07322" -PUMA "CA, 07501" -PUMA "CA, 07502" -PUMA "CA, 07503" -PUMA "CA, 07504" -PUMA "CA, 07505" -PUMA "CA, 07506" -PUMA "CA, 07507" -PUMA "CA, 07701" -PUMA "CA, 07702" -PUMA "CA, 07703" -PUMA "CA, 07704" -PUMA "CA, 07901" -PUMA "CA, 07902" -PUMA "CA, 08101" -PUMA "CA, 08102" -PUMA "CA, 08103" -PUMA "CA, 08104" -PUMA "CA, 08105" -PUMA "CA, 08106" -PUMA "CA, 08301" -PUMA "CA, 08302" -PUMA "CA, 08303" -PUMA "CA, 08501" -PUMA "CA, 08502" -PUMA "CA, 08503" -PUMA "CA, 08504" -PUMA "CA, 08505" -PUMA "CA, 08506" -PUMA "CA, 08507" -PUMA "CA, 08508" -PUMA "CA, 08509" -PUMA "CA, 08510" -PUMA "CA, 08511" -PUMA "CA, 08512" -PUMA "CA, 08513" -PUMA "CA, 08514" -PUMA "CA, 08701" -PUMA "CA, 08702" -PUMA "CA, 08900" -PUMA "CA, 09501" -PUMA "CA, 09502" -PUMA "CA, 09503" -PUMA "CA, 09701" -PUMA "CA, 09702" -PUMA "CA, 09703" -PUMA "CA, 09901" -PUMA "CA, 09902" -PUMA "CA, 09903" -PUMA "CA, 09904" -PUMA "CA, 10100" -PUMA "CA, 10701" -PUMA "CA, 10702" -PUMA "CA, 10703" -PUMA "CA, 11101" -PUMA "CA, 11102" -PUMA "CA, 11103" -PUMA "CA, 11104" -PUMA "CA, 11105" -PUMA "CA, 11106" -PUMA "CA, 11300" -PUMA "CO, 00100" -PUMA "CO, 00102" -PUMA "CO, 00103" -PUMA "CO, 00200" -PUMA "CO, 00300" -PUMA "CO, 00400" -PUMA "CO, 00600" -PUMA "CO, 00700" -PUMA "CO, 00800" -PUMA "CO, 00801" -PUMA "CO, 00802" -PUMA "CO, 00803" -PUMA "CO, 00804" -PUMA "CO, 00805" -PUMA "CO, 00806" -PUMA "CO, 00807" -PUMA "CO, 00808" -PUMA "CO, 00809" -PUMA "CO, 00810" -PUMA "CO, 00811" -PUMA "CO, 00812" -PUMA "CO, 00813" -PUMA "CO, 00814" -PUMA "CO, 00815" -PUMA "CO, 00816" -PUMA "CO, 00817" -PUMA "CO, 00818" -PUMA "CO, 00819" -PUMA "CO, 00820" -PUMA "CO, 00821" -PUMA "CO, 00822" -PUMA "CO, 00823" -PUMA "CO, 00824" -PUMA "CO, 00900" -PUMA "CO, 01001" -PUMA "CO, 01002" -PUMA "CO, 04101" -PUMA "CO, 04102" -PUMA "CO, 04103" -PUMA "CO, 04104" -PUMA "CO, 04105" -PUMA "CO, 04106" -PUMA "CT, 00100" -PUMA "CT, 00101" -PUMA "CT, 00102" -PUMA "CT, 00103" -PUMA "CT, 00104" -PUMA "CT, 00105" -PUMA "CT, 00300" -PUMA "CT, 00301" -PUMA "CT, 00302" -PUMA "CT, 00303" -PUMA "CT, 00304" -PUMA "CT, 00305" -PUMA "CT, 00306" -PUMA "CT, 00500" -PUMA "CT, 00700" -PUMA "CT, 00900" -PUMA "CT, 00901" -PUMA "CT, 00902" -PUMA "CT, 00903" -PUMA "CT, 00904" -PUMA "CT, 00905" -PUMA "CT, 00906" -PUMA "CT, 01100" -PUMA "CT, 01101" -PUMA "CT, 01300" -PUMA "CT, 01500" -PUMA "DC, 00101" -PUMA "DC, 00102" -PUMA "DC, 00103" -PUMA "DC, 00104" -PUMA "DC, 00105" -PUMA "DE, 00101" -PUMA "DE, 00102" -PUMA "DE, 00103" -PUMA "DE, 00104" -PUMA "DE, 00200" -PUMA "DE, 00300" -PUMA "FL, 00101" -PUMA "FL, 00102" -PUMA "FL, 00500" -PUMA "FL, 00901" -PUMA "FL, 00902" -PUMA "FL, 00903" -PUMA "FL, 00904" -PUMA "FL, 01101" -PUMA "FL, 01102" -PUMA "FL, 01103" -PUMA "FL, 01104" -PUMA "FL, 01105" -PUMA "FL, 01106" -PUMA "FL, 01107" -PUMA "FL, 01108" -PUMA "FL, 01109" -PUMA "FL, 01110" -PUMA "FL, 01111" -PUMA "FL, 01112" -PUMA "FL, 01113" -PUMA "FL, 01114" -PUMA "FL, 01500" -PUMA "FL, 01701" -PUMA "FL, 01900" -PUMA "FL, 02101" -PUMA "FL, 02102" -PUMA "FL, 02103" -PUMA "FL, 02300" -PUMA "FL, 02700" -PUMA "FL, 03101" -PUMA "FL, 03102" -PUMA "FL, 03103" -PUMA "FL, 03104" -PUMA "FL, 03105" -PUMA "FL, 03106" -PUMA "FL, 03107" -PUMA "FL, 03301" -PUMA "FL, 03302" -PUMA "FL, 03500" -PUMA "FL, 05301" -PUMA "FL, 05701" -PUMA "FL, 05702" -PUMA "FL, 05703" -PUMA "FL, 05704" -PUMA "FL, 05705" -PUMA "FL, 05706" -PUMA "FL, 05707" -PUMA "FL, 05708" -PUMA "FL, 06100" -PUMA "FL, 06300" -PUMA "FL, 06901" -PUMA "FL, 06902" -PUMA "FL, 06903" -PUMA "FL, 07101" -PUMA "FL, 07102" -PUMA "FL, 07103" -PUMA "FL, 07104" -PUMA "FL, 07105" -PUMA "FL, 07300" -PUMA "FL, 07301" -PUMA "FL, 08101" -PUMA "FL, 08102" -PUMA "FL, 08103" -PUMA "FL, 08301" -PUMA "FL, 08302" -PUMA "FL, 08303" -PUMA "FL, 08500" -PUMA "FL, 08601" -PUMA "FL, 08602" -PUMA "FL, 08603" -PUMA "FL, 08604" -PUMA "FL, 08605" -PUMA "FL, 08606" -PUMA "FL, 08607" -PUMA "FL, 08608" -PUMA "FL, 08609" -PUMA "FL, 08610" -PUMA "FL, 08611" -PUMA "FL, 08612" -PUMA "FL, 08613" -PUMA "FL, 08614" -PUMA "FL, 08615" -PUMA "FL, 08616" -PUMA "FL, 08617" -PUMA "FL, 08618" -PUMA "FL, 08619" -PUMA "FL, 08620" -PUMA "FL, 08621" -PUMA "FL, 08622" -PUMA "FL, 08623" -PUMA "FL, 08624" -PUMA "FL, 08700" -PUMA "FL, 08900" -PUMA "FL, 09100" -PUMA "FL, 09300" -PUMA "FL, 09501" -PUMA "FL, 09502" -PUMA "FL, 09503" -PUMA "FL, 09504" -PUMA "FL, 09505" -PUMA "FL, 09506" -PUMA "FL, 09507" -PUMA "FL, 09508" -PUMA "FL, 09509" -PUMA "FL, 09510" -PUMA "FL, 09701" -PUMA "FL, 09702" -PUMA "FL, 09901" -PUMA "FL, 09902" -PUMA "FL, 09903" -PUMA "FL, 09904" -PUMA "FL, 09905" -PUMA "FL, 09906" -PUMA "FL, 09907" -PUMA "FL, 09908" -PUMA "FL, 09909" -PUMA "FL, 09910" -PUMA "FL, 09911" -PUMA "FL, 10101" -PUMA "FL, 10102" -PUMA "FL, 10103" -PUMA "FL, 10104" -PUMA "FL, 10301" -PUMA "FL, 10302" -PUMA "FL, 10303" -PUMA "FL, 10304" -PUMA "FL, 10305" -PUMA "FL, 10306" -PUMA "FL, 10307" -PUMA "FL, 10308" -PUMA "FL, 10501" -PUMA "FL, 10502" -PUMA "FL, 10503" -PUMA "FL, 10504" -PUMA "FL, 10700" -PUMA "FL, 10900" -PUMA "FL, 11101" -PUMA "FL, 11102" -PUMA "FL, 11300" -PUMA "FL, 11501" -PUMA "FL, 11502" -PUMA "FL, 11503" -PUMA "FL, 11701" -PUMA "FL, 11702" -PUMA "FL, 11703" -PUMA "FL, 11704" -PUMA "FL, 12100" -PUMA "FL, 12701" -PUMA "FL, 12702" -PUMA "FL, 12703" -PUMA "FL, 12704" -PUMA "GA, 00100" -PUMA "GA, 00200" -PUMA "GA, 00300" -PUMA "GA, 00401" -PUMA "GA, 00402" -PUMA "GA, 00500" -PUMA "GA, 00600" -PUMA "GA, 00700" -PUMA "GA, 00800" -PUMA "GA, 00900" -PUMA "GA, 01001" -PUMA "GA, 01002" -PUMA "GA, 01003" -PUMA "GA, 01004" -PUMA "GA, 01005" -PUMA "GA, 01006" -PUMA "GA, 01007" -PUMA "GA, 01008" -PUMA "GA, 01100" -PUMA "GA, 01200" -PUMA "GA, 01300" -PUMA "GA, 01400" -PUMA "GA, 01500" -PUMA "GA, 01600" -PUMA "GA, 01700" -PUMA "GA, 01800" -PUMA "GA, 01900" -PUMA "GA, 02001" -PUMA "GA, 02002" -PUMA "GA, 02003" -PUMA "GA, 02004" -PUMA "GA, 02100" -PUMA "GA, 02200" -PUMA "GA, 02300" -PUMA "GA, 02400" -PUMA "GA, 02500" -PUMA "GA, 02600" -PUMA "GA, 02700" -PUMA "GA, 02800" -PUMA "GA, 02900" -PUMA "GA, 03001" -PUMA "GA, 03002" -PUMA "GA, 03003" -PUMA "GA, 03004" -PUMA "GA, 03005" -PUMA "GA, 03101" -PUMA "GA, 03102" -PUMA "GA, 03200" -PUMA "GA, 03300" -PUMA "GA, 03400" -PUMA "GA, 03500" -PUMA "GA, 03600" -PUMA "GA, 03700" -PUMA "GA, 03800" -PUMA "GA, 03900" -PUMA "GA, 04000" -PUMA "GA, 04001" -PUMA "GA, 04002" -PUMA "GA, 04003" -PUMA "GA, 04004" -PUMA "GA, 04005" -PUMA "GA, 04006" -PUMA "GA, 04100" -PUMA "GA, 04200" -PUMA "GA, 04300" -PUMA "GA, 04400" -PUMA "GA, 04500" -PUMA "GA, 04600" -PUMA "GA, 05001" -PUMA "GA, 05002" -PUMA "GA, 06001" -PUMA "GA, 06002" -PUMA "HI, 00100" -PUMA "HI, 00200" -PUMA "HI, 00301" -PUMA "HI, 00302" -PUMA "HI, 00303" -PUMA "HI, 00304" -PUMA "HI, 00305" -PUMA "HI, 00306" -PUMA "HI, 00307" -PUMA "HI, 00308" -PUMA "IA, 00100" -PUMA "IA, 00200" -PUMA "IA, 00400" -PUMA "IA, 00500" -PUMA "IA, 00600" -PUMA "IA, 00700" -PUMA "IA, 00800" -PUMA "IA, 00900" -PUMA "IA, 01000" -PUMA "IA, 01100" -PUMA "IA, 01200" -PUMA "IA, 01300" -PUMA "IA, 01400" -PUMA "IA, 01500" -PUMA "IA, 01600" -PUMA "IA, 01700" -PUMA "IA, 01800" -PUMA "IA, 01900" -PUMA "IA, 02000" -PUMA "IA, 02100" -PUMA "IA, 02200" -PUMA "IA, 02300" -PUMA "ID, 00100" -PUMA "ID, 00200" -PUMA "ID, 00300" -PUMA "ID, 00400" -PUMA "ID, 00500" -PUMA "ID, 00600" -PUMA "ID, 00701" -PUMA "ID, 00702" -PUMA "ID, 00800" -PUMA "ID, 00900" -PUMA "ID, 01000" -PUMA "ID, 01100" -PUMA "ID, 01200" -PUMA "ID, 01300" -PUMA "IL, 00104" -PUMA "IL, 00105" -PUMA "IL, 00202" -PUMA "IL, 00300" -PUMA "IL, 00401" -PUMA "IL, 00501" -PUMA "IL, 00600" -PUMA "IL, 00700" -PUMA "IL, 00800" -PUMA "IL, 00900" -PUMA "IL, 01001" -PUMA "IL, 01104" -PUMA "IL, 01105" -PUMA "IL, 01204" -PUMA "IL, 01205" -PUMA "IL, 01300" -PUMA "IL, 01500" -PUMA "IL, 01602" -PUMA "IL, 01701" -PUMA "IL, 01900" -PUMA "IL, 02000" -PUMA "IL, 02100" -PUMA "IL, 02200" -PUMA "IL, 02300" -PUMA "IL, 02400" -PUMA "IL, 02501" -PUMA "IL, 02601" -PUMA "IL, 02700" -PUMA "IL, 02801" -PUMA "IL, 02901" -PUMA "IL, 03005" -PUMA "IL, 03007" -PUMA "IL, 03008" -PUMA "IL, 03009" -PUMA "IL, 03102" -PUMA "IL, 03105" -PUMA "IL, 03106" -PUMA "IL, 03107" -PUMA "IL, 03108" -PUMA "IL, 03202" -PUMA "IL, 03203" -PUMA "IL, 03204" -PUMA "IL, 03205" -PUMA "IL, 03207" -PUMA "IL, 03208" -PUMA "IL, 03209" -PUMA "IL, 03306" -PUMA "IL, 03307" -PUMA "IL, 03308" -PUMA "IL, 03309" -PUMA "IL, 03310" -PUMA "IL, 03401" -PUMA "IL, 03407" -PUMA "IL, 03408" -PUMA "IL, 03409" -PUMA "IL, 03410" -PUMA "IL, 03411" -PUMA "IL, 03412" -PUMA "IL, 03413" -PUMA "IL, 03414" -PUMA "IL, 03415" -PUMA "IL, 03416" -PUMA "IL, 03417" -PUMA "IL, 03418" -PUMA "IL, 03419" -PUMA "IL, 03420" -PUMA "IL, 03421" -PUMA "IL, 03422" -PUMA "IL, 03501" -PUMA "IL, 03502" -PUMA "IL, 03503" -PUMA "IL, 03504" -PUMA "IL, 03520" -PUMA "IL, 03521" -PUMA "IL, 03522" -PUMA "IL, 03523" -PUMA "IL, 03524" -PUMA "IL, 03525" -PUMA "IL, 03526" -PUMA "IL, 03527" -PUMA "IL, 03528" -PUMA "IL, 03529" -PUMA "IL, 03530" -PUMA "IL, 03531" -PUMA "IL, 03532" -PUMA "IL, 03601" -PUMA "IL, 03602" -PUMA "IL, 03700" -PUMA "IN, 00101" -PUMA "IN, 00102" -PUMA "IN, 00103" -PUMA "IN, 00104" -PUMA "IN, 00200" -PUMA "IN, 00300" -PUMA "IN, 00401" -PUMA "IN, 00402" -PUMA "IN, 00500" -PUMA "IN, 00600" -PUMA "IN, 00700" -PUMA "IN, 00800" -PUMA "IN, 00900" -PUMA "IN, 01001" -PUMA "IN, 01002" -PUMA "IN, 01003" -PUMA "IN, 01100" -PUMA "IN, 01200" -PUMA "IN, 01300" -PUMA "IN, 01400" -PUMA "IN, 01500" -PUMA "IN, 01600" -PUMA "IN, 01700" -PUMA "IN, 01801" -PUMA "IN, 01802" -PUMA "IN, 01803" -PUMA "IN, 01900" -PUMA "IN, 02000" -PUMA "IN, 02100" -PUMA "IN, 02200" -PUMA "IN, 02301" -PUMA "IN, 02302" -PUMA "IN, 02303" -PUMA "IN, 02304" -PUMA "IN, 02305" -PUMA "IN, 02306" -PUMA "IN, 02307" -PUMA "IN, 02400" -PUMA "IN, 02500" -PUMA "IN, 02600" -PUMA "IN, 02700" -PUMA "IN, 02800" -PUMA "IN, 02900" -PUMA "IN, 03000" -PUMA "IN, 03100" -PUMA "IN, 03200" -PUMA "IN, 03300" -PUMA "IN, 03400" -PUMA "IN, 03500" -PUMA "IN, 03600" -PUMA "KS, 00100" -PUMA "KS, 00200" -PUMA "KS, 00300" -PUMA "KS, 00400" -PUMA "KS, 00500" -PUMA "KS, 00601" -PUMA "KS, 00602" -PUMA "KS, 00603" -PUMA "KS, 00604" -PUMA "KS, 00700" -PUMA "KS, 00801" -PUMA "KS, 00802" -PUMA "KS, 00900" -PUMA "KS, 01000" -PUMA "KS, 01100" -PUMA "KS, 01200" -PUMA "KS, 01301" -PUMA "KS, 01302" -PUMA "KS, 01303" -PUMA "KS, 01304" -PUMA "KS, 01400" -PUMA "KS, 01500" -PUMA "KY, 00100" -PUMA "KY, 00200" -PUMA "KY, 00300" -PUMA "KY, 00400" -PUMA "KY, 00500" -PUMA "KY, 00600" -PUMA "KY, 00700" -PUMA "KY, 00800" -PUMA "KY, 00900" -PUMA "KY, 01000" -PUMA "KY, 01100" -PUMA "KY, 01200" -PUMA "KY, 01300" -PUMA "KY, 01400" -PUMA "KY, 01500" -PUMA "KY, 01600" -PUMA "KY, 01701" -PUMA "KY, 01702" -PUMA "KY, 01703" -PUMA "KY, 01704" -PUMA "KY, 01705" -PUMA "KY, 01706" -PUMA "KY, 01800" -PUMA "KY, 01901" -PUMA "KY, 01902" -PUMA "KY, 02000" -PUMA "KY, 02100" -PUMA "KY, 02200" -PUMA "KY, 02300" -PUMA "KY, 02400" -PUMA "KY, 02500" -PUMA "KY, 02600" -PUMA "KY, 02700" -PUMA "KY, 02800" -PUMA "LA, 00100" -PUMA "LA, 00101" -PUMA "LA, 00200" -PUMA "LA, 00300" -PUMA "LA, 00400" -PUMA "LA, 00500" -PUMA "LA, 00600" -PUMA "LA, 00700" -PUMA "LA, 00800" -PUMA "LA, 00900" -PUMA "LA, 01000" -PUMA "LA, 01100" -PUMA "LA, 01200" -PUMA "LA, 01201" -PUMA "LA, 01300" -PUMA "LA, 01400" -PUMA "LA, 01500" -PUMA "LA, 01501" -PUMA "LA, 01502" -PUMA "LA, 01600" -PUMA "LA, 01700" -PUMA "LA, 01800" -PUMA "LA, 01900" -PUMA "LA, 02000" -PUMA "LA, 02100" -PUMA "LA, 02200" -PUMA "LA, 02201" -PUMA "LA, 02300" -PUMA "LA, 02301" -PUMA "LA, 02302" -PUMA "LA, 02400" -PUMA "LA, 02401" -PUMA "LA, 02402" -PUMA "LA, 02500" -PUMA "MA, 00100" -PUMA "MA, 00200" -PUMA "MA, 00300" -PUMA "MA, 00301" -PUMA "MA, 00302" -PUMA "MA, 00303" -PUMA "MA, 00304" -PUMA "MA, 00400" -PUMA "MA, 00501" -PUMA "MA, 00502" -PUMA "MA, 00503" -PUMA "MA, 00504" -PUMA "MA, 00505" -PUMA "MA, 00506" -PUMA "MA, 00507" -PUMA "MA, 00508" -PUMA "MA, 00701" -PUMA "MA, 00702" -PUMA "MA, 00703" -PUMA "MA, 00704" -PUMA "MA, 01000" -PUMA "MA, 01300" -PUMA "MA, 01400" -PUMA "MA, 01600" -PUMA "MA, 01900" -PUMA "MA, 01901" -PUMA "MA, 01902" -PUMA "MA, 02400" -PUMA "MA, 02800" -PUMA "MA, 03301" -PUMA "MA, 03302" -PUMA "MA, 03303" -PUMA "MA, 03304" -PUMA "MA, 03305" -PUMA "MA, 03306" -PUMA "MA, 03400" -PUMA "MA, 03500" -PUMA "MA, 03601" -PUMA "MA, 03602" -PUMA "MA, 03603" -PUMA "MA, 03900" -PUMA "MA, 04000" -PUMA "MA, 04200" -PUMA "MA, 04301" -PUMA "MA, 04302" -PUMA "MA, 04303" -PUMA "MA, 04500" -PUMA "MA, 04700" -PUMA "MA, 04800" -PUMA "MA, 04901" -PUMA "MA, 04902" -PUMA "MA, 04903" -PUMA "MD, 00100" -PUMA "MD, 00200" -PUMA "MD, 00301" -PUMA "MD, 00302" -PUMA "MD, 00400" -PUMA "MD, 00501" -PUMA "MD, 00502" -PUMA "MD, 00503" -PUMA "MD, 00504" -PUMA "MD, 00505" -PUMA "MD, 00506" -PUMA "MD, 00507" -PUMA "MD, 00601" -PUMA "MD, 00602" -PUMA "MD, 00700" -PUMA "MD, 00801" -PUMA "MD, 00802" -PUMA "MD, 00803" -PUMA "MD, 00804" -PUMA "MD, 00805" -PUMA "MD, 00901" -PUMA "MD, 00902" -PUMA "MD, 01001" -PUMA "MD, 01002" -PUMA "MD, 01003" -PUMA "MD, 01004" -PUMA "MD, 01005" -PUMA "MD, 01006" -PUMA "MD, 01007" -PUMA "MD, 01101" -PUMA "MD, 01102" -PUMA "MD, 01103" -PUMA "MD, 01104" -PUMA "MD, 01105" -PUMA "MD, 01106" -PUMA "MD, 01107" -PUMA "MD, 01201" -PUMA "MD, 01202" -PUMA "MD, 01203" -PUMA "MD, 01204" -PUMA "MD, 01300" -PUMA "MD, 01400" -PUMA "MD, 01500" -PUMA "MD, 01600" -PUMA "ME, 00100" -PUMA "ME, 00200" -PUMA "ME, 00300" -PUMA "ME, 00400" -PUMA "ME, 00500" -PUMA "ME, 00600" -PUMA "ME, 00700" -PUMA "ME, 00800" -PUMA "ME, 00900" -PUMA "ME, 01000" -PUMA "MI, 00100" -PUMA "MI, 00200" -PUMA "MI, 00300" -PUMA "MI, 00400" -PUMA "MI, 00500" -PUMA "MI, 00600" -PUMA "MI, 00700" -PUMA "MI, 00801" -PUMA "MI, 00802" -PUMA "MI, 00900" -PUMA "MI, 01001" -PUMA "MI, 01002" -PUMA "MI, 01003" -PUMA "MI, 01004" -PUMA "MI, 01100" -PUMA "MI, 01200" -PUMA "MI, 01300" -PUMA "MI, 01400" -PUMA "MI, 01500" -PUMA "MI, 01600" -PUMA "MI, 01701" -PUMA "MI, 01702" -PUMA "MI, 01703" -PUMA "MI, 01704" -PUMA "MI, 01801" -PUMA "MI, 01802" -PUMA "MI, 01900" -PUMA "MI, 02000" -PUMA "MI, 02101" -PUMA "MI, 02102" -PUMA "MI, 02200" -PUMA "MI, 02300" -PUMA "MI, 02400" -PUMA "MI, 02500" -PUMA "MI, 02600" -PUMA "MI, 02701" -PUMA "MI, 02702" -PUMA "MI, 02703" -PUMA "MI, 02800" -PUMA "MI, 02901" -PUMA "MI, 02902" -PUMA "MI, 02903" -PUMA "MI, 02904" -PUMA "MI, 02905" -PUMA "MI, 02906" -PUMA "MI, 02907" -PUMA "MI, 02908" -PUMA "MI, 03001" -PUMA "MI, 03002" -PUMA "MI, 03003" -PUMA "MI, 03004" -PUMA "MI, 03005" -PUMA "MI, 03006" -PUMA "MI, 03100" -PUMA "MI, 03201" -PUMA "MI, 03202" -PUMA "MI, 03203" -PUMA "MI, 03204" -PUMA "MI, 03205" -PUMA "MI, 03206" -PUMA "MI, 03207" -PUMA "MI, 03208" -PUMA "MI, 03209" -PUMA "MI, 03210" -PUMA "MI, 03211" -PUMA "MI, 03212" -PUMA "MI, 03213" -PUMA "MI, 03300" -PUMA "MN, 00100" -PUMA "MN, 00200" -PUMA "MN, 00300" -PUMA "MN, 00400" -PUMA "MN, 00500" -PUMA "MN, 00600" -PUMA "MN, 00700" -PUMA "MN, 00800" -PUMA "MN, 00900" -PUMA "MN, 01000" -PUMA "MN, 01101" -PUMA "MN, 01102" -PUMA "MN, 01103" -PUMA "MN, 01201" -PUMA "MN, 01202" -PUMA "MN, 01301" -PUMA "MN, 01302" -PUMA "MN, 01303" -PUMA "MN, 01304" -PUMA "MN, 01401" -PUMA "MN, 01402" -PUMA "MN, 01403" -PUMA "MN, 01404" -PUMA "MN, 01405" -PUMA "MN, 01406" -PUMA "MN, 01407" -PUMA "MN, 01408" -PUMA "MN, 01409" -PUMA "MN, 01410" -PUMA "MN, 01501" -PUMA "MN, 01502" -PUMA "MN, 01503" -PUMA "MN, 01600" -PUMA "MN, 01700" -PUMA "MN, 01800" -PUMA "MN, 01900" -PUMA "MN, 02000" -PUMA "MN, 02100" -PUMA "MN, 02200" -PUMA "MN, 02300" -PUMA "MN, 02400" -PUMA "MN, 02500" -PUMA "MN, 02600" -PUMA "MO, 00100" -PUMA "MO, 00200" -PUMA "MO, 00300" -PUMA "MO, 00400" -PUMA "MO, 00500" -PUMA "MO, 00600" -PUMA "MO, 00700" -PUMA "MO, 00800" -PUMA "MO, 00901" -PUMA "MO, 00902" -PUMA "MO, 00903" -PUMA "MO, 01001" -PUMA "MO, 01002" -PUMA "MO, 01003" -PUMA "MO, 01004" -PUMA "MO, 01005" -PUMA "MO, 01100" -PUMA "MO, 01200" -PUMA "MO, 01300" -PUMA "MO, 01400" -PUMA "MO, 01500" -PUMA "MO, 01600" -PUMA "MO, 01701" -PUMA "MO, 01702" -PUMA "MO, 01703" -PUMA "MO, 01801" -PUMA "MO, 01802" -PUMA "MO, 01803" -PUMA "MO, 01804" -PUMA "MO, 01805" -PUMA "MO, 01806" -PUMA "MO, 01807" -PUMA "MO, 01808" -PUMA "MO, 01901" -PUMA "MO, 01902" -PUMA "MO, 02001" -PUMA "MO, 02002" -PUMA "MO, 02100" -PUMA "MO, 02200" -PUMA "MO, 02300" -PUMA "MO, 02400" -PUMA "MO, 02500" -PUMA "MO, 02601" -PUMA "MO, 02602" -PUMA "MO, 02603" -PUMA "MO, 02700" -PUMA "MO, 02800" -PUMA "MS, 00100" -PUMA "MS, 00200" -PUMA "MS, 00300" -PUMA "MS, 00400" -PUMA "MS, 00500" -PUMA "MS, 00600" -PUMA "MS, 00700" -PUMA "MS, 00800" -PUMA "MS, 00900" -PUMA "MS, 01000" -PUMA "MS, 01100" -PUMA "MS, 01200" -PUMA "MS, 01300" -PUMA "MS, 01400" -PUMA "MS, 01500" -PUMA "MS, 01600" -PUMA "MS, 01700" -PUMA "MS, 01800" -PUMA "MS, 01900" -PUMA "MS, 02000" -PUMA "MS, 02100" -PUMA "MT, 00100" -PUMA "MT, 00200" -PUMA "MT, 00300" -PUMA "MT, 00400" -PUMA "MT, 00500" -PUMA "MT, 00600" -PUMA "MT, 00700" -PUMA "NC, 00100" -PUMA "NC, 00200" -PUMA "NC, 00300" -PUMA "NC, 00400" -PUMA "NC, 00500" -PUMA "NC, 00600" -PUMA "NC, 00700" -PUMA "NC, 00800" -PUMA "NC, 00900" -PUMA "NC, 01000" -PUMA "NC, 01100" -PUMA "NC, 01201" -PUMA "NC, 01202" -PUMA "NC, 01203" -PUMA "NC, 01204" -PUMA "NC, 01205" -PUMA "NC, 01206" -PUMA "NC, 01207" -PUMA "NC, 01208" -PUMA "NC, 01301" -PUMA "NC, 01302" -PUMA "NC, 01400" -PUMA "NC, 01500" -PUMA "NC, 01600" -PUMA "NC, 01701" -PUMA "NC, 01702" -PUMA "NC, 01703" -PUMA "NC, 01704" -PUMA "NC, 01801" -PUMA "NC, 01802" -PUMA "NC, 01803" -PUMA "NC, 01900" -PUMA "NC, 02000" -PUMA "NC, 02100" -PUMA "NC, 02201" -PUMA "NC, 02202" -PUMA "NC, 02300" -PUMA "NC, 02400" -PUMA "NC, 02500" -PUMA "NC, 02600" -PUMA "NC, 02700" -PUMA "NC, 02800" -PUMA "NC, 02900" -PUMA "NC, 03001" -PUMA "NC, 03002" -PUMA "NC, 03101" -PUMA "NC, 03102" -PUMA "NC, 03103" -PUMA "NC, 03104" -PUMA "NC, 03105" -PUMA "NC, 03106" -PUMA "NC, 03107" -PUMA "NC, 03108" -PUMA "NC, 03200" -PUMA "NC, 03300" -PUMA "NC, 03400" -PUMA "NC, 03500" -PUMA "NC, 03600" -PUMA "NC, 03700" -PUMA "NC, 03800" -PUMA "NC, 03900" -PUMA "NC, 04000" -PUMA "NC, 04100" -PUMA "NC, 04200" -PUMA "NC, 04300" -PUMA "NC, 04400" -PUMA "NC, 04500" -PUMA "NC, 04600" -PUMA "NC, 04700" -PUMA "NC, 04800" -PUMA "NC, 04900" -PUMA "NC, 05001" -PUMA "NC, 05002" -PUMA "NC, 05003" -PUMA "NC, 05100" -PUMA "NC, 05200" -PUMA "NC, 05300" -PUMA "NC, 05400" -PUMA "ND, 00100" -PUMA "ND, 00200" -PUMA "ND, 00300" -PUMA "ND, 00400" -PUMA "ND, 00500" -PUMA "NE, 00100" -PUMA "NE, 00200" -PUMA "NE, 00300" -PUMA "NE, 00400" -PUMA "NE, 00500" -PUMA "NE, 00600" -PUMA "NE, 00701" -PUMA "NE, 00702" -PUMA "NE, 00801" -PUMA "NE, 00802" -PUMA "NE, 00901" -PUMA "NE, 00902" -PUMA "NE, 00903" -PUMA "NE, 00904" -PUMA "NH, 00100" -PUMA "NH, 00200" -PUMA "NH, 00300" -PUMA "NH, 00400" -PUMA "NH, 00500" -PUMA "NH, 00600" -PUMA "NH, 00700" -PUMA "NH, 00800" -PUMA "NH, 00900" -PUMA "NH, 01000" -PUMA "NJ, 00101" -PUMA "NJ, 00102" -PUMA "NJ, 00301" -PUMA "NJ, 00302" -PUMA "NJ, 00303" -PUMA "NJ, 00304" -PUMA "NJ, 00305" -PUMA "NJ, 00306" -PUMA "NJ, 00307" -PUMA "NJ, 00308" -PUMA "NJ, 00400" -PUMA "NJ, 00501" -PUMA "NJ, 00502" -PUMA "NJ, 00503" -PUMA "NJ, 00601" -PUMA "NJ, 00602" -PUMA "NJ, 00701" -PUMA "NJ, 00702" -PUMA "NJ, 00703" -PUMA "NJ, 00800" -PUMA "NJ, 00901" -PUMA "NJ, 00902" -PUMA "NJ, 00903" -PUMA "NJ, 00904" -PUMA "NJ, 00905" -PUMA "NJ, 00906" -PUMA "NJ, 00907" -PUMA "NJ, 01001" -PUMA "NJ, 01002" -PUMA "NJ, 01003" -PUMA "NJ, 01101" -PUMA "NJ, 01102" -PUMA "NJ, 01103" -PUMA "NJ, 01104" -PUMA "NJ, 01105" -PUMA "NJ, 01106" -PUMA "NJ, 01201" -PUMA "NJ, 01202" -PUMA "NJ, 01203" -PUMA "NJ, 01204" -PUMA "NJ, 01205" -PUMA "NJ, 01301" -PUMA "NJ, 01302" -PUMA "NJ, 01401" -PUMA "NJ, 01402" -PUMA "NJ, 01403" -PUMA "NJ, 01404" -PUMA "NJ, 01501" -PUMA "NJ, 01502" -PUMA "NJ, 01503" -PUMA "NJ, 01504" -PUMA "NJ, 01600" -PUMA "NJ, 01700" -PUMA "NJ, 01800" -PUMA "NJ, 01901" -PUMA "NJ, 01902" -PUMA "NJ, 01903" -PUMA "NJ, 01904" -PUMA "NJ, 02001" -PUMA "NJ, 02002" -PUMA "NJ, 02003" -PUMA "NJ, 02101" -PUMA "NJ, 02102" -PUMA "NJ, 02103" -PUMA "NJ, 02104" -PUMA "NJ, 02201" -PUMA "NJ, 02202" -PUMA "NJ, 02301" -PUMA "NJ, 02302" -PUMA "NJ, 02303" -PUMA "NJ, 02400" -PUMA "NJ, 02500" -PUMA "NJ, 02600" -PUMA "NM, 00100" -PUMA "NM, 00200" -PUMA "NM, 00300" -PUMA "NM, 00400" -PUMA "NM, 00500" -PUMA "NM, 00600" -PUMA "NM, 00700" -PUMA "NM, 00801" -PUMA "NM, 00802" -PUMA "NM, 00803" -PUMA "NM, 00804" -PUMA "NM, 00805" -PUMA "NM, 00806" -PUMA "NM, 00900" -PUMA "NM, 01001" -PUMA "NM, 01002" -PUMA "NM, 01100" -PUMA "NM, 01200" -PUMA "NV, 00101" -PUMA "NV, 00102" -PUMA "NV, 00103" -PUMA "NV, 00200" -PUMA "NV, 00300" -PUMA "NV, 00401" -PUMA "NV, 00402" -PUMA "NV, 00403" -PUMA "NV, 00404" -PUMA "NV, 00405" -PUMA "NV, 00406" -PUMA "NV, 00407" -PUMA "NV, 00408" -PUMA "NV, 00409" -PUMA "NV, 00410" -PUMA "NV, 00411" -PUMA "NV, 00412" -PUMA "NV, 00413" -PUMA "NY, 00100" -PUMA "NY, 00200" -PUMA "NY, 00300" -PUMA "NY, 00401" -PUMA "NY, 00402" -PUMA "NY, 00403" -PUMA "NY, 00500" -PUMA "NY, 00600" -PUMA "NY, 00701" -PUMA "NY, 00702" -PUMA "NY, 00703" -PUMA "NY, 00704" -PUMA "NY, 00800" -PUMA "NY, 00901" -PUMA "NY, 00902" -PUMA "NY, 00903" -PUMA "NY, 00904" -PUMA "NY, 00905" -PUMA "NY, 00906" -PUMA "NY, 01000" -PUMA "NY, 01101" -PUMA "NY, 01102" -PUMA "NY, 01201" -PUMA "NY, 01202" -PUMA "NY, 01203" -PUMA "NY, 01204" -PUMA "NY, 01205" -PUMA "NY, 01206" -PUMA "NY, 01207" -PUMA "NY, 01300" -PUMA "NY, 01400" -PUMA "NY, 01500" -PUMA "NY, 01600" -PUMA "NY, 01700" -PUMA "NY, 01801" -PUMA "NY, 01802" -PUMA "NY, 01900" -PUMA "NY, 02001" -PUMA "NY, 02002" -PUMA "NY, 02100" -PUMA "NY, 02201" -PUMA "NY, 02202" -PUMA "NY, 02203" -PUMA "NY, 02300" -PUMA "NY, 02401" -PUMA "NY, 02402" -PUMA "NY, 02500" -PUMA "NY, 02600" -PUMA "NY, 02701" -PUMA "NY, 02702" -PUMA "NY, 02801" -PUMA "NY, 02802" -PUMA "NY, 02901" -PUMA "NY, 02902" -PUMA "NY, 02903" -PUMA "NY, 03001" -PUMA "NY, 03002" -PUMA "NY, 03003" -PUMA "NY, 03101" -PUMA "NY, 03102" -PUMA "NY, 03103" -PUMA "NY, 03104" -PUMA "NY, 03105" -PUMA "NY, 03106" -PUMA "NY, 03107" -PUMA "NY, 03201" -PUMA "NY, 03202" -PUMA "NY, 03203" -PUMA "NY, 03204" -PUMA "NY, 03205" -PUMA "NY, 03206" -PUMA "NY, 03207" -PUMA "NY, 03208" -PUMA "NY, 03209" -PUMA "NY, 03210" -PUMA "NY, 03211" -PUMA "NY, 03212" -PUMA "NY, 03301" -PUMA "NY, 03302" -PUMA "NY, 03303" -PUMA "NY, 03304" -PUMA "NY, 03305" -PUMA "NY, 03306" -PUMA "NY, 03307" -PUMA "NY, 03308" -PUMA "NY, 03309" -PUMA "NY, 03310" -PUMA "NY, 03311" -PUMA "NY, 03312" -PUMA "NY, 03313" -PUMA "NY, 03701" -PUMA "NY, 03702" -PUMA "NY, 03703" -PUMA "NY, 03704" -PUMA "NY, 03705" -PUMA "NY, 03706" -PUMA "NY, 03707" -PUMA "NY, 03708" -PUMA "NY, 03709" -PUMA "NY, 03710" -PUMA "NY, 03801" -PUMA "NY, 03802" -PUMA "NY, 03803" -PUMA "NY, 03804" -PUMA "NY, 03805" -PUMA "NY, 03806" -PUMA "NY, 03807" -PUMA "NY, 03808" -PUMA "NY, 03809" -PUMA "NY, 03810" -PUMA "NY, 03901" -PUMA "NY, 03902" -PUMA "NY, 03903" -PUMA "NY, 04001" -PUMA "NY, 04002" -PUMA "NY, 04003" -PUMA "NY, 04004" -PUMA "NY, 04005" -PUMA "NY, 04006" -PUMA "NY, 04007" -PUMA "NY, 04008" -PUMA "NY, 04009" -PUMA "NY, 04010" -PUMA "NY, 04011" -PUMA "NY, 04012" -PUMA "NY, 04013" -PUMA "NY, 04014" -PUMA "NY, 04015" -PUMA "NY, 04016" -PUMA "NY, 04017" -PUMA "NY, 04018" -PUMA "NY, 04101" -PUMA "NY, 04102" -PUMA "NY, 04103" -PUMA "NY, 04104" -PUMA "NY, 04105" -PUMA "NY, 04106" -PUMA "NY, 04107" -PUMA "NY, 04108" -PUMA "NY, 04109" -PUMA "NY, 04110" -PUMA "NY, 04111" -PUMA "NY, 04112" -PUMA "NY, 04113" -PUMA "NY, 04114" -PUMA "OH, 00100" -PUMA "OH, 00200" -PUMA "OH, 00300" -PUMA "OH, 00400" -PUMA "OH, 00500" -PUMA "OH, 00600" -PUMA "OH, 00700" -PUMA "OH, 00801" -PUMA "OH, 00802" -PUMA "OH, 00901" -PUMA "OH, 00902" -PUMA "OH, 00903" -PUMA "OH, 00904" -PUMA "OH, 00905" -PUMA "OH, 00906" -PUMA "OH, 00907" -PUMA "OH, 00908" -PUMA "OH, 00909" -PUMA "OH, 00910" -PUMA "OH, 01000" -PUMA "OH, 01100" -PUMA "OH, 01200" -PUMA "OH, 01300" -PUMA "OH, 01400" -PUMA "OH, 01500" -PUMA "OH, 01600" -PUMA "OH, 01700" -PUMA "OH, 01801" -PUMA "OH, 01802" -PUMA "OH, 01803" -PUMA "OH, 01804" -PUMA "OH, 01805" -PUMA "OH, 01900" -PUMA "OH, 02000" -PUMA "OH, 02100" -PUMA "OH, 02200" -PUMA "OH, 02300" -PUMA "OH, 02400" -PUMA "OH, 02500" -PUMA "OH, 02600" -PUMA "OH, 02700" -PUMA "OH, 02800" -PUMA "OH, 02900" -PUMA "OH, 03000" -PUMA "OH, 03100" -PUMA "OH, 03200" -PUMA "OH, 03300" -PUMA "OH, 03400" -PUMA "OH, 03500" -PUMA "OH, 03600" -PUMA "OH, 03700" -PUMA "OH, 03800" -PUMA "OH, 03900" -PUMA "OH, 04000" -PUMA "OH, 04101" -PUMA "OH, 04102" -PUMA "OH, 04103" -PUMA "OH, 04104" -PUMA "OH, 04105" -PUMA "OH, 04106" -PUMA "OH, 04107" -PUMA "OH, 04108" -PUMA "OH, 04109" -PUMA "OH, 04110" -PUMA "OH, 04111" -PUMA "OH, 04200" -PUMA "OH, 04300" -PUMA "OH, 04400" -PUMA "OH, 04500" -PUMA "OH, 04601" -PUMA "OH, 04602" -PUMA "OH, 04603" -PUMA "OH, 04604" -PUMA "OH, 04700" -PUMA "OH, 04800" -PUMA "OH, 04900" -PUMA "OH, 05000" -PUMA "OH, 05100" -PUMA "OH, 05200" -PUMA "OH, 05301" -PUMA "OH, 05302" -PUMA "OH, 05401" -PUMA "OH, 05402" -PUMA "OH, 05403" -PUMA "OH, 05501" -PUMA "OH, 05502" -PUMA "OH, 05503" -PUMA "OH, 05504" -PUMA "OH, 05505" -PUMA "OH, 05506" -PUMA "OH, 05507" -PUMA "OH, 05600" -PUMA "OH, 05700" -PUMA "OK, 00100" -PUMA "OK, 00200" -PUMA "OK, 00300" -PUMA "OK, 00400" -PUMA "OK, 00500" -PUMA "OK, 00601" -PUMA "OK, 00602" -PUMA "OK, 00701" -PUMA "OK, 00702" -PUMA "OK, 00800" -PUMA "OK, 00900" -PUMA "OK, 01001" -PUMA "OK, 01002" -PUMA "OK, 01003" -PUMA "OK, 01004" -PUMA "OK, 01005" -PUMA "OK, 01006" -PUMA "OK, 01101" -PUMA "OK, 01102" -PUMA "OK, 01201" -PUMA "OK, 01202" -PUMA "OK, 01203" -PUMA "OK, 01204" -PUMA "OK, 01301" -PUMA "OK, 01302" -PUMA "OK, 01400" -PUMA "OK, 01501" -PUMA "OK, 01601" -PUMA "OR, 00100" -PUMA "OR, 00200" -PUMA "OR, 00300" -PUMA "OR, 00400" -PUMA "OR, 00500" -PUMA "OR, 00600" -PUMA "OR, 00703" -PUMA "OR, 00704" -PUMA "OR, 00705" -PUMA "OR, 00800" -PUMA "OR, 00901" -PUMA "OR, 00902" -PUMA "OR, 01000" -PUMA "OR, 01103" -PUMA "OR, 01104" -PUMA "OR, 01105" -PUMA "OR, 01200" -PUMA "OR, 01301" -PUMA "OR, 01302" -PUMA "OR, 01303" -PUMA "OR, 01305" -PUMA "OR, 01314" -PUMA "OR, 01316" -PUMA "OR, 01317" -PUMA "OR, 01318" -PUMA "OR, 01319" -PUMA "OR, 01320" -PUMA "OR, 01321" -PUMA "OR, 01322" -PUMA "OR, 01323" -PUMA "OR, 01324" -PUMA "PA, 00101" -PUMA "PA, 00102" -PUMA "PA, 00200" -PUMA "PA, 00300" -PUMA "PA, 00400" -PUMA "PA, 00500" -PUMA "PA, 00600" -PUMA "PA, 00701" -PUMA "PA, 00702" -PUMA "PA, 00801" -PUMA "PA, 00802" -PUMA "PA, 00803" -PUMA "PA, 00900" -PUMA "PA, 01000" -PUMA "PA, 01100" -PUMA "PA, 01200" -PUMA "PA, 01300" -PUMA "PA, 01400" -PUMA "PA, 01501" -PUMA "PA, 01502" -PUMA "PA, 01600" -PUMA "PA, 01701" -PUMA "PA, 01702" -PUMA "PA, 01801" -PUMA "PA, 01802" -PUMA "PA, 01803" -PUMA "PA, 01804" -PUMA "PA, 01805" -PUMA "PA, 01806" -PUMA "PA, 01807" -PUMA "PA, 01900" -PUMA "PA, 02001" -PUMA "PA, 02002" -PUMA "PA, 02003" -PUMA "PA, 02100" -PUMA "PA, 02200" -PUMA "PA, 02301" -PUMA "PA, 02302" -PUMA "PA, 02401" -PUMA "PA, 02402" -PUMA "PA, 02500" -PUMA "PA, 02600" -PUMA "PA, 02701" -PUMA "PA, 02702" -PUMA "PA, 02703" -PUMA "PA, 02801" -PUMA "PA, 02802" -PUMA "PA, 02803" -PUMA "PA, 02901" -PUMA "PA, 02902" -PUMA "PA, 03001" -PUMA "PA, 03002" -PUMA "PA, 03003" -PUMA "PA, 03004" -PUMA "PA, 03101" -PUMA "PA, 03102" -PUMA "PA, 03103" -PUMA "PA, 03104" -PUMA "PA, 03105" -PUMA "PA, 03106" -PUMA "PA, 03201" -PUMA "PA, 03202" -PUMA "PA, 03203" -PUMA "PA, 03204" -PUMA "PA, 03205" -PUMA "PA, 03206" -PUMA "PA, 03207" -PUMA "PA, 03208" -PUMA "PA, 03209" -PUMA "PA, 03210" -PUMA "PA, 03211" -PUMA "PA, 03301" -PUMA "PA, 03302" -PUMA "PA, 03303" -PUMA "PA, 03304" -PUMA "PA, 03401" -PUMA "PA, 03402" -PUMA "PA, 03403" -PUMA "PA, 03404" -PUMA "PA, 03501" -PUMA "PA, 03502" -PUMA "PA, 03503" -PUMA "PA, 03504" -PUMA "PA, 03601" -PUMA "PA, 03602" -PUMA "PA, 03603" -PUMA "PA, 03701" -PUMA "PA, 03702" -PUMA "PA, 03800" -PUMA "PA, 03900" -PUMA "PA, 04001" -PUMA "PA, 04002" -PUMA "RI, 00101" -PUMA "RI, 00102" -PUMA "RI, 00103" -PUMA "RI, 00104" -PUMA "RI, 00201" -PUMA "RI, 00300" -PUMA "RI, 00400" -PUMA "SC, 00101" -PUMA "SC, 00102" -PUMA "SC, 00103" -PUMA "SC, 00104" -PUMA "SC, 00105" -PUMA "SC, 00200" -PUMA "SC, 00301" -PUMA "SC, 00302" -PUMA "SC, 00400" -PUMA "SC, 00501" -PUMA "SC, 00502" -PUMA "SC, 00601" -PUMA "SC, 00602" -PUMA "SC, 00603" -PUMA "SC, 00604" -PUMA "SC, 00605" -PUMA "SC, 00700" -PUMA "SC, 00800" -PUMA "SC, 00900" -PUMA "SC, 01000" -PUMA "SC, 01101" -PUMA "SC, 01102" -PUMA "SC, 01201" -PUMA "SC, 01202" -PUMA "SC, 01203" -PUMA "SC, 01204" -PUMA "SC, 01300" -PUMA "SC, 01400" -PUMA "SC, 01500" -PUMA "SC, 01600" -PUMA "SD, 00100" -PUMA "SD, 00200" -PUMA "SD, 00300" -PUMA "SD, 00400" -PUMA "SD, 00500" -PUMA "SD, 00600" -PUMA "TN, 00100" -PUMA "TN, 00200" -PUMA "TN, 00300" -PUMA "TN, 00400" -PUMA "TN, 00500" -PUMA "TN, 00600" -PUMA "TN, 00700" -PUMA "TN, 00800" -PUMA "TN, 00900" -PUMA "TN, 01000" -PUMA "TN, 01100" -PUMA "TN, 01200" -PUMA "TN, 01300" -PUMA "TN, 01400" -PUMA "TN, 01500" -PUMA "TN, 01601" -PUMA "TN, 01602" -PUMA "TN, 01603" -PUMA "TN, 01604" -PUMA "TN, 01700" -PUMA "TN, 01800" -PUMA "TN, 01900" -PUMA "TN, 02001" -PUMA "TN, 02002" -PUMA "TN, 02003" -PUMA "TN, 02100" -PUMA "TN, 02200" -PUMA "TN, 02300" -PUMA "TN, 02401" -PUMA "TN, 02402" -PUMA "TN, 02501" -PUMA "TN, 02502" -PUMA "TN, 02503" -PUMA "TN, 02504" -PUMA "TN, 02505" -PUMA "TN, 02600" -PUMA "TN, 02700" -PUMA "TN, 02800" -PUMA "TN, 02900" -PUMA "TN, 03000" -PUMA "TN, 03100" -PUMA "TN, 03201" -PUMA "TN, 03202" -PUMA "TN, 03203" -PUMA "TN, 03204" -PUMA "TN, 03205" -PUMA "TN, 03206" -PUMA "TN, 03207" -PUMA "TN, 03208" -PUMA "TX, 00100" -PUMA "TX, 00200" -PUMA "TX, 00300" -PUMA "TX, 00400" -PUMA "TX, 00501" -PUMA "TX, 00502" -PUMA "TX, 00600" -PUMA "TX, 00700" -PUMA "TX, 00800" -PUMA "TX, 00900" -PUMA "TX, 01000" -PUMA "TX, 01100" -PUMA "TX, 01200" -PUMA "TX, 01300" -PUMA "TX, 01400" -PUMA "TX, 01501" -PUMA "TX, 01502" -PUMA "TX, 01600" -PUMA "TX, 01700" -PUMA "TX, 01800" -PUMA "TX, 01901" -PUMA "TX, 01902" -PUMA "TX, 01903" -PUMA "TX, 01904" -PUMA "TX, 01905" -PUMA "TX, 01906" -PUMA "TX, 01907" -PUMA "TX, 02001" -PUMA "TX, 02002" -PUMA "TX, 02003" -PUMA "TX, 02004" -PUMA "TX, 02005" -PUMA "TX, 02006" -PUMA "TX, 02101" -PUMA "TX, 02102" -PUMA "TX, 02200" -PUMA "TX, 02301" -PUMA "TX, 02302" -PUMA "TX, 02303" -PUMA "TX, 02304" -PUMA "TX, 02305" -PUMA "TX, 02306" -PUMA "TX, 02307" -PUMA "TX, 02308" -PUMA "TX, 02309" -PUMA "TX, 02310" -PUMA "TX, 02311" -PUMA "TX, 02312" -PUMA "TX, 02313" -PUMA "TX, 02314" -PUMA "TX, 02315" -PUMA "TX, 02316" -PUMA "TX, 02317" -PUMA "TX, 02318" -PUMA "TX, 02319" -PUMA "TX, 02320" -PUMA "TX, 02321" -PUMA "TX, 02322" -PUMA "TX, 02400" -PUMA "TX, 02501" -PUMA "TX, 02502" -PUMA "TX, 02503" -PUMA "TX, 02504" -PUMA "TX, 02505" -PUMA "TX, 02506" -PUMA "TX, 02507" -PUMA "TX, 02508" -PUMA "TX, 02509" -PUMA "TX, 02510" -PUMA "TX, 02511" -PUMA "TX, 02512" -PUMA "TX, 02513" -PUMA "TX, 02514" -PUMA "TX, 02515" -PUMA "TX, 02516" -PUMA "TX, 02600" -PUMA "TX, 02700" -PUMA "TX, 02800" -PUMA "TX, 02900" -PUMA "TX, 03000" -PUMA "TX, 03100" -PUMA "TX, 03200" -PUMA "TX, 03301" -PUMA "TX, 03302" -PUMA "TX, 03303" -PUMA "TX, 03304" -PUMA "TX, 03305" -PUMA "TX, 03306" -PUMA "TX, 03400" -PUMA "TX, 03501" -PUMA "TX, 03502" -PUMA "TX, 03601" -PUMA "TX, 03602" -PUMA "TX, 03700" -PUMA "TX, 03801" -PUMA "TX, 03802" -PUMA "TX, 03900" -PUMA "TX, 04000" -PUMA "TX, 04100" -PUMA "TX, 04200" -PUMA "TX, 04301" -PUMA "TX, 04302" -PUMA "TX, 04400" -PUMA "TX, 04501" -PUMA "TX, 04502" -PUMA "TX, 04503" -PUMA "TX, 04504" -PUMA "TX, 04601" -PUMA "TX, 04602" -PUMA "TX, 04603" -PUMA "TX, 04604" -PUMA "TX, 04605" -PUMA "TX, 04606" -PUMA "TX, 04607" -PUMA "TX, 04608" -PUMA "TX, 04609" -PUMA "TX, 04610" -PUMA "TX, 04611" -PUMA "TX, 04612" -PUMA "TX, 04613" -PUMA "TX, 04614" -PUMA "TX, 04615" -PUMA "TX, 04616" -PUMA "TX, 04617" -PUMA "TX, 04618" -PUMA "TX, 04619" -PUMA "TX, 04620" -PUMA "TX, 04621" -PUMA "TX, 04622" -PUMA "TX, 04623" -PUMA "TX, 04624" -PUMA "TX, 04625" -PUMA "TX, 04626" -PUMA "TX, 04627" -PUMA "TX, 04628" -PUMA "TX, 04629" -PUMA "TX, 04630" -PUMA "TX, 04631" -PUMA "TX, 04632" -PUMA "TX, 04633" -PUMA "TX, 04634" -PUMA "TX, 04635" -PUMA "TX, 04636" -PUMA "TX, 04637" -PUMA "TX, 04638" -PUMA "TX, 04701" -PUMA "TX, 04702" -PUMA "TX, 04801" -PUMA "TX, 04802" -PUMA "TX, 04803" -PUMA "TX, 04901" -PUMA "TX, 04902" -PUMA "TX, 04903" -PUMA "TX, 04904" -PUMA "TX, 04905" -PUMA "TX, 05000" -PUMA "TX, 05100" -PUMA "TX, 05201" -PUMA "TX, 05202" -PUMA "TX, 05203" -PUMA "TX, 05204" -PUMA "TX, 05301" -PUMA "TX, 05302" -PUMA "TX, 05303" -PUMA "TX, 05304" -PUMA "TX, 05305" -PUMA "TX, 05306" -PUMA "TX, 05307" -PUMA "TX, 05308" -PUMA "TX, 05309" -PUMA "TX, 05400" -PUMA "TX, 05500" -PUMA "TX, 05600" -PUMA "TX, 05700" -PUMA "TX, 05800" -PUMA "TX, 05901" -PUMA "TX, 05902" -PUMA "TX, 05903" -PUMA "TX, 05904" -PUMA "TX, 05905" -PUMA "TX, 05906" -PUMA "TX, 05907" -PUMA "TX, 05908" -PUMA "TX, 05909" -PUMA "TX, 05910" -PUMA "TX, 05911" -PUMA "TX, 05912" -PUMA "TX, 05913" -PUMA "TX, 05914" -PUMA "TX, 05915" -PUMA "TX, 05916" -PUMA "TX, 06000" -PUMA "TX, 06100" -PUMA "TX, 06200" -PUMA "TX, 06301" -PUMA "TX, 06302" -PUMA "TX, 06400" -PUMA "TX, 06500" -PUMA "TX, 06601" -PUMA "TX, 06602" -PUMA "TX, 06603" -PUMA "TX, 06701" -PUMA "TX, 06702" -PUMA "TX, 06703" -PUMA "TX, 06801" -PUMA "TX, 06802" -PUMA "TX, 06803" -PUMA "TX, 06804" -PUMA "TX, 06805" -PUMA "TX, 06806" -PUMA "TX, 06807" -PUMA "TX, 06900" -PUMA "UT, 03001" -PUMA "UT, 05001" -PUMA "UT, 11001" -PUMA "UT, 11002" -PUMA "UT, 13001" -PUMA "UT, 21001" -PUMA "UT, 35001" -PUMA "UT, 35002" -PUMA "UT, 35003" -PUMA "UT, 35004" -PUMA "UT, 35005" -PUMA "UT, 35006" -PUMA "UT, 35007" -PUMA "UT, 35008" -PUMA "UT, 35009" -PUMA "UT, 49001" -PUMA "UT, 49002" -PUMA "UT, 49003" -PUMA "UT, 49004" -PUMA "UT, 53001" -PUMA "UT, 57001" -PUMA "UT, 57002" -PUMA "VA, 01301" -PUMA "VA, 01302" -PUMA "VA, 04101" -PUMA "VA, 04102" -PUMA "VA, 04103" -PUMA "VA, 10701" -PUMA "VA, 10702" -PUMA "VA, 10703" -PUMA "VA, 51010" -PUMA "VA, 51020" -PUMA "VA, 51040" -PUMA "VA, 51044" -PUMA "VA, 51045" -PUMA "VA, 51080" -PUMA "VA, 51084" -PUMA "VA, 51085" -PUMA "VA, 51087" -PUMA "VA, 51089" -PUMA "VA, 51090" -PUMA "VA, 51095" -PUMA "VA, 51096" -PUMA "VA, 51097" -PUMA "VA, 51105" -PUMA "VA, 51110" -PUMA "VA, 51115" -PUMA "VA, 51120" -PUMA "VA, 51125" -PUMA "VA, 51135" -PUMA "VA, 51145" -PUMA "VA, 51154" -PUMA "VA, 51155" -PUMA "VA, 51164" -PUMA "VA, 51165" -PUMA "VA, 51167" -PUMA "VA, 51175" -PUMA "VA, 51186" -PUMA "VA, 51206" -PUMA "VA, 51215" -PUMA "VA, 51224" -PUMA "VA, 51225" -PUMA "VA, 51235" -PUMA "VA, 51244" -PUMA "VA, 51245" -PUMA "VA, 51246" -PUMA "VA, 51255" -PUMA "VA, 55001" -PUMA "VA, 55002" -PUMA "VA, 59301" -PUMA "VA, 59302" -PUMA "VA, 59303" -PUMA "VA, 59304" -PUMA "VA, 59305" -PUMA "VA, 59306" -PUMA "VA, 59307" -PUMA "VA, 59308" -PUMA "VA, 59309" -PUMA "VT, 00100" -PUMA "VT, 00200" -PUMA "VT, 00300" -PUMA "VT, 00400" -PUMA "WA, 10100" -PUMA "WA, 10200" -PUMA "WA, 10300" -PUMA "WA, 10400" -PUMA "WA, 10501" -PUMA "WA, 10502" -PUMA "WA, 10503" -PUMA "WA, 10504" -PUMA "WA, 10600" -PUMA "WA, 10701" -PUMA "WA, 10702" -PUMA "WA, 10703" -PUMA "WA, 10800" -PUMA "WA, 10901" -PUMA "WA, 10902" -PUMA "WA, 11000" -PUMA "WA, 11101" -PUMA "WA, 11102" -PUMA "WA, 11103" -PUMA "WA, 11104" -PUMA "WA, 11200" -PUMA "WA, 11300" -PUMA "WA, 11401" -PUMA "WA, 11402" -PUMA "WA, 11501" -PUMA "WA, 11502" -PUMA "WA, 11503" -PUMA "WA, 11504" -PUMA "WA, 11505" -PUMA "WA, 11506" -PUMA "WA, 11507" -PUMA "WA, 11601" -PUMA "WA, 11602" -PUMA "WA, 11603" -PUMA "WA, 11604" -PUMA "WA, 11605" -PUMA "WA, 11606" -PUMA "WA, 11607" -PUMA "WA, 11608" -PUMA "WA, 11609" -PUMA "WA, 11610" -PUMA "WA, 11611" -PUMA "WA, 11612" -PUMA "WA, 11613" -PUMA "WA, 11614" -PUMA "WA, 11615" -PUMA "WA, 11616" -PUMA "WA, 11701" -PUMA "WA, 11702" -PUMA "WA, 11703" -PUMA "WA, 11704" -PUMA "WA, 11705" -PUMA "WA, 11706" -PUMA "WA, 11801" -PUMA "WA, 11802" -PUMA "WA, 11900" -PUMA "WI, 00100" -PUMA "WI, 00101" -PUMA "WI, 00102" -PUMA "WI, 00103" -PUMA "WI, 00200" -PUMA "WI, 00300" -PUMA "WI, 00600" -PUMA "WI, 00700" -PUMA "WI, 00800" -PUMA "WI, 00900" -PUMA "WI, 01000" -PUMA "WI, 01001" -PUMA "WI, 01300" -PUMA "WI, 01301" -PUMA "WI, 01400" -PUMA "WI, 01401" -PUMA "WI, 01500" -PUMA "WI, 01501" -PUMA "WI, 01600" -PUMA "WI, 01601" -PUMA "WI, 02400" -PUMA "WI, 02500" -PUMA "WI, 10000" -PUMA "WI, 20000" -PUMA "WI, 30000" -PUMA "WI, 40101" -PUMA "WI, 40301" -PUMA "WI, 40701" -PUMA "WI, 41001" -PUMA "WI, 41002" -PUMA "WI, 41003" -PUMA "WI, 41004" -PUMA "WI, 41005" -PUMA "WI, 50000" -PUMA "WI, 55101" -PUMA "WI, 55102" -PUMA "WI, 55103" -PUMA "WI, 70101" -PUMA "WI, 70201" -PUMA "WI, 70301" -PUMA "WV, 00100" -PUMA "WV, 00200" -PUMA "WV, 00300" -PUMA "WV, 00400" -PUMA "WV, 00500" -PUMA "WV, 00600" -PUMA "WV, 00700" -PUMA "WV, 00800" -PUMA "WV, 00900" -PUMA "WV, 01000" -PUMA "WV, 01100" -PUMA "WV, 01200" -PUMA "WV, 01300" -PUMA "WY, 00100" -PUMA "WY, 00200" -PUMA "WY, 00300" -PUMA "WY, 00400" -PUMA "WY, 00500" -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false -Power Outage Summer ResStockArguments schedules_power_outage_period=Jul 1 5 - Jul 31 14 schedules_power_outage_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_period=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location None -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Partial Space Conditioning 20% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 50% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.5 +HVAC Secondary Heating Partial Space Conditioning <10% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" +PUMA "AK, 00102" +PUMA "AK, 00200" +PUMA "AK, 00300" +PUMA "AK, 00400" +PUMA "AL, 00100" +PUMA "AL, 00200" +PUMA "AL, 00301" +PUMA "AL, 00302" +PUMA "AL, 00400" +PUMA "AL, 00500" +PUMA "AL, 00600" +PUMA "AL, 00700" +PUMA "AL, 00800" +PUMA "AL, 00900" +PUMA "AL, 01000" +PUMA "AL, 01100" +PUMA "AL, 01200" +PUMA "AL, 01301" +PUMA "AL, 01302" +PUMA "AL, 01303" +PUMA "AL, 01304" +PUMA "AL, 01305" +PUMA "AL, 01400" +PUMA "AL, 01500" +PUMA "AL, 01600" +PUMA "AL, 01700" +PUMA "AL, 01800" +PUMA "AL, 01900" +PUMA "AL, 02000" +PUMA "AL, 02100" +PUMA "AL, 02200" +PUMA "AL, 02300" +PUMA "AL, 02400" +PUMA "AL, 02500" +PUMA "AL, 02600" +PUMA "AL, 02701" +PUMA "AL, 02702" +PUMA "AL, 02703" +PUMA "AR, 00100" +PUMA "AR, 00200" +PUMA "AR, 00300" +PUMA "AR, 00400" +PUMA "AR, 00500" +PUMA "AR, 00600" +PUMA "AR, 00700" +PUMA "AR, 00800" +PUMA "AR, 00900" +PUMA "AR, 01000" +PUMA "AR, 01100" +PUMA "AR, 01200" +PUMA "AR, 01300" +PUMA "AR, 01400" +PUMA "AR, 01500" +PUMA "AR, 01600" +PUMA "AR, 01700" +PUMA "AR, 01800" +PUMA "AR, 01900" +PUMA "AR, 02000" +PUMA "AZ, 00100" +PUMA "AZ, 00101" +PUMA "AZ, 00102" +PUMA "AZ, 00103" +PUMA "AZ, 00104" +PUMA "AZ, 00105" +PUMA "AZ, 00106" +PUMA "AZ, 00107" +PUMA "AZ, 00108" +PUMA "AZ, 00109" +PUMA "AZ, 00110" +PUMA "AZ, 00111" +PUMA "AZ, 00112" +PUMA "AZ, 00113" +PUMA "AZ, 00114" +PUMA "AZ, 00115" +PUMA "AZ, 00116" +PUMA "AZ, 00117" +PUMA "AZ, 00118" +PUMA "AZ, 00119" +PUMA "AZ, 00120" +PUMA "AZ, 00121" +PUMA "AZ, 00122" +PUMA "AZ, 00123" +PUMA "AZ, 00124" +PUMA "AZ, 00125" +PUMA "AZ, 00126" +PUMA "AZ, 00127" +PUMA "AZ, 00128" +PUMA "AZ, 00129" +PUMA "AZ, 00130" +PUMA "AZ, 00131" +PUMA "AZ, 00132" +PUMA "AZ, 00133" +PUMA "AZ, 00134" +PUMA "AZ, 00201" +PUMA "AZ, 00202" +PUMA "AZ, 00203" +PUMA "AZ, 00204" +PUMA "AZ, 00205" +PUMA "AZ, 00206" +PUMA "AZ, 00207" +PUMA "AZ, 00208" +PUMA "AZ, 00209" +PUMA "AZ, 00300" +PUMA "AZ, 00400" +PUMA "AZ, 00500" +PUMA "AZ, 00600" +PUMA "AZ, 00700" +PUMA "AZ, 00800" +PUMA "AZ, 00803" +PUMA "AZ, 00805" +PUMA "AZ, 00807" +PUMA "AZ, 00900" +PUMA "CA, 00101" +PUMA "CA, 00102" +PUMA "CA, 00103" +PUMA "CA, 00104" +PUMA "CA, 00105" +PUMA "CA, 00106" +PUMA "CA, 00107" +PUMA "CA, 00108" +PUMA "CA, 00109" +PUMA "CA, 00110" +PUMA "CA, 00300" +PUMA "CA, 00701" +PUMA "CA, 00702" +PUMA "CA, 01100" +PUMA "CA, 01301" +PUMA "CA, 01302" +PUMA "CA, 01303" +PUMA "CA, 01304" +PUMA "CA, 01305" +PUMA "CA, 01306" +PUMA "CA, 01307" +PUMA "CA, 01308" +PUMA "CA, 01309" +PUMA "CA, 01500" +PUMA "CA, 01700" +PUMA "CA, 01901" +PUMA "CA, 01902" +PUMA "CA, 01903" +PUMA "CA, 01904" +PUMA "CA, 01905" +PUMA "CA, 01906" +PUMA "CA, 01907" +PUMA "CA, 02300" +PUMA "CA, 02500" +PUMA "CA, 02901" +PUMA "CA, 02902" +PUMA "CA, 02903" +PUMA "CA, 02904" +PUMA "CA, 02905" +PUMA "CA, 03100" +PUMA "CA, 03300" +PUMA "CA, 03701" +PUMA "CA, 03702" +PUMA "CA, 03703" +PUMA "CA, 03704" +PUMA "CA, 03705" +PUMA "CA, 03706" +PUMA "CA, 03707" +PUMA "CA, 03708" +PUMA "CA, 03709" +PUMA "CA, 03710" +PUMA "CA, 03711" +PUMA "CA, 03712" +PUMA "CA, 03713" +PUMA "CA, 03714" +PUMA "CA, 03715" +PUMA "CA, 03716" +PUMA "CA, 03717" +PUMA "CA, 03718" +PUMA "CA, 03719" +PUMA "CA, 03720" +PUMA "CA, 03721" +PUMA "CA, 03722" +PUMA "CA, 03723" +PUMA "CA, 03724" +PUMA "CA, 03725" +PUMA "CA, 03726" +PUMA "CA, 03727" +PUMA "CA, 03728" +PUMA "CA, 03729" +PUMA "CA, 03730" +PUMA "CA, 03731" +PUMA "CA, 03732" +PUMA "CA, 03733" +PUMA "CA, 03734" +PUMA "CA, 03735" +PUMA "CA, 03736" +PUMA "CA, 03737" +PUMA "CA, 03738" +PUMA "CA, 03739" +PUMA "CA, 03740" +PUMA "CA, 03741" +PUMA "CA, 03742" +PUMA "CA, 03743" +PUMA "CA, 03744" +PUMA "CA, 03745" +PUMA "CA, 03746" +PUMA "CA, 03747" +PUMA "CA, 03748" +PUMA "CA, 03749" +PUMA "CA, 03750" +PUMA "CA, 03751" +PUMA "CA, 03752" +PUMA "CA, 03753" +PUMA "CA, 03754" +PUMA "CA, 03755" +PUMA "CA, 03756" +PUMA "CA, 03757" +PUMA "CA, 03758" +PUMA "CA, 03759" +PUMA "CA, 03760" +PUMA "CA, 03761" +PUMA "CA, 03762" +PUMA "CA, 03763" +PUMA "CA, 03764" +PUMA "CA, 03765" +PUMA "CA, 03766" +PUMA "CA, 03767" +PUMA "CA, 03768" +PUMA "CA, 03769" +PUMA "CA, 03900" +PUMA "CA, 04101" +PUMA "CA, 04102" +PUMA "CA, 04701" +PUMA "CA, 04702" +PUMA "CA, 05301" +PUMA "CA, 05302" +PUMA "CA, 05303" +PUMA "CA, 05500" +PUMA "CA, 05700" +PUMA "CA, 05901" +PUMA "CA, 05902" +PUMA "CA, 05903" +PUMA "CA, 05904" +PUMA "CA, 05905" +PUMA "CA, 05906" +PUMA "CA, 05907" +PUMA "CA, 05908" +PUMA "CA, 05909" +PUMA "CA, 05910" +PUMA "CA, 05911" +PUMA "CA, 05912" +PUMA "CA, 05913" +PUMA "CA, 05914" +PUMA "CA, 05915" +PUMA "CA, 05916" +PUMA "CA, 05917" +PUMA "CA, 05918" +PUMA "CA, 06101" +PUMA "CA, 06102" +PUMA "CA, 06103" +PUMA "CA, 06501" +PUMA "CA, 06502" +PUMA "CA, 06503" +PUMA "CA, 06504" +PUMA "CA, 06505" +PUMA "CA, 06506" +PUMA "CA, 06507" +PUMA "CA, 06508" +PUMA "CA, 06509" +PUMA "CA, 06510" +PUMA "CA, 06511" +PUMA "CA, 06512" +PUMA "CA, 06513" +PUMA "CA, 06514" +PUMA "CA, 06515" +PUMA "CA, 06701" +PUMA "CA, 06702" +PUMA "CA, 06703" +PUMA "CA, 06704" +PUMA "CA, 06705" +PUMA "CA, 06706" +PUMA "CA, 06707" +PUMA "CA, 06708" +PUMA "CA, 06709" +PUMA "CA, 06710" +PUMA "CA, 06711" +PUMA "CA, 06712" +PUMA "CA, 07101" +PUMA "CA, 07102" +PUMA "CA, 07103" +PUMA "CA, 07104" +PUMA "CA, 07105" +PUMA "CA, 07106" +PUMA "CA, 07107" +PUMA "CA, 07108" +PUMA "CA, 07109" +PUMA "CA, 07110" +PUMA "CA, 07111" +PUMA "CA, 07112" +PUMA "CA, 07113" +PUMA "CA, 07114" +PUMA "CA, 07115" +PUMA "CA, 07301" +PUMA "CA, 07302" +PUMA "CA, 07303" +PUMA "CA, 07304" +PUMA "CA, 07305" +PUMA "CA, 07306" +PUMA "CA, 07307" +PUMA "CA, 07308" +PUMA "CA, 07309" +PUMA "CA, 07310" +PUMA "CA, 07311" +PUMA "CA, 07312" +PUMA "CA, 07313" +PUMA "CA, 07314" +PUMA "CA, 07315" +PUMA "CA, 07316" +PUMA "CA, 07317" +PUMA "CA, 07318" +PUMA "CA, 07319" +PUMA "CA, 07320" +PUMA "CA, 07321" +PUMA "CA, 07322" +PUMA "CA, 07501" +PUMA "CA, 07502" +PUMA "CA, 07503" +PUMA "CA, 07504" +PUMA "CA, 07505" +PUMA "CA, 07506" +PUMA "CA, 07507" +PUMA "CA, 07701" +PUMA "CA, 07702" +PUMA "CA, 07703" +PUMA "CA, 07704" +PUMA "CA, 07901" +PUMA "CA, 07902" +PUMA "CA, 08101" +PUMA "CA, 08102" +PUMA "CA, 08103" +PUMA "CA, 08104" +PUMA "CA, 08105" +PUMA "CA, 08106" +PUMA "CA, 08301" +PUMA "CA, 08302" +PUMA "CA, 08303" +PUMA "CA, 08501" +PUMA "CA, 08502" +PUMA "CA, 08503" +PUMA "CA, 08504" +PUMA "CA, 08505" +PUMA "CA, 08506" +PUMA "CA, 08507" +PUMA "CA, 08508" +PUMA "CA, 08509" +PUMA "CA, 08510" +PUMA "CA, 08511" +PUMA "CA, 08512" +PUMA "CA, 08513" +PUMA "CA, 08514" +PUMA "CA, 08701" +PUMA "CA, 08702" +PUMA "CA, 08900" +PUMA "CA, 09501" +PUMA "CA, 09502" +PUMA "CA, 09503" +PUMA "CA, 09701" +PUMA "CA, 09702" +PUMA "CA, 09703" +PUMA "CA, 09901" +PUMA "CA, 09902" +PUMA "CA, 09903" +PUMA "CA, 09904" +PUMA "CA, 10100" +PUMA "CA, 10701" +PUMA "CA, 10702" +PUMA "CA, 10703" +PUMA "CA, 11101" +PUMA "CA, 11102" +PUMA "CA, 11103" +PUMA "CA, 11104" +PUMA "CA, 11105" +PUMA "CA, 11106" +PUMA "CA, 11300" +PUMA "CO, 00100" +PUMA "CO, 00102" +PUMA "CO, 00103" +PUMA "CO, 00200" +PUMA "CO, 00300" +PUMA "CO, 00400" +PUMA "CO, 00600" +PUMA "CO, 00700" +PUMA "CO, 00800" +PUMA "CO, 00801" +PUMA "CO, 00802" +PUMA "CO, 00803" +PUMA "CO, 00804" +PUMA "CO, 00805" +PUMA "CO, 00806" +PUMA "CO, 00807" +PUMA "CO, 00808" +PUMA "CO, 00809" +PUMA "CO, 00810" +PUMA "CO, 00811" +PUMA "CO, 00812" +PUMA "CO, 00813" +PUMA "CO, 00814" +PUMA "CO, 00815" +PUMA "CO, 00816" +PUMA "CO, 00817" +PUMA "CO, 00818" +PUMA "CO, 00819" +PUMA "CO, 00820" +PUMA "CO, 00821" +PUMA "CO, 00822" +PUMA "CO, 00823" +PUMA "CO, 00824" +PUMA "CO, 00900" +PUMA "CO, 01001" +PUMA "CO, 01002" +PUMA "CO, 04101" +PUMA "CO, 04102" +PUMA "CO, 04103" +PUMA "CO, 04104" +PUMA "CO, 04105" +PUMA "CO, 04106" +PUMA "CT, 00100" +PUMA "CT, 00101" +PUMA "CT, 00102" +PUMA "CT, 00103" +PUMA "CT, 00104" +PUMA "CT, 00105" +PUMA "CT, 00300" +PUMA "CT, 00301" +PUMA "CT, 00302" +PUMA "CT, 00303" +PUMA "CT, 00304" +PUMA "CT, 00305" +PUMA "CT, 00306" +PUMA "CT, 00500" +PUMA "CT, 00700" +PUMA "CT, 00900" +PUMA "CT, 00901" +PUMA "CT, 00902" +PUMA "CT, 00903" +PUMA "CT, 00904" +PUMA "CT, 00905" +PUMA "CT, 00906" +PUMA "CT, 01100" +PUMA "CT, 01101" +PUMA "CT, 01300" +PUMA "CT, 01500" +PUMA "DC, 00101" +PUMA "DC, 00102" +PUMA "DC, 00103" +PUMA "DC, 00104" +PUMA "DC, 00105" +PUMA "DE, 00101" +PUMA "DE, 00102" +PUMA "DE, 00103" +PUMA "DE, 00104" +PUMA "DE, 00200" +PUMA "DE, 00300" +PUMA "FL, 00101" +PUMA "FL, 00102" +PUMA "FL, 00500" +PUMA "FL, 00901" +PUMA "FL, 00902" +PUMA "FL, 00903" +PUMA "FL, 00904" +PUMA "FL, 01101" +PUMA "FL, 01102" +PUMA "FL, 01103" +PUMA "FL, 01104" +PUMA "FL, 01105" +PUMA "FL, 01106" +PUMA "FL, 01107" +PUMA "FL, 01108" +PUMA "FL, 01109" +PUMA "FL, 01110" +PUMA "FL, 01111" +PUMA "FL, 01112" +PUMA "FL, 01113" +PUMA "FL, 01114" +PUMA "FL, 01500" +PUMA "FL, 01701" +PUMA "FL, 01900" +PUMA "FL, 02101" +PUMA "FL, 02102" +PUMA "FL, 02103" +PUMA "FL, 02300" +PUMA "FL, 02700" +PUMA "FL, 03101" +PUMA "FL, 03102" +PUMA "FL, 03103" +PUMA "FL, 03104" +PUMA "FL, 03105" +PUMA "FL, 03106" +PUMA "FL, 03107" +PUMA "FL, 03301" +PUMA "FL, 03302" +PUMA "FL, 03500" +PUMA "FL, 05301" +PUMA "FL, 05701" +PUMA "FL, 05702" +PUMA "FL, 05703" +PUMA "FL, 05704" +PUMA "FL, 05705" +PUMA "FL, 05706" +PUMA "FL, 05707" +PUMA "FL, 05708" +PUMA "FL, 06100" +PUMA "FL, 06300" +PUMA "FL, 06901" +PUMA "FL, 06902" +PUMA "FL, 06903" +PUMA "FL, 07101" +PUMA "FL, 07102" +PUMA "FL, 07103" +PUMA "FL, 07104" +PUMA "FL, 07105" +PUMA "FL, 07300" +PUMA "FL, 07301" +PUMA "FL, 08101" +PUMA "FL, 08102" +PUMA "FL, 08103" +PUMA "FL, 08301" +PUMA "FL, 08302" +PUMA "FL, 08303" +PUMA "FL, 08500" +PUMA "FL, 08601" +PUMA "FL, 08602" +PUMA "FL, 08603" +PUMA "FL, 08604" +PUMA "FL, 08605" +PUMA "FL, 08606" +PUMA "FL, 08607" +PUMA "FL, 08608" +PUMA "FL, 08609" +PUMA "FL, 08610" +PUMA "FL, 08611" +PUMA "FL, 08612" +PUMA "FL, 08613" +PUMA "FL, 08614" +PUMA "FL, 08615" +PUMA "FL, 08616" +PUMA "FL, 08617" +PUMA "FL, 08618" +PUMA "FL, 08619" +PUMA "FL, 08620" +PUMA "FL, 08621" +PUMA "FL, 08622" +PUMA "FL, 08623" +PUMA "FL, 08624" +PUMA "FL, 08700" +PUMA "FL, 08900" +PUMA "FL, 09100" +PUMA "FL, 09300" +PUMA "FL, 09501" +PUMA "FL, 09502" +PUMA "FL, 09503" +PUMA "FL, 09504" +PUMA "FL, 09505" +PUMA "FL, 09506" +PUMA "FL, 09507" +PUMA "FL, 09508" +PUMA "FL, 09509" +PUMA "FL, 09510" +PUMA "FL, 09701" +PUMA "FL, 09702" +PUMA "FL, 09901" +PUMA "FL, 09902" +PUMA "FL, 09903" +PUMA "FL, 09904" +PUMA "FL, 09905" +PUMA "FL, 09906" +PUMA "FL, 09907" +PUMA "FL, 09908" +PUMA "FL, 09909" +PUMA "FL, 09910" +PUMA "FL, 09911" +PUMA "FL, 10101" +PUMA "FL, 10102" +PUMA "FL, 10103" +PUMA "FL, 10104" +PUMA "FL, 10301" +PUMA "FL, 10302" +PUMA "FL, 10303" +PUMA "FL, 10304" +PUMA "FL, 10305" +PUMA "FL, 10306" +PUMA "FL, 10307" +PUMA "FL, 10308" +PUMA "FL, 10501" +PUMA "FL, 10502" +PUMA "FL, 10503" +PUMA "FL, 10504" +PUMA "FL, 10700" +PUMA "FL, 10900" +PUMA "FL, 11101" +PUMA "FL, 11102" +PUMA "FL, 11300" +PUMA "FL, 11501" +PUMA "FL, 11502" +PUMA "FL, 11503" +PUMA "FL, 11701" +PUMA "FL, 11702" +PUMA "FL, 11703" +PUMA "FL, 11704" +PUMA "FL, 12100" +PUMA "FL, 12701" +PUMA "FL, 12702" +PUMA "FL, 12703" +PUMA "FL, 12704" +PUMA "GA, 00100" +PUMA "GA, 00200" +PUMA "GA, 00300" +PUMA "GA, 00401" +PUMA "GA, 00402" +PUMA "GA, 00500" +PUMA "GA, 00600" +PUMA "GA, 00700" +PUMA "GA, 00800" +PUMA "GA, 00900" +PUMA "GA, 01001" +PUMA "GA, 01002" +PUMA "GA, 01003" +PUMA "GA, 01004" +PUMA "GA, 01005" +PUMA "GA, 01006" +PUMA "GA, 01007" +PUMA "GA, 01008" +PUMA "GA, 01100" +PUMA "GA, 01200" +PUMA "GA, 01300" +PUMA "GA, 01400" +PUMA "GA, 01500" +PUMA "GA, 01600" +PUMA "GA, 01700" +PUMA "GA, 01800" +PUMA "GA, 01900" +PUMA "GA, 02001" +PUMA "GA, 02002" +PUMA "GA, 02003" +PUMA "GA, 02004" +PUMA "GA, 02100" +PUMA "GA, 02200" +PUMA "GA, 02300" +PUMA "GA, 02400" +PUMA "GA, 02500" +PUMA "GA, 02600" +PUMA "GA, 02700" +PUMA "GA, 02800" +PUMA "GA, 02900" +PUMA "GA, 03001" +PUMA "GA, 03002" +PUMA "GA, 03003" +PUMA "GA, 03004" +PUMA "GA, 03005" +PUMA "GA, 03101" +PUMA "GA, 03102" +PUMA "GA, 03200" +PUMA "GA, 03300" +PUMA "GA, 03400" +PUMA "GA, 03500" +PUMA "GA, 03600" +PUMA "GA, 03700" +PUMA "GA, 03800" +PUMA "GA, 03900" +PUMA "GA, 04000" +PUMA "GA, 04001" +PUMA "GA, 04002" +PUMA "GA, 04003" +PUMA "GA, 04004" +PUMA "GA, 04005" +PUMA "GA, 04006" +PUMA "GA, 04100" +PUMA "GA, 04200" +PUMA "GA, 04300" +PUMA "GA, 04400" +PUMA "GA, 04500" +PUMA "GA, 04600" +PUMA "GA, 05001" +PUMA "GA, 05002" +PUMA "GA, 06001" +PUMA "GA, 06002" +PUMA "HI, 00100" +PUMA "HI, 00200" +PUMA "HI, 00301" +PUMA "HI, 00302" +PUMA "HI, 00303" +PUMA "HI, 00304" +PUMA "HI, 00305" +PUMA "HI, 00306" +PUMA "HI, 00307" +PUMA "HI, 00308" +PUMA "IA, 00100" +PUMA "IA, 00200" +PUMA "IA, 00400" +PUMA "IA, 00500" +PUMA "IA, 00600" +PUMA "IA, 00700" +PUMA "IA, 00800" +PUMA "IA, 00900" +PUMA "IA, 01000" +PUMA "IA, 01100" +PUMA "IA, 01200" +PUMA "IA, 01300" +PUMA "IA, 01400" +PUMA "IA, 01500" +PUMA "IA, 01600" +PUMA "IA, 01700" +PUMA "IA, 01800" +PUMA "IA, 01900" +PUMA "IA, 02000" +PUMA "IA, 02100" +PUMA "IA, 02200" +PUMA "IA, 02300" +PUMA "ID, 00100" +PUMA "ID, 00200" +PUMA "ID, 00300" +PUMA "ID, 00400" +PUMA "ID, 00500" +PUMA "ID, 00600" +PUMA "ID, 00701" +PUMA "ID, 00702" +PUMA "ID, 00800" +PUMA "ID, 00900" +PUMA "ID, 01000" +PUMA "ID, 01100" +PUMA "ID, 01200" +PUMA "ID, 01300" +PUMA "IL, 00104" +PUMA "IL, 00105" +PUMA "IL, 00202" +PUMA "IL, 00300" +PUMA "IL, 00401" +PUMA "IL, 00501" +PUMA "IL, 00600" +PUMA "IL, 00700" +PUMA "IL, 00800" +PUMA "IL, 00900" +PUMA "IL, 01001" +PUMA "IL, 01104" +PUMA "IL, 01105" +PUMA "IL, 01204" +PUMA "IL, 01205" +PUMA "IL, 01300" +PUMA "IL, 01500" +PUMA "IL, 01602" +PUMA "IL, 01701" +PUMA "IL, 01900" +PUMA "IL, 02000" +PUMA "IL, 02100" +PUMA "IL, 02200" +PUMA "IL, 02300" +PUMA "IL, 02400" +PUMA "IL, 02501" +PUMA "IL, 02601" +PUMA "IL, 02700" +PUMA "IL, 02801" +PUMA "IL, 02901" +PUMA "IL, 03005" +PUMA "IL, 03007" +PUMA "IL, 03008" +PUMA "IL, 03009" +PUMA "IL, 03102" +PUMA "IL, 03105" +PUMA "IL, 03106" +PUMA "IL, 03107" +PUMA "IL, 03108" +PUMA "IL, 03202" +PUMA "IL, 03203" +PUMA "IL, 03204" +PUMA "IL, 03205" +PUMA "IL, 03207" +PUMA "IL, 03208" +PUMA "IL, 03209" +PUMA "IL, 03306" +PUMA "IL, 03307" +PUMA "IL, 03308" +PUMA "IL, 03309" +PUMA "IL, 03310" +PUMA "IL, 03401" +PUMA "IL, 03407" +PUMA "IL, 03408" +PUMA "IL, 03409" +PUMA "IL, 03410" +PUMA "IL, 03411" +PUMA "IL, 03412" +PUMA "IL, 03413" +PUMA "IL, 03414" +PUMA "IL, 03415" +PUMA "IL, 03416" +PUMA "IL, 03417" +PUMA "IL, 03418" +PUMA "IL, 03419" +PUMA "IL, 03420" +PUMA "IL, 03421" +PUMA "IL, 03422" +PUMA "IL, 03501" +PUMA "IL, 03502" +PUMA "IL, 03503" +PUMA "IL, 03504" +PUMA "IL, 03520" +PUMA "IL, 03521" +PUMA "IL, 03522" +PUMA "IL, 03523" +PUMA "IL, 03524" +PUMA "IL, 03525" +PUMA "IL, 03526" +PUMA "IL, 03527" +PUMA "IL, 03528" +PUMA "IL, 03529" +PUMA "IL, 03530" +PUMA "IL, 03531" +PUMA "IL, 03532" +PUMA "IL, 03601" +PUMA "IL, 03602" +PUMA "IL, 03700" +PUMA "IN, 00101" +PUMA "IN, 00102" +PUMA "IN, 00103" +PUMA "IN, 00104" +PUMA "IN, 00200" +PUMA "IN, 00300" +PUMA "IN, 00401" +PUMA "IN, 00402" +PUMA "IN, 00500" +PUMA "IN, 00600" +PUMA "IN, 00700" +PUMA "IN, 00800" +PUMA "IN, 00900" +PUMA "IN, 01001" +PUMA "IN, 01002" +PUMA "IN, 01003" +PUMA "IN, 01100" +PUMA "IN, 01200" +PUMA "IN, 01300" +PUMA "IN, 01400" +PUMA "IN, 01500" +PUMA "IN, 01600" +PUMA "IN, 01700" +PUMA "IN, 01801" +PUMA "IN, 01802" +PUMA "IN, 01803" +PUMA "IN, 01900" +PUMA "IN, 02000" +PUMA "IN, 02100" +PUMA "IN, 02200" +PUMA "IN, 02301" +PUMA "IN, 02302" +PUMA "IN, 02303" +PUMA "IN, 02304" +PUMA "IN, 02305" +PUMA "IN, 02306" +PUMA "IN, 02307" +PUMA "IN, 02400" +PUMA "IN, 02500" +PUMA "IN, 02600" +PUMA "IN, 02700" +PUMA "IN, 02800" +PUMA "IN, 02900" +PUMA "IN, 03000" +PUMA "IN, 03100" +PUMA "IN, 03200" +PUMA "IN, 03300" +PUMA "IN, 03400" +PUMA "IN, 03500" +PUMA "IN, 03600" +PUMA "KS, 00100" +PUMA "KS, 00200" +PUMA "KS, 00300" +PUMA "KS, 00400" +PUMA "KS, 00500" +PUMA "KS, 00601" +PUMA "KS, 00602" +PUMA "KS, 00603" +PUMA "KS, 00604" +PUMA "KS, 00700" +PUMA "KS, 00801" +PUMA "KS, 00802" +PUMA "KS, 00900" +PUMA "KS, 01000" +PUMA "KS, 01100" +PUMA "KS, 01200" +PUMA "KS, 01301" +PUMA "KS, 01302" +PUMA "KS, 01303" +PUMA "KS, 01304" +PUMA "KS, 01400" +PUMA "KS, 01500" +PUMA "KY, 00100" +PUMA "KY, 00200" +PUMA "KY, 00300" +PUMA "KY, 00400" +PUMA "KY, 00500" +PUMA "KY, 00600" +PUMA "KY, 00700" +PUMA "KY, 00800" +PUMA "KY, 00900" +PUMA "KY, 01000" +PUMA "KY, 01100" +PUMA "KY, 01200" +PUMA "KY, 01300" +PUMA "KY, 01400" +PUMA "KY, 01500" +PUMA "KY, 01600" +PUMA "KY, 01701" +PUMA "KY, 01702" +PUMA "KY, 01703" +PUMA "KY, 01704" +PUMA "KY, 01705" +PUMA "KY, 01706" +PUMA "KY, 01800" +PUMA "KY, 01901" +PUMA "KY, 01902" +PUMA "KY, 02000" +PUMA "KY, 02100" +PUMA "KY, 02200" +PUMA "KY, 02300" +PUMA "KY, 02400" +PUMA "KY, 02500" +PUMA "KY, 02600" +PUMA "KY, 02700" +PUMA "KY, 02800" +PUMA "LA, 00100" +PUMA "LA, 00101" +PUMA "LA, 00200" +PUMA "LA, 00300" +PUMA "LA, 00400" +PUMA "LA, 00500" +PUMA "LA, 00600" +PUMA "LA, 00700" +PUMA "LA, 00800" +PUMA "LA, 00900" +PUMA "LA, 01000" +PUMA "LA, 01100" +PUMA "LA, 01200" +PUMA "LA, 01201" +PUMA "LA, 01300" +PUMA "LA, 01400" +PUMA "LA, 01500" +PUMA "LA, 01501" +PUMA "LA, 01502" +PUMA "LA, 01600" +PUMA "LA, 01700" +PUMA "LA, 01800" +PUMA "LA, 01900" +PUMA "LA, 02000" +PUMA "LA, 02100" +PUMA "LA, 02200" +PUMA "LA, 02201" +PUMA "LA, 02300" +PUMA "LA, 02301" +PUMA "LA, 02302" +PUMA "LA, 02400" +PUMA "LA, 02401" +PUMA "LA, 02402" +PUMA "LA, 02500" +PUMA "MA, 00100" +PUMA "MA, 00200" +PUMA "MA, 00300" +PUMA "MA, 00301" +PUMA "MA, 00302" +PUMA "MA, 00303" +PUMA "MA, 00304" +PUMA "MA, 00400" +PUMA "MA, 00501" +PUMA "MA, 00502" +PUMA "MA, 00503" +PUMA "MA, 00504" +PUMA "MA, 00505" +PUMA "MA, 00506" +PUMA "MA, 00507" +PUMA "MA, 00508" +PUMA "MA, 00701" +PUMA "MA, 00702" +PUMA "MA, 00703" +PUMA "MA, 00704" +PUMA "MA, 01000" +PUMA "MA, 01300" +PUMA "MA, 01400" +PUMA "MA, 01600" +PUMA "MA, 01900" +PUMA "MA, 01901" +PUMA "MA, 01902" +PUMA "MA, 02400" +PUMA "MA, 02800" +PUMA "MA, 03301" +PUMA "MA, 03302" +PUMA "MA, 03303" +PUMA "MA, 03304" +PUMA "MA, 03305" +PUMA "MA, 03306" +PUMA "MA, 03400" +PUMA "MA, 03500" +PUMA "MA, 03601" +PUMA "MA, 03602" +PUMA "MA, 03603" +PUMA "MA, 03900" +PUMA "MA, 04000" +PUMA "MA, 04200" +PUMA "MA, 04301" +PUMA "MA, 04302" +PUMA "MA, 04303" +PUMA "MA, 04500" +PUMA "MA, 04700" +PUMA "MA, 04800" +PUMA "MA, 04901" +PUMA "MA, 04902" +PUMA "MA, 04903" +PUMA "MD, 00100" +PUMA "MD, 00200" +PUMA "MD, 00301" +PUMA "MD, 00302" +PUMA "MD, 00400" +PUMA "MD, 00501" +PUMA "MD, 00502" +PUMA "MD, 00503" +PUMA "MD, 00504" +PUMA "MD, 00505" +PUMA "MD, 00506" +PUMA "MD, 00507" +PUMA "MD, 00601" +PUMA "MD, 00602" +PUMA "MD, 00700" +PUMA "MD, 00801" +PUMA "MD, 00802" +PUMA "MD, 00803" +PUMA "MD, 00804" +PUMA "MD, 00805" +PUMA "MD, 00901" +PUMA "MD, 00902" +PUMA "MD, 01001" +PUMA "MD, 01002" +PUMA "MD, 01003" +PUMA "MD, 01004" +PUMA "MD, 01005" +PUMA "MD, 01006" +PUMA "MD, 01007" +PUMA "MD, 01101" +PUMA "MD, 01102" +PUMA "MD, 01103" +PUMA "MD, 01104" +PUMA "MD, 01105" +PUMA "MD, 01106" +PUMA "MD, 01107" +PUMA "MD, 01201" +PUMA "MD, 01202" +PUMA "MD, 01203" +PUMA "MD, 01204" +PUMA "MD, 01300" +PUMA "MD, 01400" +PUMA "MD, 01500" +PUMA "MD, 01600" +PUMA "ME, 00100" +PUMA "ME, 00200" +PUMA "ME, 00300" +PUMA "ME, 00400" +PUMA "ME, 00500" +PUMA "ME, 00600" +PUMA "ME, 00700" +PUMA "ME, 00800" +PUMA "ME, 00900" +PUMA "ME, 01000" +PUMA "MI, 00100" +PUMA "MI, 00200" +PUMA "MI, 00300" +PUMA "MI, 00400" +PUMA "MI, 00500" +PUMA "MI, 00600" +PUMA "MI, 00700" +PUMA "MI, 00801" +PUMA "MI, 00802" +PUMA "MI, 00900" +PUMA "MI, 01001" +PUMA "MI, 01002" +PUMA "MI, 01003" +PUMA "MI, 01004" +PUMA "MI, 01100" +PUMA "MI, 01200" +PUMA "MI, 01300" +PUMA "MI, 01400" +PUMA "MI, 01500" +PUMA "MI, 01600" +PUMA "MI, 01701" +PUMA "MI, 01702" +PUMA "MI, 01703" +PUMA "MI, 01704" +PUMA "MI, 01801" +PUMA "MI, 01802" +PUMA "MI, 01900" +PUMA "MI, 02000" +PUMA "MI, 02101" +PUMA "MI, 02102" +PUMA "MI, 02200" +PUMA "MI, 02300" +PUMA "MI, 02400" +PUMA "MI, 02500" +PUMA "MI, 02600" +PUMA "MI, 02701" +PUMA "MI, 02702" +PUMA "MI, 02703" +PUMA "MI, 02800" +PUMA "MI, 02901" +PUMA "MI, 02902" +PUMA "MI, 02903" +PUMA "MI, 02904" +PUMA "MI, 02905" +PUMA "MI, 02906" +PUMA "MI, 02907" +PUMA "MI, 02908" +PUMA "MI, 03001" +PUMA "MI, 03002" +PUMA "MI, 03003" +PUMA "MI, 03004" +PUMA "MI, 03005" +PUMA "MI, 03006" +PUMA "MI, 03100" +PUMA "MI, 03201" +PUMA "MI, 03202" +PUMA "MI, 03203" +PUMA "MI, 03204" +PUMA "MI, 03205" +PUMA "MI, 03206" +PUMA "MI, 03207" +PUMA "MI, 03208" +PUMA "MI, 03209" +PUMA "MI, 03210" +PUMA "MI, 03211" +PUMA "MI, 03212" +PUMA "MI, 03213" +PUMA "MI, 03300" +PUMA "MN, 00100" +PUMA "MN, 00200" +PUMA "MN, 00300" +PUMA "MN, 00400" +PUMA "MN, 00500" +PUMA "MN, 00600" +PUMA "MN, 00700" +PUMA "MN, 00800" +PUMA "MN, 00900" +PUMA "MN, 01000" +PUMA "MN, 01101" +PUMA "MN, 01102" +PUMA "MN, 01103" +PUMA "MN, 01201" +PUMA "MN, 01202" +PUMA "MN, 01301" +PUMA "MN, 01302" +PUMA "MN, 01303" +PUMA "MN, 01304" +PUMA "MN, 01401" +PUMA "MN, 01402" +PUMA "MN, 01403" +PUMA "MN, 01404" +PUMA "MN, 01405" +PUMA "MN, 01406" +PUMA "MN, 01407" +PUMA "MN, 01408" +PUMA "MN, 01409" +PUMA "MN, 01410" +PUMA "MN, 01501" +PUMA "MN, 01502" +PUMA "MN, 01503" +PUMA "MN, 01600" +PUMA "MN, 01700" +PUMA "MN, 01800" +PUMA "MN, 01900" +PUMA "MN, 02000" +PUMA "MN, 02100" +PUMA "MN, 02200" +PUMA "MN, 02300" +PUMA "MN, 02400" +PUMA "MN, 02500" +PUMA "MN, 02600" +PUMA "MO, 00100" +PUMA "MO, 00200" +PUMA "MO, 00300" +PUMA "MO, 00400" +PUMA "MO, 00500" +PUMA "MO, 00600" +PUMA "MO, 00700" +PUMA "MO, 00800" +PUMA "MO, 00901" +PUMA "MO, 00902" +PUMA "MO, 00903" +PUMA "MO, 01001" +PUMA "MO, 01002" +PUMA "MO, 01003" +PUMA "MO, 01004" +PUMA "MO, 01005" +PUMA "MO, 01100" +PUMA "MO, 01200" +PUMA "MO, 01300" +PUMA "MO, 01400" +PUMA "MO, 01500" +PUMA "MO, 01600" +PUMA "MO, 01701" +PUMA "MO, 01702" +PUMA "MO, 01703" +PUMA "MO, 01801" +PUMA "MO, 01802" +PUMA "MO, 01803" +PUMA "MO, 01804" +PUMA "MO, 01805" +PUMA "MO, 01806" +PUMA "MO, 01807" +PUMA "MO, 01808" +PUMA "MO, 01901" +PUMA "MO, 01902" +PUMA "MO, 02001" +PUMA "MO, 02002" +PUMA "MO, 02100" +PUMA "MO, 02200" +PUMA "MO, 02300" +PUMA "MO, 02400" +PUMA "MO, 02500" +PUMA "MO, 02601" +PUMA "MO, 02602" +PUMA "MO, 02603" +PUMA "MO, 02700" +PUMA "MO, 02800" +PUMA "MS, 00100" +PUMA "MS, 00200" +PUMA "MS, 00300" +PUMA "MS, 00400" +PUMA "MS, 00500" +PUMA "MS, 00600" +PUMA "MS, 00700" +PUMA "MS, 00800" +PUMA "MS, 00900" +PUMA "MS, 01000" +PUMA "MS, 01100" +PUMA "MS, 01200" +PUMA "MS, 01300" +PUMA "MS, 01400" +PUMA "MS, 01500" +PUMA "MS, 01600" +PUMA "MS, 01700" +PUMA "MS, 01800" +PUMA "MS, 01900" +PUMA "MS, 02000" +PUMA "MS, 02100" +PUMA "MT, 00100" +PUMA "MT, 00200" +PUMA "MT, 00300" +PUMA "MT, 00400" +PUMA "MT, 00500" +PUMA "MT, 00600" +PUMA "MT, 00700" +PUMA "NC, 00100" +PUMA "NC, 00200" +PUMA "NC, 00300" +PUMA "NC, 00400" +PUMA "NC, 00500" +PUMA "NC, 00600" +PUMA "NC, 00700" +PUMA "NC, 00800" +PUMA "NC, 00900" +PUMA "NC, 01000" +PUMA "NC, 01100" +PUMA "NC, 01201" +PUMA "NC, 01202" +PUMA "NC, 01203" +PUMA "NC, 01204" +PUMA "NC, 01205" +PUMA "NC, 01206" +PUMA "NC, 01207" +PUMA "NC, 01208" +PUMA "NC, 01301" +PUMA "NC, 01302" +PUMA "NC, 01400" +PUMA "NC, 01500" +PUMA "NC, 01600" +PUMA "NC, 01701" +PUMA "NC, 01702" +PUMA "NC, 01703" +PUMA "NC, 01704" +PUMA "NC, 01801" +PUMA "NC, 01802" +PUMA "NC, 01803" +PUMA "NC, 01900" +PUMA "NC, 02000" +PUMA "NC, 02100" +PUMA "NC, 02201" +PUMA "NC, 02202" +PUMA "NC, 02300" +PUMA "NC, 02400" +PUMA "NC, 02500" +PUMA "NC, 02600" +PUMA "NC, 02700" +PUMA "NC, 02800" +PUMA "NC, 02900" +PUMA "NC, 03001" +PUMA "NC, 03002" +PUMA "NC, 03101" +PUMA "NC, 03102" +PUMA "NC, 03103" +PUMA "NC, 03104" +PUMA "NC, 03105" +PUMA "NC, 03106" +PUMA "NC, 03107" +PUMA "NC, 03108" +PUMA "NC, 03200" +PUMA "NC, 03300" +PUMA "NC, 03400" +PUMA "NC, 03500" +PUMA "NC, 03600" +PUMA "NC, 03700" +PUMA "NC, 03800" +PUMA "NC, 03900" +PUMA "NC, 04000" +PUMA "NC, 04100" +PUMA "NC, 04200" +PUMA "NC, 04300" +PUMA "NC, 04400" +PUMA "NC, 04500" +PUMA "NC, 04600" +PUMA "NC, 04700" +PUMA "NC, 04800" +PUMA "NC, 04900" +PUMA "NC, 05001" +PUMA "NC, 05002" +PUMA "NC, 05003" +PUMA "NC, 05100" +PUMA "NC, 05200" +PUMA "NC, 05300" +PUMA "NC, 05400" +PUMA "ND, 00100" +PUMA "ND, 00200" +PUMA "ND, 00300" +PUMA "ND, 00400" +PUMA "ND, 00500" +PUMA "NE, 00100" +PUMA "NE, 00200" +PUMA "NE, 00300" +PUMA "NE, 00400" +PUMA "NE, 00500" +PUMA "NE, 00600" +PUMA "NE, 00701" +PUMA "NE, 00702" +PUMA "NE, 00801" +PUMA "NE, 00802" +PUMA "NE, 00901" +PUMA "NE, 00902" +PUMA "NE, 00903" +PUMA "NE, 00904" +PUMA "NH, 00100" +PUMA "NH, 00200" +PUMA "NH, 00300" +PUMA "NH, 00400" +PUMA "NH, 00500" +PUMA "NH, 00600" +PUMA "NH, 00700" +PUMA "NH, 00800" +PUMA "NH, 00900" +PUMA "NH, 01000" +PUMA "NJ, 00101" +PUMA "NJ, 00102" +PUMA "NJ, 00301" +PUMA "NJ, 00302" +PUMA "NJ, 00303" +PUMA "NJ, 00304" +PUMA "NJ, 00305" +PUMA "NJ, 00306" +PUMA "NJ, 00307" +PUMA "NJ, 00308" +PUMA "NJ, 00400" +PUMA "NJ, 00501" +PUMA "NJ, 00502" +PUMA "NJ, 00503" +PUMA "NJ, 00601" +PUMA "NJ, 00602" +PUMA "NJ, 00701" +PUMA "NJ, 00702" +PUMA "NJ, 00703" +PUMA "NJ, 00800" +PUMA "NJ, 00901" +PUMA "NJ, 00902" +PUMA "NJ, 00903" +PUMA "NJ, 00904" +PUMA "NJ, 00905" +PUMA "NJ, 00906" +PUMA "NJ, 00907" +PUMA "NJ, 01001" +PUMA "NJ, 01002" +PUMA "NJ, 01003" +PUMA "NJ, 01101" +PUMA "NJ, 01102" +PUMA "NJ, 01103" +PUMA "NJ, 01104" +PUMA "NJ, 01105" +PUMA "NJ, 01106" +PUMA "NJ, 01201" +PUMA "NJ, 01202" +PUMA "NJ, 01203" +PUMA "NJ, 01204" +PUMA "NJ, 01205" +PUMA "NJ, 01301" +PUMA "NJ, 01302" +PUMA "NJ, 01401" +PUMA "NJ, 01402" +PUMA "NJ, 01403" +PUMA "NJ, 01404" +PUMA "NJ, 01501" +PUMA "NJ, 01502" +PUMA "NJ, 01503" +PUMA "NJ, 01504" +PUMA "NJ, 01600" +PUMA "NJ, 01700" +PUMA "NJ, 01800" +PUMA "NJ, 01901" +PUMA "NJ, 01902" +PUMA "NJ, 01903" +PUMA "NJ, 01904" +PUMA "NJ, 02001" +PUMA "NJ, 02002" +PUMA "NJ, 02003" +PUMA "NJ, 02101" +PUMA "NJ, 02102" +PUMA "NJ, 02103" +PUMA "NJ, 02104" +PUMA "NJ, 02201" +PUMA "NJ, 02202" +PUMA "NJ, 02301" +PUMA "NJ, 02302" +PUMA "NJ, 02303" +PUMA "NJ, 02400" +PUMA "NJ, 02500" +PUMA "NJ, 02600" +PUMA "NM, 00100" +PUMA "NM, 00200" +PUMA "NM, 00300" +PUMA "NM, 00400" +PUMA "NM, 00500" +PUMA "NM, 00600" +PUMA "NM, 00700" +PUMA "NM, 00801" +PUMA "NM, 00802" +PUMA "NM, 00803" +PUMA "NM, 00804" +PUMA "NM, 00805" +PUMA "NM, 00806" +PUMA "NM, 00900" +PUMA "NM, 01001" +PUMA "NM, 01002" +PUMA "NM, 01100" +PUMA "NM, 01200" +PUMA "NV, 00101" +PUMA "NV, 00102" +PUMA "NV, 00103" +PUMA "NV, 00200" +PUMA "NV, 00300" +PUMA "NV, 00401" +PUMA "NV, 00402" +PUMA "NV, 00403" +PUMA "NV, 00404" +PUMA "NV, 00405" +PUMA "NV, 00406" +PUMA "NV, 00407" +PUMA "NV, 00408" +PUMA "NV, 00409" +PUMA "NV, 00410" +PUMA "NV, 00411" +PUMA "NV, 00412" +PUMA "NV, 00413" +PUMA "NY, 00100" +PUMA "NY, 00200" +PUMA "NY, 00300" +PUMA "NY, 00401" +PUMA "NY, 00402" +PUMA "NY, 00403" +PUMA "NY, 00500" +PUMA "NY, 00600" +PUMA "NY, 00701" +PUMA "NY, 00702" +PUMA "NY, 00703" +PUMA "NY, 00704" +PUMA "NY, 00800" +PUMA "NY, 00901" +PUMA "NY, 00902" +PUMA "NY, 00903" +PUMA "NY, 00904" +PUMA "NY, 00905" +PUMA "NY, 00906" +PUMA "NY, 01000" +PUMA "NY, 01101" +PUMA "NY, 01102" +PUMA "NY, 01201" +PUMA "NY, 01202" +PUMA "NY, 01203" +PUMA "NY, 01204" +PUMA "NY, 01205" +PUMA "NY, 01206" +PUMA "NY, 01207" +PUMA "NY, 01300" +PUMA "NY, 01400" +PUMA "NY, 01500" +PUMA "NY, 01600" +PUMA "NY, 01700" +PUMA "NY, 01801" +PUMA "NY, 01802" +PUMA "NY, 01900" +PUMA "NY, 02001" +PUMA "NY, 02002" +PUMA "NY, 02100" +PUMA "NY, 02201" +PUMA "NY, 02202" +PUMA "NY, 02203" +PUMA "NY, 02300" +PUMA "NY, 02401" +PUMA "NY, 02402" +PUMA "NY, 02500" +PUMA "NY, 02600" +PUMA "NY, 02701" +PUMA "NY, 02702" +PUMA "NY, 02801" +PUMA "NY, 02802" +PUMA "NY, 02901" +PUMA "NY, 02902" +PUMA "NY, 02903" +PUMA "NY, 03001" +PUMA "NY, 03002" +PUMA "NY, 03003" +PUMA "NY, 03101" +PUMA "NY, 03102" +PUMA "NY, 03103" +PUMA "NY, 03104" +PUMA "NY, 03105" +PUMA "NY, 03106" +PUMA "NY, 03107" +PUMA "NY, 03201" +PUMA "NY, 03202" +PUMA "NY, 03203" +PUMA "NY, 03204" +PUMA "NY, 03205" +PUMA "NY, 03206" +PUMA "NY, 03207" +PUMA "NY, 03208" +PUMA "NY, 03209" +PUMA "NY, 03210" +PUMA "NY, 03211" +PUMA "NY, 03212" +PUMA "NY, 03301" +PUMA "NY, 03302" +PUMA "NY, 03303" +PUMA "NY, 03304" +PUMA "NY, 03305" +PUMA "NY, 03306" +PUMA "NY, 03307" +PUMA "NY, 03308" +PUMA "NY, 03309" +PUMA "NY, 03310" +PUMA "NY, 03311" +PUMA "NY, 03312" +PUMA "NY, 03313" +PUMA "NY, 03701" +PUMA "NY, 03702" +PUMA "NY, 03703" +PUMA "NY, 03704" +PUMA "NY, 03705" +PUMA "NY, 03706" +PUMA "NY, 03707" +PUMA "NY, 03708" +PUMA "NY, 03709" +PUMA "NY, 03710" +PUMA "NY, 03801" +PUMA "NY, 03802" +PUMA "NY, 03803" +PUMA "NY, 03804" +PUMA "NY, 03805" +PUMA "NY, 03806" +PUMA "NY, 03807" +PUMA "NY, 03808" +PUMA "NY, 03809" +PUMA "NY, 03810" +PUMA "NY, 03901" +PUMA "NY, 03902" +PUMA "NY, 03903" +PUMA "NY, 04001" +PUMA "NY, 04002" +PUMA "NY, 04003" +PUMA "NY, 04004" +PUMA "NY, 04005" +PUMA "NY, 04006" +PUMA "NY, 04007" +PUMA "NY, 04008" +PUMA "NY, 04009" +PUMA "NY, 04010" +PUMA "NY, 04011" +PUMA "NY, 04012" +PUMA "NY, 04013" +PUMA "NY, 04014" +PUMA "NY, 04015" +PUMA "NY, 04016" +PUMA "NY, 04017" +PUMA "NY, 04018" +PUMA "NY, 04101" +PUMA "NY, 04102" +PUMA "NY, 04103" +PUMA "NY, 04104" +PUMA "NY, 04105" +PUMA "NY, 04106" +PUMA "NY, 04107" +PUMA "NY, 04108" +PUMA "NY, 04109" +PUMA "NY, 04110" +PUMA "NY, 04111" +PUMA "NY, 04112" +PUMA "NY, 04113" +PUMA "NY, 04114" +PUMA "OH, 00100" +PUMA "OH, 00200" +PUMA "OH, 00300" +PUMA "OH, 00400" +PUMA "OH, 00500" +PUMA "OH, 00600" +PUMA "OH, 00700" +PUMA "OH, 00801" +PUMA "OH, 00802" +PUMA "OH, 00901" +PUMA "OH, 00902" +PUMA "OH, 00903" +PUMA "OH, 00904" +PUMA "OH, 00905" +PUMA "OH, 00906" +PUMA "OH, 00907" +PUMA "OH, 00908" +PUMA "OH, 00909" +PUMA "OH, 00910" +PUMA "OH, 01000" +PUMA "OH, 01100" +PUMA "OH, 01200" +PUMA "OH, 01300" +PUMA "OH, 01400" +PUMA "OH, 01500" +PUMA "OH, 01600" +PUMA "OH, 01700" +PUMA "OH, 01801" +PUMA "OH, 01802" +PUMA "OH, 01803" +PUMA "OH, 01804" +PUMA "OH, 01805" +PUMA "OH, 01900" +PUMA "OH, 02000" +PUMA "OH, 02100" +PUMA "OH, 02200" +PUMA "OH, 02300" +PUMA "OH, 02400" +PUMA "OH, 02500" +PUMA "OH, 02600" +PUMA "OH, 02700" +PUMA "OH, 02800" +PUMA "OH, 02900" +PUMA "OH, 03000" +PUMA "OH, 03100" +PUMA "OH, 03200" +PUMA "OH, 03300" +PUMA "OH, 03400" +PUMA "OH, 03500" +PUMA "OH, 03600" +PUMA "OH, 03700" +PUMA "OH, 03800" +PUMA "OH, 03900" +PUMA "OH, 04000" +PUMA "OH, 04101" +PUMA "OH, 04102" +PUMA "OH, 04103" +PUMA "OH, 04104" +PUMA "OH, 04105" +PUMA "OH, 04106" +PUMA "OH, 04107" +PUMA "OH, 04108" +PUMA "OH, 04109" +PUMA "OH, 04110" +PUMA "OH, 04111" +PUMA "OH, 04200" +PUMA "OH, 04300" +PUMA "OH, 04400" +PUMA "OH, 04500" +PUMA "OH, 04601" +PUMA "OH, 04602" +PUMA "OH, 04603" +PUMA "OH, 04604" +PUMA "OH, 04700" +PUMA "OH, 04800" +PUMA "OH, 04900" +PUMA "OH, 05000" +PUMA "OH, 05100" +PUMA "OH, 05200" +PUMA "OH, 05301" +PUMA "OH, 05302" +PUMA "OH, 05401" +PUMA "OH, 05402" +PUMA "OH, 05403" +PUMA "OH, 05501" +PUMA "OH, 05502" +PUMA "OH, 05503" +PUMA "OH, 05504" +PUMA "OH, 05505" +PUMA "OH, 05506" +PUMA "OH, 05507" +PUMA "OH, 05600" +PUMA "OH, 05700" +PUMA "OK, 00100" +PUMA "OK, 00200" +PUMA "OK, 00300" +PUMA "OK, 00400" +PUMA "OK, 00500" +PUMA "OK, 00601" +PUMA "OK, 00602" +PUMA "OK, 00701" +PUMA "OK, 00702" +PUMA "OK, 00800" +PUMA "OK, 00900" +PUMA "OK, 01001" +PUMA "OK, 01002" +PUMA "OK, 01003" +PUMA "OK, 01004" +PUMA "OK, 01005" +PUMA "OK, 01006" +PUMA "OK, 01101" +PUMA "OK, 01102" +PUMA "OK, 01201" +PUMA "OK, 01202" +PUMA "OK, 01203" +PUMA "OK, 01204" +PUMA "OK, 01301" +PUMA "OK, 01302" +PUMA "OK, 01400" +PUMA "OK, 01501" +PUMA "OK, 01601" +PUMA "OR, 00100" +PUMA "OR, 00200" +PUMA "OR, 00300" +PUMA "OR, 00400" +PUMA "OR, 00500" +PUMA "OR, 00600" +PUMA "OR, 00703" +PUMA "OR, 00704" +PUMA "OR, 00705" +PUMA "OR, 00800" +PUMA "OR, 00901" +PUMA "OR, 00902" +PUMA "OR, 01000" +PUMA "OR, 01103" +PUMA "OR, 01104" +PUMA "OR, 01105" +PUMA "OR, 01200" +PUMA "OR, 01301" +PUMA "OR, 01302" +PUMA "OR, 01303" +PUMA "OR, 01305" +PUMA "OR, 01314" +PUMA "OR, 01316" +PUMA "OR, 01317" +PUMA "OR, 01318" +PUMA "OR, 01319" +PUMA "OR, 01320" +PUMA "OR, 01321" +PUMA "OR, 01322" +PUMA "OR, 01323" +PUMA "OR, 01324" +PUMA "PA, 00101" +PUMA "PA, 00102" +PUMA "PA, 00200" +PUMA "PA, 00300" +PUMA "PA, 00400" +PUMA "PA, 00500" +PUMA "PA, 00600" +PUMA "PA, 00701" +PUMA "PA, 00702" +PUMA "PA, 00801" +PUMA "PA, 00802" +PUMA "PA, 00803" +PUMA "PA, 00900" +PUMA "PA, 01000" +PUMA "PA, 01100" +PUMA "PA, 01200" +PUMA "PA, 01300" +PUMA "PA, 01400" +PUMA "PA, 01501" +PUMA "PA, 01502" +PUMA "PA, 01600" +PUMA "PA, 01701" +PUMA "PA, 01702" +PUMA "PA, 01801" +PUMA "PA, 01802" +PUMA "PA, 01803" +PUMA "PA, 01804" +PUMA "PA, 01805" +PUMA "PA, 01806" +PUMA "PA, 01807" +PUMA "PA, 01900" +PUMA "PA, 02001" +PUMA "PA, 02002" +PUMA "PA, 02003" +PUMA "PA, 02100" +PUMA "PA, 02200" +PUMA "PA, 02301" +PUMA "PA, 02302" +PUMA "PA, 02401" +PUMA "PA, 02402" +PUMA "PA, 02500" +PUMA "PA, 02600" +PUMA "PA, 02701" +PUMA "PA, 02702" +PUMA "PA, 02703" +PUMA "PA, 02801" +PUMA "PA, 02802" +PUMA "PA, 02803" +PUMA "PA, 02901" +PUMA "PA, 02902" +PUMA "PA, 03001" +PUMA "PA, 03002" +PUMA "PA, 03003" +PUMA "PA, 03004" +PUMA "PA, 03101" +PUMA "PA, 03102" +PUMA "PA, 03103" +PUMA "PA, 03104" +PUMA "PA, 03105" +PUMA "PA, 03106" +PUMA "PA, 03201" +PUMA "PA, 03202" +PUMA "PA, 03203" +PUMA "PA, 03204" +PUMA "PA, 03205" +PUMA "PA, 03206" +PUMA "PA, 03207" +PUMA "PA, 03208" +PUMA "PA, 03209" +PUMA "PA, 03210" +PUMA "PA, 03211" +PUMA "PA, 03301" +PUMA "PA, 03302" +PUMA "PA, 03303" +PUMA "PA, 03304" +PUMA "PA, 03401" +PUMA "PA, 03402" +PUMA "PA, 03403" +PUMA "PA, 03404" +PUMA "PA, 03501" +PUMA "PA, 03502" +PUMA "PA, 03503" +PUMA "PA, 03504" +PUMA "PA, 03601" +PUMA "PA, 03602" +PUMA "PA, 03603" +PUMA "PA, 03701" +PUMA "PA, 03702" +PUMA "PA, 03800" +PUMA "PA, 03900" +PUMA "PA, 04001" +PUMA "PA, 04002" +PUMA "RI, 00101" +PUMA "RI, 00102" +PUMA "RI, 00103" +PUMA "RI, 00104" +PUMA "RI, 00201" +PUMA "RI, 00300" +PUMA "RI, 00400" +PUMA "SC, 00101" +PUMA "SC, 00102" +PUMA "SC, 00103" +PUMA "SC, 00104" +PUMA "SC, 00105" +PUMA "SC, 00200" +PUMA "SC, 00301" +PUMA "SC, 00302" +PUMA "SC, 00400" +PUMA "SC, 00501" +PUMA "SC, 00502" +PUMA "SC, 00601" +PUMA "SC, 00602" +PUMA "SC, 00603" +PUMA "SC, 00604" +PUMA "SC, 00605" +PUMA "SC, 00700" +PUMA "SC, 00800" +PUMA "SC, 00900" +PUMA "SC, 01000" +PUMA "SC, 01101" +PUMA "SC, 01102" +PUMA "SC, 01201" +PUMA "SC, 01202" +PUMA "SC, 01203" +PUMA "SC, 01204" +PUMA "SC, 01300" +PUMA "SC, 01400" +PUMA "SC, 01500" +PUMA "SC, 01600" +PUMA "SD, 00100" +PUMA "SD, 00200" +PUMA "SD, 00300" +PUMA "SD, 00400" +PUMA "SD, 00500" +PUMA "SD, 00600" +PUMA "TN, 00100" +PUMA "TN, 00200" +PUMA "TN, 00300" +PUMA "TN, 00400" +PUMA "TN, 00500" +PUMA "TN, 00600" +PUMA "TN, 00700" +PUMA "TN, 00800" +PUMA "TN, 00900" +PUMA "TN, 01000" +PUMA "TN, 01100" +PUMA "TN, 01200" +PUMA "TN, 01300" +PUMA "TN, 01400" +PUMA "TN, 01500" +PUMA "TN, 01601" +PUMA "TN, 01602" +PUMA "TN, 01603" +PUMA "TN, 01604" +PUMA "TN, 01700" +PUMA "TN, 01800" +PUMA "TN, 01900" +PUMA "TN, 02001" +PUMA "TN, 02002" +PUMA "TN, 02003" +PUMA "TN, 02100" +PUMA "TN, 02200" +PUMA "TN, 02300" +PUMA "TN, 02401" +PUMA "TN, 02402" +PUMA "TN, 02501" +PUMA "TN, 02502" +PUMA "TN, 02503" +PUMA "TN, 02504" +PUMA "TN, 02505" +PUMA "TN, 02600" +PUMA "TN, 02700" +PUMA "TN, 02800" +PUMA "TN, 02900" +PUMA "TN, 03000" +PUMA "TN, 03100" +PUMA "TN, 03201" +PUMA "TN, 03202" +PUMA "TN, 03203" +PUMA "TN, 03204" +PUMA "TN, 03205" +PUMA "TN, 03206" +PUMA "TN, 03207" +PUMA "TN, 03208" +PUMA "TX, 00100" +PUMA "TX, 00200" +PUMA "TX, 00300" +PUMA "TX, 00400" +PUMA "TX, 00501" +PUMA "TX, 00502" +PUMA "TX, 00600" +PUMA "TX, 00700" +PUMA "TX, 00800" +PUMA "TX, 00900" +PUMA "TX, 01000" +PUMA "TX, 01100" +PUMA "TX, 01200" +PUMA "TX, 01300" +PUMA "TX, 01400" +PUMA "TX, 01501" +PUMA "TX, 01502" +PUMA "TX, 01600" +PUMA "TX, 01700" +PUMA "TX, 01800" +PUMA "TX, 01901" +PUMA "TX, 01902" +PUMA "TX, 01903" +PUMA "TX, 01904" +PUMA "TX, 01905" +PUMA "TX, 01906" +PUMA "TX, 01907" +PUMA "TX, 02001" +PUMA "TX, 02002" +PUMA "TX, 02003" +PUMA "TX, 02004" +PUMA "TX, 02005" +PUMA "TX, 02006" +PUMA "TX, 02101" +PUMA "TX, 02102" +PUMA "TX, 02200" +PUMA "TX, 02301" +PUMA "TX, 02302" +PUMA "TX, 02303" +PUMA "TX, 02304" +PUMA "TX, 02305" +PUMA "TX, 02306" +PUMA "TX, 02307" +PUMA "TX, 02308" +PUMA "TX, 02309" +PUMA "TX, 02310" +PUMA "TX, 02311" +PUMA "TX, 02312" +PUMA "TX, 02313" +PUMA "TX, 02314" +PUMA "TX, 02315" +PUMA "TX, 02316" +PUMA "TX, 02317" +PUMA "TX, 02318" +PUMA "TX, 02319" +PUMA "TX, 02320" +PUMA "TX, 02321" +PUMA "TX, 02322" +PUMA "TX, 02400" +PUMA "TX, 02501" +PUMA "TX, 02502" +PUMA "TX, 02503" +PUMA "TX, 02504" +PUMA "TX, 02505" +PUMA "TX, 02506" +PUMA "TX, 02507" +PUMA "TX, 02508" +PUMA "TX, 02509" +PUMA "TX, 02510" +PUMA "TX, 02511" +PUMA "TX, 02512" +PUMA "TX, 02513" +PUMA "TX, 02514" +PUMA "TX, 02515" +PUMA "TX, 02516" +PUMA "TX, 02600" +PUMA "TX, 02700" +PUMA "TX, 02800" +PUMA "TX, 02900" +PUMA "TX, 03000" +PUMA "TX, 03100" +PUMA "TX, 03200" +PUMA "TX, 03301" +PUMA "TX, 03302" +PUMA "TX, 03303" +PUMA "TX, 03304" +PUMA "TX, 03305" +PUMA "TX, 03306" +PUMA "TX, 03400" +PUMA "TX, 03501" +PUMA "TX, 03502" +PUMA "TX, 03601" +PUMA "TX, 03602" +PUMA "TX, 03700" +PUMA "TX, 03801" +PUMA "TX, 03802" +PUMA "TX, 03900" +PUMA "TX, 04000" +PUMA "TX, 04100" +PUMA "TX, 04200" +PUMA "TX, 04301" +PUMA "TX, 04302" +PUMA "TX, 04400" +PUMA "TX, 04501" +PUMA "TX, 04502" +PUMA "TX, 04503" +PUMA "TX, 04504" +PUMA "TX, 04601" +PUMA "TX, 04602" +PUMA "TX, 04603" +PUMA "TX, 04604" +PUMA "TX, 04605" +PUMA "TX, 04606" +PUMA "TX, 04607" +PUMA "TX, 04608" +PUMA "TX, 04609" +PUMA "TX, 04610" +PUMA "TX, 04611" +PUMA "TX, 04612" +PUMA "TX, 04613" +PUMA "TX, 04614" +PUMA "TX, 04615" +PUMA "TX, 04616" +PUMA "TX, 04617" +PUMA "TX, 04618" +PUMA "TX, 04619" +PUMA "TX, 04620" +PUMA "TX, 04621" +PUMA "TX, 04622" +PUMA "TX, 04623" +PUMA "TX, 04624" +PUMA "TX, 04625" +PUMA "TX, 04626" +PUMA "TX, 04627" +PUMA "TX, 04628" +PUMA "TX, 04629" +PUMA "TX, 04630" +PUMA "TX, 04631" +PUMA "TX, 04632" +PUMA "TX, 04633" +PUMA "TX, 04634" +PUMA "TX, 04635" +PUMA "TX, 04636" +PUMA "TX, 04637" +PUMA "TX, 04638" +PUMA "TX, 04701" +PUMA "TX, 04702" +PUMA "TX, 04801" +PUMA "TX, 04802" +PUMA "TX, 04803" +PUMA "TX, 04901" +PUMA "TX, 04902" +PUMA "TX, 04903" +PUMA "TX, 04904" +PUMA "TX, 04905" +PUMA "TX, 05000" +PUMA "TX, 05100" +PUMA "TX, 05201" +PUMA "TX, 05202" +PUMA "TX, 05203" +PUMA "TX, 05204" +PUMA "TX, 05301" +PUMA "TX, 05302" +PUMA "TX, 05303" +PUMA "TX, 05304" +PUMA "TX, 05305" +PUMA "TX, 05306" +PUMA "TX, 05307" +PUMA "TX, 05308" +PUMA "TX, 05309" +PUMA "TX, 05400" +PUMA "TX, 05500" +PUMA "TX, 05600" +PUMA "TX, 05700" +PUMA "TX, 05800" +PUMA "TX, 05901" +PUMA "TX, 05902" +PUMA "TX, 05903" +PUMA "TX, 05904" +PUMA "TX, 05905" +PUMA "TX, 05906" +PUMA "TX, 05907" +PUMA "TX, 05908" +PUMA "TX, 05909" +PUMA "TX, 05910" +PUMA "TX, 05911" +PUMA "TX, 05912" +PUMA "TX, 05913" +PUMA "TX, 05914" +PUMA "TX, 05915" +PUMA "TX, 05916" +PUMA "TX, 06000" +PUMA "TX, 06100" +PUMA "TX, 06200" +PUMA "TX, 06301" +PUMA "TX, 06302" +PUMA "TX, 06400" +PUMA "TX, 06500" +PUMA "TX, 06601" +PUMA "TX, 06602" +PUMA "TX, 06603" +PUMA "TX, 06701" +PUMA "TX, 06702" +PUMA "TX, 06703" +PUMA "TX, 06801" +PUMA "TX, 06802" +PUMA "TX, 06803" +PUMA "TX, 06804" +PUMA "TX, 06805" +PUMA "TX, 06806" +PUMA "TX, 06807" +PUMA "TX, 06900" +PUMA "UT, 03001" +PUMA "UT, 05001" +PUMA "UT, 11001" +PUMA "UT, 11002" +PUMA "UT, 13001" +PUMA "UT, 21001" +PUMA "UT, 35001" +PUMA "UT, 35002" +PUMA "UT, 35003" +PUMA "UT, 35004" +PUMA "UT, 35005" +PUMA "UT, 35006" +PUMA "UT, 35007" +PUMA "UT, 35008" +PUMA "UT, 35009" +PUMA "UT, 49001" +PUMA "UT, 49002" +PUMA "UT, 49003" +PUMA "UT, 49004" +PUMA "UT, 53001" +PUMA "UT, 57001" +PUMA "UT, 57002" +PUMA "VA, 01301" +PUMA "VA, 01302" +PUMA "VA, 04101" +PUMA "VA, 04102" +PUMA "VA, 04103" +PUMA "VA, 10701" +PUMA "VA, 10702" +PUMA "VA, 10703" +PUMA "VA, 51010" +PUMA "VA, 51020" +PUMA "VA, 51040" +PUMA "VA, 51044" +PUMA "VA, 51045" +PUMA "VA, 51080" +PUMA "VA, 51084" +PUMA "VA, 51085" +PUMA "VA, 51087" +PUMA "VA, 51089" +PUMA "VA, 51090" +PUMA "VA, 51095" +PUMA "VA, 51096" +PUMA "VA, 51097" +PUMA "VA, 51105" +PUMA "VA, 51110" +PUMA "VA, 51115" +PUMA "VA, 51120" +PUMA "VA, 51125" +PUMA "VA, 51135" +PUMA "VA, 51145" +PUMA "VA, 51154" +PUMA "VA, 51155" +PUMA "VA, 51164" +PUMA "VA, 51165" +PUMA "VA, 51167" +PUMA "VA, 51175" +PUMA "VA, 51186" +PUMA "VA, 51206" +PUMA "VA, 51215" +PUMA "VA, 51224" +PUMA "VA, 51225" +PUMA "VA, 51235" +PUMA "VA, 51244" +PUMA "VA, 51245" +PUMA "VA, 51246" +PUMA "VA, 51255" +PUMA "VA, 55001" +PUMA "VA, 55002" +PUMA "VA, 59301" +PUMA "VA, 59302" +PUMA "VA, 59303" +PUMA "VA, 59304" +PUMA "VA, 59305" +PUMA "VA, 59306" +PUMA "VA, 59307" +PUMA "VA, 59308" +PUMA "VA, 59309" +PUMA "VT, 00100" +PUMA "VT, 00200" +PUMA "VT, 00300" +PUMA "VT, 00400" +PUMA "WA, 10100" +PUMA "WA, 10200" +PUMA "WA, 10300" +PUMA "WA, 10400" +PUMA "WA, 10501" +PUMA "WA, 10502" +PUMA "WA, 10503" +PUMA "WA, 10504" +PUMA "WA, 10600" +PUMA "WA, 10701" +PUMA "WA, 10702" +PUMA "WA, 10703" +PUMA "WA, 10800" +PUMA "WA, 10901" +PUMA "WA, 10902" +PUMA "WA, 11000" +PUMA "WA, 11101" +PUMA "WA, 11102" +PUMA "WA, 11103" +PUMA "WA, 11104" +PUMA "WA, 11200" +PUMA "WA, 11300" +PUMA "WA, 11401" +PUMA "WA, 11402" +PUMA "WA, 11501" +PUMA "WA, 11502" +PUMA "WA, 11503" +PUMA "WA, 11504" +PUMA "WA, 11505" +PUMA "WA, 11506" +PUMA "WA, 11507" +PUMA "WA, 11601" +PUMA "WA, 11602" +PUMA "WA, 11603" +PUMA "WA, 11604" +PUMA "WA, 11605" +PUMA "WA, 11606" +PUMA "WA, 11607" +PUMA "WA, 11608" +PUMA "WA, 11609" +PUMA "WA, 11610" +PUMA "WA, 11611" +PUMA "WA, 11612" +PUMA "WA, 11613" +PUMA "WA, 11614" +PUMA "WA, 11615" +PUMA "WA, 11616" +PUMA "WA, 11701" +PUMA "WA, 11702" +PUMA "WA, 11703" +PUMA "WA, 11704" +PUMA "WA, 11705" +PUMA "WA, 11706" +PUMA "WA, 11801" +PUMA "WA, 11802" +PUMA "WA, 11900" +PUMA "WI, 00100" +PUMA "WI, 00101" +PUMA "WI, 00102" +PUMA "WI, 00103" +PUMA "WI, 00200" +PUMA "WI, 00300" +PUMA "WI, 00600" +PUMA "WI, 00700" +PUMA "WI, 00800" +PUMA "WI, 00900" +PUMA "WI, 01000" +PUMA "WI, 01001" +PUMA "WI, 01300" +PUMA "WI, 01301" +PUMA "WI, 01400" +PUMA "WI, 01401" +PUMA "WI, 01500" +PUMA "WI, 01501" +PUMA "WI, 01600" +PUMA "WI, 01601" +PUMA "WI, 02400" +PUMA "WI, 02500" +PUMA "WI, 10000" +PUMA "WI, 20000" +PUMA "WI, 30000" +PUMA "WI, 40101" +PUMA "WI, 40301" +PUMA "WI, 40701" +PUMA "WI, 41001" +PUMA "WI, 41002" +PUMA "WI, 41003" +PUMA "WI, 41004" +PUMA "WI, 41005" +PUMA "WI, 50000" +PUMA "WI, 55101" +PUMA "WI, 55102" +PUMA "WI, 55103" +PUMA "WI, 70101" +PUMA "WI, 70201" +PUMA "WI, 70301" +PUMA "WV, 00100" +PUMA "WV, 00200" +PUMA "WV, 00300" +PUMA "WV, 00400" +PUMA "WV, 00500" +PUMA "WV, 00600" +PUMA "WV, 00700" +PUMA "WV, 00800" +PUMA "WV, 00900" +PUMA "WV, 01000" +PUMA "WV, 01100" +PUMA "WV, 01200" +PUMA "WV, 01300" +PUMA "WY, 00100" +PUMA "WY, 00200" +PUMA "WY, 00300" +PUMA "WY, 00400" +PUMA "WY, 00500" +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false +Power Outage Summer ResStockArguments schedules_power_outage_period=Jul 1 5 - Jul 31 14 schedules_power_outage_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_period=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location None +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void +Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=other fuel +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_compressor_lockout_temp=-20 heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto From d01f8cfc160adeea46d3f398a11d20ad9cb8e8ca Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 7 Feb 2024 18:10:38 -0700 Subject: [PATCH 07/19] yml file for panle run --- project_national/panel_upgrades.yml | 1366 +++++++++++++++++++++++++++ 1 file changed, 1366 insertions(+) create mode 100644 project_national/panel_upgrades.yml diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml new file mode 100644 index 0000000000..f8f1bb5b91 --- /dev/null +++ b/project_national/panel_upgrades.yml @@ -0,0 +1,1366 @@ +schema_version: '0.3' +os_version: 3.7.0 +os_sha: d5269793f1 +buildstock_directory: ../ # Relative to this file or absolute +project_directory: project_national # Relative to buildstock_directory +output_directory: national_upgrades +weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip +# weather_files_path: c:/OpenStudio/BuildStock_TMY3_FIPS.zip + +sampler: + type: residential_quota + args: + n_datapoints: 5 + +workflow_generator: + type: residential_hpxml + args: + build_existing_model: + simulation_control_timestep: 15 + simulation_control_run_period_begin_month: 1 + simulation_control_run_period_begin_day_of_month: 1 + simulation_control_run_period_end_month: 12 + simulation_control_run_period_end_day_of_month: 31 + simulation_control_run_period_calendar_year: 2007 + + emissions: + - scenario_name: LRMER_MidCase_15 + type: CO2e + elec_folder: data/cambium/2022/LRMER_MidCase_15 + + utility_bills: + - scenario_name: Bills + + simulation_output_report: + timeseries_frequency: timestep + include_timeseries_total_consumptions: true + include_timeseries_fuel_consumptions: true + include_timeseries_end_use_consumptions: true + include_timeseries_emissions: true + include_timeseries_emission_fuels: true + include_timeseries_emission_end_uses: true + include_timeseries_hot_water_uses: true + include_timeseries_total_loads: true + include_timeseries_component_loads: true + include_timeseries_unmet_hours: true + include_timeseries_zone_temperatures: true + include_timeseries_airflows: true + include_timeseries_weather: true + include_timeseries_resilience: true + + reporting_measures: + - measure_dir_name: QOIReport + + server_directory_cleanup: + retain_in_idf: false + retain_schedules_csv: false + +baseline: + n_buildings_represented: 140382740 # American Community Survey 2022 5-year, B25001, contiguous US + AK + +references: + + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - &1_heating_fuel + option: Heating Fuel|Electricity + apply_logic: + - not: Heating Fuel|None + + - &2_cooling_efficiency_ducted + option: HVAC Cooling Efficiency|Ducted Heat Pump + apply_logic: &logic_ducted_hvac_no_ashp + - HVAC Has Ducts|Yes + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + + - &3_cooling_efficiency_ductless + option: HVAC Cooling Efficiency|Non-Ducted Heat Pump + apply_logic: &logic_ductless_hvac_no_mshp + - HVAC Has Ducts|No + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + + - &4_100_percent_conditioned + option: HVAC Cooling Partial Space Conditioning|100% Conditioned + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &5_cooling_setpoint_no_offset + option: Cooling Setpoint Has Offset|No + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &6_cooling_setpoint_offset_magnitude_0 + option: Cooling Setpoint Offset Magnitude|0F + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &7_cooling_setpoint_offset_period_none + option: Cooling Setpoint Offset Period|None + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &8_heating_setpoint_no_offset + option: Heating Setpoint Has Offset|No + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &9_heating_setpoint_offset_magnitude_0 + option: Heating Setpoint Offset Magnitude|0F + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &10_heating_setpoint_offset_period_none + option: Heating Setpoint Offset Period|None + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + - &11_heating_type_and_fuel_ashp + option: HVAC Heating Type And Fuel|Electricity ASHP + apply_logic: + - HVAC Has Ducts|Yes + - not: Heating Fuel|None + + - &12_heating_type_and_fuel_mshp + option: HVAC Heating Type And Fuel|Electricity MSHP + apply_logic: + - HVAC Has Ducts|No + - not: Heating Fuel|None + + #### 1.1 Electric Resistance Heating, 10 options #### + - &1_electric_resistance_heating_heating_fuel + option: Heating Fuel|Electricity + apply_logic: + - not: Heating Fuel|None + + - &2_electric_resistance_heating_heating_type_and_fuel_boiler + option: HVAC Heating Type And Fuel|Electricity Electric Boiler + apply_logic: &apply_logic_fuel_boiler + - or: + - HVAC Heating Efficiency|Fuel Boiler, 76% AFUE + - HVAC Heating Efficiency|Fuel Boiler, 80% AFUE + - HVAC Heating Efficiency|Fuel Boiler, 90% AFUE + - &3_electric_resistance_heating_heating_type_and_fuel_furnace + option: HVAC Heating Type And Fuel|Electricity Electric Furnace + apply_logic: &apply_logic_fuel_furnace + - or: + - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE + - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE + - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE + - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE + - &4_electric_resistance_heating_heating_type_and_fuel_wall_floor_furnace + option: HVAC Heating Type And Fuel|Electricity Electric Wall Furnace + apply_logic: &apply_logic_fuel_wall_floor_furnace + - or: + - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 60% AFUE + - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 68% AFUE + - &5_electric_resistance_heating_heating_type_and_fuel_shared_heating + option: HVAC Heating Type And Fuel|Electricity Shared Heating + apply_logic: + - HVAC Heating Efficiency|Shared Heating + + - &6_electric_resistance_heating_heating_eff_boiler + option: HVAC Heating Efficiency|Electric Boiler, 100% AFUE + apply_logic: *apply_logic_fuel_boiler + - &7_electric_resistance_heating_heating_eff_fuel_furnace + option: HVAC Heating Efficiency|Electric Furnace, 100% AFUE + apply_logic: *apply_logic_fuel_furnace + - &8_electric_resistance_heating_heating_eff_wall_floor_furnace + option: HVAC Heating Efficiency|Electric Wall Furnace, 100% AFUE + apply_logic: *apply_logic_fuel_wall_floor_furnace + + - &9_electric_resistance_hvac_shared_eff_shared_heating_only + option: HVAC Shared Efficiencies|Boiler Baseboards Heating Only, Electricity + apply_logic: + - HVAC Heating Efficiency|Shared Heating + - not: HVAC Cooling Efficiency|Shared Cooling + - &10_electric_resistance_hvac_shared_eff_shared_heating_cooling + option: HVAC Shared Efficiencies|Fan Coil Heating and Cooling, Electricity + apply_logic: + - HVAC Heating Efficiency|Shared Heating + - HVAC Cooling Efficiency|Shared Cooling + + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - &1_fed_min_ashp_ducted + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load # same as base option + apply_logic: + - HVAC Has Ducts|Yes + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: &costs_ashp_ducted_8-82_HSPF + # Source: Custom regression by Brennan Less. Ducted heat pump project costs were regressed on nameplate tons and HSPF, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ducted ASHP regression n=317. Implicitly includes electrical upgrades and electric backup. + - value: 3680.19 # for HSPF 8.82 + multiplier: Fixed (1) + - value: 167.64 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: &lifetime_HP 15 + + - &2_fed_min_mshp_ductless + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Max Load # federal minimum is SEER 14.3, but 14.5 is lowest SEER in baseline ResStock + apply_logic: + - HVAC Has Ducts|No + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: &costs_mshp_ductless_8-33_HSPF + # Source: Custom regression by Brennan Less. Ductless heat pump project costs were regressed on nameplate tons, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ductless MSHP n=173, HSPF median 11, range 9.3–14.2. Implicitly includes multiple zones and electrical upgrades. + # Regression results in costs that are 15–30% higher than costs from The Heat Pump Store as documented in https://redwoodenergy.net/wp-content/uploads/2021/02/Pocket-Guide-to-All-Electric-Retrofits-of-Single-Family-Homes.pdf + # LBNL data were not sufficient to include a relationship between SEER or HSPF and cost, so cost deltas for higher + # and lower HSPF were added using the relationship between HSPF and cost for ductless MSHPs in REMDB: 2.2% addition or subtraction per point + # according to how many points above or below the HSPF rating is from 10.5 (https://remdb.nrel.gov/). + - value: 2679.52 + multiplier: Fixed (1) + - value: 347.97 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: *lifetime_HP + + #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### + ##ASHP non-ducted heating## + - &fed_min_ashp_exist_backup_no_shared_ducts + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup + apply_logic: + - not: HVAC Heating Efficiency|Shared Heating + - not: HVAC Cooling Efficiency|Shared Cooling + - HVAC Has Ducts|Yes + - HVAC Heating Type|Non-Ducted Heating + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + # Set secondary heating fuel type + - &secondary_heating_type_fuel_natural_gas + option: HVAC Secondary Heating Fuel|Natural Gas + apply_logic: + - or: + - HVAC Heating Type And Fuel|Natural Gas Fuel Boiler + - HVAC Heating Type And Fuel|Natural Gas Fuel Wall/Floor Furnace + - &secondary_heating_type_fuel_propane + option: HVAC Secondary Heating Fuel|Propane + apply_logic: + - or: + - HVAC Heating Type And Fuel|Propane Fuel Boiler + - HVAC Heating Type And Fuel|Propane Fuel Wall/Floor Furnace + - &secondary_heating_type_fuel_fuel_oil + option: HVAC Secondary Heating Fuel|Fuel Oil + apply_logic: + - or: + - HVAC Heating Type And Fuel|Fuel Oil Fuel Boiler + - HVAC Heating Type And Fuel|Fuel Oil Fuel Wall/Floor Furnace + - &secondary_heating_type_fuel_other_fuel + option: HVAC Secondary Heating Fuel|Other Fuel + apply_logic: + - or: + - HVAC Heating Type And Fuel|Other Fuel Fuel Boiler + - HVAC Heating Type And Fuel|Other Fuel Fuel Wall/Floor Furnace + - &secondary_heating_type_fuel_electricity + option: HVAC Secondary Heating Fuel|Electricity + apply_logic: + - or: + - HVAC Heating Type And Fuel|Electricity Baseboard + - HVAC Heating Type And Fuel|Electricity Electric Boiler + - HVAC Heating Type And Fuel|Electricity Electric Wall Furnace + + # Set secondary fuel boiler efficiency levels + - &secondary_boiler_76 + option: HVAC Secondary Heating Efficiency|Fuel Boiler, 76% AFUE + apply_logic: + - HVAC Heating Efficiency|Fuel Boiler, 76% AFUE + - &secondary_boiler_80 + option: HVAC Secondary Heating Efficiency|Fuel Boiler, 80% AFUE + apply_logic: + - HVAC Heating Efficiency|Fuel Boiler, 80% AFUE + - &secondary_boiler_90 + option: HVAC Secondary Heating Efficiency|Fuel Boiler, 90% AFUE + apply_logic: + - HVAC Heating Efficiency|Fuel Boiler, 90% AFUE + - &secondary_ele_boiler + option: HVAC Secondary Heating Efficiency|Electric Boiler, 100% AFUE + apply_logic: + - HVAC Heating Efficiency|Electric Boiler, 100% AFUE + + # Set secondary fuel Wall/Floor Furnace efficiency levels + - &secondary_wallfloor_furnace_60 + option: HVAC Secondary Heating Efficiency|Fuel Wall/Floor Furnace, 60% AFUE + apply_logic: + - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 60% AFUE + - &secondary_wallfloor_furnace_68 + option: HVAC Secondary Heating Efficiency|Fuel Wall/Floor Furnace, 68% AFUE + apply_logic: + - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 68% AFUE + - &secondary_ele_wallfloor_furnace + option: HVAC Secondary Heating Efficiency|Electric Wall Furnace, 100% AFUE + apply_logic: + - HVAC Heating Efficiency|Electric Wall Furnace, 100% AFUE + + # Set secondary electric Wall/Floor Furnace efficiency levels + - &secondary_ele_baseboard + option: HVAC Secondary Heating Efficiency|Electric Baseboard, 100% Efficiency + apply_logic: + - HVAC Heating Efficiency|Electric Baseboard, 100% Efficiency + + ## ASHP ducted heating ## + # Natural Gas as backup + - &fed_min_ashp_exist_backup_shared_ducts_60_ng + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE NG, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE + - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_76_ng + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE NG, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE + - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_80_ng + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE NG, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE + - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_92-5_ng + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE NG, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE + - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + #Fuel Oil as backup + - &fed_min_ashp_exist_backup_shared_ducts_60_fo + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Fuel Oil, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE + - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_76_fo + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Fuel Oil, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE + - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_80_fo + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Fuel Oil, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE + - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_92-5_fo + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Fuel Oil, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE + - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + # Propane as backup + - &fed_min_ashp_exist_backup_shared_ducts_60_propane + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Propane, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE + - HVAC Heating Type And Fuel|Propane Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_76_propane + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Propane, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE + - HVAC Heating Type And Fuel|Propane Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_80_propane + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Propane, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE + - HVAC Heating Type And Fuel|Propane Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_92-5_propane + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Propane, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE + - HVAC Heating Type And Fuel|Propane Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + # Other Fuel as backup + - &fed_min_ashp_exist_backup_shared_ducts_60_of + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Other Fuel, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE + - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_76_of + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Other Fuel, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE + - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_80_of + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Other Fuel, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE + - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + - &fed_min_ashp_exist_backup_shared_ducts_92-5_of + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Other Fuel, 5F-40F switchover band + apply_logic: + - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE + - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + # Electricity as backup + - &fed_min_ashp_exist_backup_shared_ducts_electricity + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load + apply_logic: + - HVAC Heating Efficiency|Electric Furnace, 100% AFUE + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + ## MSHP non-ducted heating ## + - &fed_min_mshp_exist_backup + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Max Load + apply_logic: + - not: HVAC Heating Efficiency|Shared Heating + - not: HVAC Cooling Efficiency|Shared Cooling + - HVAC Has Ducts|No + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: *costs_mshp_ductless_8-33_HSPF + lifetime: *lifetime_HP + + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - &1_high_eff_ashp_ducted + option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, Max Load + apply_logic: + - HVAC Has Ducts|Yes + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: &costs_ashp_ducted_SEER_20_11_HSPF + # Source: Custom regression by Brennan Less. Ducted heat pump project costs were regressed on nameplate tons and HSPF, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ducted ASHP regression n=317. Implicitly includes electrical upgrades and electric backup. + - value: 10229.58 # for HSPF 11 + multiplier: Fixed (1) + - value: 167.64 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: *lifetime_HP + + - &2_high_eff_mshp_ductless + option: HVAC Heating Efficiency|MSHP, SEER 20, 11 HSPF, CCHP, Max Load + apply_logic: + - HVAC Has Ducts|No + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: &costs_mshp_ductless_SEER_20_11_HSPF + # Source: Custom regression by Brennan Less. Ductless heat pump project costs were regressed on nameplate tons, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ductless MSHP n=173, HSPF median 11, range 9.3–14.2. Implicitly includes multiple zones and electrical upgrades. + # Regression results in costs that are 15–30% higher than costs from The Heat Pump Store as documented in https://redwoodenergy.net/wp-content/uploads/2021/02/Pocket-Guide-to-All-Electric-Retrofits-of-Single-Family-Homes.pdf + # LBNL data were not sufficient to include a relationship between SEER or HSPF and cost, so cost deltas for higher + # and lower HSPF were added using the relationship between HSPF and cost for ductless MSHPs in REMDB: 2.2% addition or subtraction per point + # according to how many points above or below the HSPF rating is from 10.5 (https://remdb.nrel.gov/). + - value: 2844.81 + multiplier: Fixed (1) + - value: 369.43 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: *lifetime_HP + + #### 2.1 Electric Water Heating, 4 options #### + - &1_water_heater_fuel + option: Water Heater Fuel|Electricity + - &2_water_heater_fuel_eff_premium + option: Water Heater Efficiency|Electric Premium + apply_logic: + - or: + - Water Heater Efficiency|Fuel Oil Premium + - Water Heater Efficiency|Natural Gas Premium + - Water Heater Efficiency|Propane Premium + - &3_water_heater_fuel_eff_standard + option: Water Heater Efficiency|Electric Standard + apply_logic: + - or: + - Water Heater Efficiency|Fuel Oil Standard + - Water Heater Efficiency|Natural Gas Standard + - Water Heater Efficiency|Propane Standard + - Water Heater Efficiency|FIXME Fuel Oil Indirect + - Water Heater Efficiency|Other Fuel + - &4_water_heater_fuel_eff_tankless + option: Water Heater Efficiency|Electric Tankless + apply_logic: + - or: + - Water Heater Efficiency|Natural Gas Tankless + - Water Heater Efficiency|Propane Tankless + + #### 2.2 240V HPWH, 4 options #### + - &1_water_heater_fuel_240V_hpwh + option: Water Heater Fuel|Electricity + - &2_240V_hpwh_50_gal + option: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF + apply_logic: + - not: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF + - or: + - Bedrooms|1 + - Bedrooms|2 + - Bedrooms|3 + costs: + - value: 2712.82 # Median installed cost for 50 gal heat pump water heaters in Less et al. https://doi.org/10.20357/B7FP4D, inflation adjusted with 1.21 factor + multiplier: Fixed (1) + - &3_240V_hpwh_66_gal + option: Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF + apply_logic: + - Bedrooms|4 + costs: + - value: 3736.48 # Interpolated between 50 gal and 80 gal HPWH costs in Less et al. https://doi.org/10.20357/B7FP4D, inflation adjusted with 1.21 factor + multiplier: Fixed (1) + - &4_240V_hpwh_80_gal + option: Water Heater Efficiency|Electric Heat Pump, 80 gal, 3.45 UEF + apply_logic: + - Bedrooms|5 + costs: + - value: 4631.88 # Median installed cost for 80 gal heat pump water heaters in Less et al. https://doi.org/10.20357/B7FP4D, inflation adjusted with 1.21 factor + multiplier: Fixed (1) + + #### 2.3 120V HPWH With Shared Circuit #### + + #### 3 Electric Resistance Cooking, 1 option #### + - &electric_resistance_cooking + option: Cooking Range|Electric Resistance + apply_logic: + - or: + - Cooking Range|Gas + - Cooking Range|Propane + costs: + - value: 774 # Lowest-priced electric range and oven from wirecutter on 7/7/23, GE Model #JB645DKWW (black is same price) + # https://www.lowes.com/pd/GE-Smooth-Surface-4-Elements-5-3-cu-ft-Self-Cleaning-Freestanding-Electric-Range-White-Common-30-in-Actual-29-875-in/1000014250 + # It is $630 at big box stores as of July 2023, $774 = $630 * 1.07 sales tax + $100 delivery/install + multiplier: Fixed (1) + lifetime: 13 # from REMDB https://remdb.nrel.gov/measures?group_id=4&component_type_id=279&actionId=2204&bcId=6961 + # 17 from IEA https://www.eia.gov/analysis/studies/buildings/equipcosts/pdf/appendix-a.pdf + + #### 4 Electric Clothes Dryer, 1 option #### + - &clothes_dryer_electric + option: Clothes Dryer|Electric + apply_logic: + - or: + - Clothes Dryer|Gas + - Clothes Dryer|Propane + + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - &1_electric_pool_heaters + option: Misc Pool Heater|Electricity + apply_logic: + - or: + - Misc Pool Heater|Natural Gas + - Misc Pool Heater|Other Fuel + costs: + - value: 4590 # https://lesliespool.com/jacuzzi-127000-btu-pro-grade-electric-pool-heat-pump/85451.html + # installation $310 - varies on state and zip code between 228 and 400 USD + # tax 7% + multiplier: Fixed (1) + lifetime: 15 + - &2_electric_spa_heaters + option: Misc Hot Tub Spa|Electricity + apply_logic: + - or: + - Misc Hot Tub Spa|Natural Gas + - Misc Hot Tub Spa|Other Fuel + costs: + - value: 2760 # https://lesliespool.com/raypak-model-0018-e3t-electric-3-series-titanium-pool-spa-heater---18kw---61419-btu-hr/382735.html + # installation $310 - varies on state and zip code between 228 and 400 USD + # tax 7% + multiplier: Fixed (1) + lifetime: 15 + + #### 6 Envelope, 10 options #### + - &1_attic_insulation_IECC_CZ1A + option: Insulation Ceiling|R-30 + apply_logic: + - ASHRAE IECC Climate Zone 2004|1A + - Geometry Attic Type|Vented Attic + - or: + - Insulation Ceiling|Uninsulated + - Insulation Ceiling|R-7 + - Insulation Ceiling|R-13 + - Insulation Ceiling|R-19 + costs: + - value: 0.0482 # $/(ft^2 * Delta R-value), from original REMDB xlsx for blown cellulose (0.0154+0.019) + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.0344 https://www.bls.gov/data/inflation_calculator.htm + multiplier: Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + - value: 0.2163 # $/(ft^2), from original REMDB xlsx for blown cellulose (0.1505+0.004) + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.1545 + multiplier: Floor Area, Attic (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + option: Insulation Ceiling|R-49 + apply_logic: + - or: + - ASHRAE IECC Climate Zone 2004|2A + - ASHRAE IECC Climate Zone 2004|2B + - ASHRAE IECC Climate Zone 2004|3A + - ASHRAE IECC Climate Zone 2004|3B + - ASHRAE IECC Climate Zone 2004|3C + - Geometry Attic Type|Vented Attic + - or: + - Insulation Ceiling|Uninsulated + - Insulation Ceiling|R-7 + - Insulation Ceiling|R-13 + - Insulation Ceiling|R-19 + - Insulation Ceiling|R-30 + - Insulation Ceiling|R-38 + costs: + - value: 0.0482 # $/(ft^2 * Delta R-value), from original REMDB xlsx for blown cellulose (0.0154+0.019) + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.0344 https://www.bls.gov/data/inflation_calculator.htm + multiplier: Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + - value: 0.2163 # $/(ft^2), from original REMDB xlsx for blown cellulose (0.1505+0.004) + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.1545 + multiplier: Floor Area, Attic (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + option: Insulation Ceiling|R-60 + apply_logic: + - or: + - ASHRAE IECC Climate Zone 2004|4A + - ASHRAE IECC Climate Zone 2004|4B + - ASHRAE IECC Climate Zone 2004|4C + - ASHRAE IECC Climate Zone 2004|5A + - ASHRAE IECC Climate Zone 2004|5B + - ASHRAE IECC Climate Zone 2004|6A + - ASHRAE IECC Climate Zone 2004|6B + - ASHRAE IECC Climate Zone 2004|7A + - ASHRAE IECC Climate Zone 2004|7B + - Geometry Attic Type|Vented Attic + - or: + - Insulation Ceiling|Uninsulated + - Insulation Ceiling|R-7 + - Insulation Ceiling|R-13 + - Insulation Ceiling|R-19 + - Insulation Ceiling|R-30 + - Insulation Ceiling|R-38 + - Insulation Ceiling|R-49 + costs: + - value: 0.0482 # $/(ft^2 * Delta R-value), from original REMDB xlsx for blown cellulose (0.0154+0.019) + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.0344 https://www.bls.gov/data/inflation_calculator.htm + multiplier: Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + - value: 0.2163 # $/(ft^2), from original REMDB xlsx for blown cellulose (0.1505+0.004) + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.1545 + multiplier: Floor Area, Attic (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + # General air sealing - 30% total reduction in ACH50 for homes with greater than 10 ACH50 + # 30% is consistent with median reduction documented in https://doi.org/10.20357/B7FP4D + - &4_infiltration_30pct_reduction + option: Infiltration Reduction|30% + apply_logic: + - or: + - Infiltration|50 ACH50 + - Infiltration|40 ACH50 + - Infiltration|30 ACH50 + - Infiltration|25 ACH50 + - Infiltration|20 ACH50 + - Infiltration|18.5 ACH50 + - Infiltration|15 ACH50 + - Infiltration|11.25 ACH50 + costs: + - value: 0.53 # from LBNL data for general air sealing (https://doi.org/10.20357/B7FP4D). + # Interpolated between 20% and 40% reductions to get $0.44/ft2, + # then used 1.2052 multiplier to inflate from Jan 2019 to April 2023 https://www.bls.gov/data/inflation_calculator.htm + multiplier: Floor Area, Conditioned (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &5_ducts_category1 #improving leakage a lot, and insulation + option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 + apply_logic: + or: + - Duct Leakage and Insulation|30% Leakage to Outside, Uninsulated + - Duct Leakage and Insulation|30% Leakage to Outside, R-4 + costs: + - value: 3.08 # 2.2 $/(ft^2) is the mid-value from REMDB, 30% Leakage, Uninsulated to 10% Leakage, R-8 + # https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2145&bcId=6185 + # REMDB doesn't have the data for 30% Leakage, R-4 and 30% Leakage, R-6 to 10% Leakage, R-8 + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 2.2 + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &6_ducts_category2 #improving leakage a lot only + option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 + apply_logic: + or: + - Duct Leakage and Insulation|30% Leakage to Outside, R-8 + costs: + - value: 1.134 # 0.81 $/(ft^2) is Mid-value from REMDB https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2143&bcId=6187 + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &7_ducts_category3 #improving leakage some, and insulation + option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 + apply_logic: + or: + - Duct Leakage and Insulation|20% Leakage to Outside, Uninsulated + - Duct Leakage and Insulation|20% Leakage to Outside, R-4 + costs: + - value: 2.52 # 1.8 $/(ft^2) is Mid-value from REMDB, 20% Leakage, Uninsulated to 10% Leakage, R-8 + # https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2145&bcId=6716 + # REMDB doesn't have the data for 20% Leakage, R-4 and 20% Leakage, R-6 to 10% Leakage, R-8 + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 1.8 + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &8_ducts_category4 #improving leakage some only + option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 + apply_logic: + or: + - Duct Leakage and Insulation|20% Leakage to Outside, R-8 + costs: + - value: 0.56 # 0.4 $/(ft^2) is the Mid-value from REMDB https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2143&bcId=6718 + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &9_ducts_category5 #improving insulation only + option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 + apply_logic: + or: + - Duct Leakage and Insulation|10% Leakage to Outside, Uninsulated + - Duct Leakage and Insulation|10% Leakage to Outside, R-4 + costs: + - value: 1.96 # 1.4 $/(ft^2) Mid-value from REMDB, 10% Leakage, Uninsulated to 10% Leakage, R-8 + # https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2144&bcId=6725 + # REMDB doesn't have the data for 10% Leakage, R-4 and 10% Leakage, R-6 to 10% Leakage, R-8 + # apply inflation factor 1.4 (Jan 2010 to Apr 2023) + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + - &10_Drill_and_fill + option: Insulation Wall|Wood Stud, R-13 + apply_logic: + - Insulation Wall|Wood Stud, Uninsulated + costs: + - value: 2.70 # 2.24 is from LBNL data (https://doi.org/10.20357/B7FP4D); + # mid-value of NREL REMDB: 2.20 (https://remdb.nrel.gov/measures?group_id=12&component_type_id=184&actionId=703&bcId=2015) + #then used 1.2052 multiplier to 2.24 to inflate from Jan 2019 to April 2023 + multiplier: Wall Area, Above-Grade, Conditioned (ft^2) + lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + + +upgrades: + - upgrade_name: 1.1 Inefficient Electrification + options: + #### 1.1 Electric Resistance Heating 10 options #### + - *1_electric_resistance_heating_heating_fuel + - *2_electric_resistance_heating_heating_type_and_fuel_boiler + - *3_electric_resistance_heating_heating_type_and_fuel_furnace + - *4_electric_resistance_heating_heating_type_and_fuel_wall_floor_furnace + - *5_electric_resistance_heating_heating_type_and_fuel_shared_heating + - *6_electric_resistance_heating_heating_eff_boiler + - *7_electric_resistance_heating_heating_eff_fuel_furnace + - *8_electric_resistance_heating_heating_eff_wall_floor_furnace + - *9_electric_resistance_hvac_shared_eff_shared_heating_only + - *10_electric_resistance_hvac_shared_eff_shared_heating_cooling + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.2 BAU Electrification + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *1_fed_min_ashp_ducted + - *2_fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.3 BAU Electrification with HPWH + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *1_fed_min_ashp_ducted + - *2_fed_min_mshp_ductless + #### 2.2 240V HPWH, 4 options #### + - *1_water_heater_fuel_240V_hpwh + - *2_240V_hpwh_50_gal + - *3_240V_hpwh_66_gal + - *4_240V_hpwh_80_gal + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.4 High Efficiency Space Heating Electrification + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *1_high_eff_ashp_ducted + - *2_high_eff_mshp_ductless + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.5 High Efficiency Space Heating Electrification With HPWH + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *1_high_eff_ashp_ducted + - *2_high_eff_mshp_ductless + #### 2.2 240V HPWH, 4 options #### + - *1_water_heater_fuel_240V_hpwh + - *2_240V_hpwh_50_gal + - *3_240V_hpwh_66_gal + - *4_240V_hpwh_80_gal + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.6. Low-voltage Electrification + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *1_fed_min_ashp_ducted + - *2_fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 4 options #### ##TO DO evise it to 120V HPWH + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.7. High Efficiency and Low-voltage Electrification + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *1_high_eff_ashp_ducted + - *2_high_eff_mshp_ductless + #### 2.2 240V HPWH, 4 options #### ## TO DO revise to 120V HPWH + - *1_water_heater_fuel_240V_hpwh + - *2_240V_hpwh_50_gal + - *3_240V_hpwh_66_gal + - *4_240V_hpwh_80_gal + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 1.8 BAU Electrification with Existing Fuel Backup + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### + - *fed_min_ashp_exist_backup_no_shared_ducts + - *secondary_heating_type_fuel_natural_gas + - *secondary_heating_type_fuel_propane + - *secondary_heating_type_fuel_fuel_oil + - *secondary_heating_type_fuel_other_fuel + - *secondary_heating_type_fuel_electricity + - *secondary_boiler_76 + - *secondary_boiler_80 + - *secondary_boiler_90 + - *secondary_ele_boiler + - *secondary_wallfloor_furnace_60 + - *secondary_wallfloor_furnace_68 + - *secondary_ele_wallfloor_furnace + - *secondary_ele_baseboard + - *fed_min_ashp_exist_backup_shared_ducts_60_ng + - *fed_min_ashp_exist_backup_shared_ducts_76_ng + - *fed_min_ashp_exist_backup_shared_ducts_80_ng + - *fed_min_ashp_exist_backup_shared_ducts_92-5_ng + - *fed_min_ashp_exist_backup_shared_ducts_60_fo + - *fed_min_ashp_exist_backup_shared_ducts_76_fo + - *fed_min_ashp_exist_backup_shared_ducts_80_fo + - *fed_min_ashp_exist_backup_shared_ducts_92-5_fo + - *fed_min_ashp_exist_backup_shared_ducts_60_propane + - *fed_min_ashp_exist_backup_shared_ducts_76_propane + - *fed_min_ashp_exist_backup_shared_ducts_80_propane + - *fed_min_ashp_exist_backup_shared_ducts_92-5_propane + - *fed_min_ashp_exist_backup_shared_ducts_60_of + - *fed_min_ashp_exist_backup_shared_ducts_76_of + - *fed_min_ashp_exist_backup_shared_ducts_80_of + - *fed_min_ashp_exist_backup_shared_ducts_92-5_of + - *fed_min_ashp_exist_backup_shared_ducts_electricity + - *fed_min_mshp_exist_backup + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + + - upgrade_name: 2.1. BAU Electrification with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *1_fed_min_ashp_ducted + - *2_fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + + - upgrade_name: 2.2 BAU Electrification with HPWH with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *1_fed_min_ashp_ducted + - *2_fed_min_mshp_ductless + #### 2.2 240V HPWH, 4 options #### + - *1_water_heater_fuel_240V_hpwh + - *2_240V_hpwh_50_gal + - *3_240V_hpwh_66_gal + - *4_240V_hpwh_80_gal + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + + - upgrade_name: 2.3 High Efficiency Space Heating Electrification with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *1_high_eff_ashp_ducted + - *2_high_eff_mshp_ductless + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + + - upgrade_name: 2.4 High Efficiency Space Heating Electrification With HPWH with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *1_high_eff_ashp_ducted + - *2_high_eff_mshp_ductless + #### 2.2 240V HPWH, 4 options #### + - *1_water_heater_fuel_240V_hpwh + - *2_240V_hpwh_50_gal + - *3_240V_hpwh_66_gal + - *4_240V_hpwh_80_gal + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + + - upgrade_name: 2.5 Low-voltage Electrification with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *1_fed_min_ashp_ducted + - *2_fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 4 options #### ##TO DO evise it to 120V HPWH + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + + - upgrade_name: 2.6 High Efficiency and Low-voltage Electrification with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *1_high_eff_ashp_ducted + - *2_high_eff_mshp_ductless + #### 2.2 240V HPWH, 4 options #### ## TO DO revise to 120V HPWH + - *1_water_heater_fuel_240V_hpwh + - *2_240V_hpwh_50_gal + - *3_240V_hpwh_66_gal + - *4_240V_hpwh_80_gal + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + + - upgrade_name: 2.7 BAU Electrification with Existing Fuel Backup with Envelope + options: + #### 1.0 Common Options For Heat Pump, 12 options #### + - *1_heating_fuel + - *2_cooling_efficiency_ducted + - *3_cooling_efficiency_ductless + - *4_100_percent_conditioned + - *5_cooling_setpoint_no_offset + - *6_cooling_setpoint_offset_magnitude_0 + - *7_cooling_setpoint_offset_period_none + - *8_heating_setpoint_no_offset + - *9_heating_setpoint_offset_magnitude_0 + - *10_heating_setpoint_offset_period_none + - *11_heating_type_and_fuel_ashp + - *12_heating_type_and_fuel_mshp + #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### + - *fed_min_ashp_exist_backup_no_shared_ducts + - *secondary_heating_type_fuel_natural_gas + - *secondary_heating_type_fuel_propane + - *secondary_heating_type_fuel_fuel_oil + - *secondary_heating_type_fuel_other_fuel + - *secondary_heating_type_fuel_electricity + - *secondary_boiler_76 + - *secondary_boiler_80 + - *secondary_boiler_90 + - *secondary_ele_boiler + - *secondary_wallfloor_furnace_60 + - *secondary_wallfloor_furnace_68 + - *secondary_ele_wallfloor_furnace + - *secondary_ele_baseboard + - *fed_min_ashp_exist_backup_shared_ducts_60_ng + - *fed_min_ashp_exist_backup_shared_ducts_76_ng + - *fed_min_ashp_exist_backup_shared_ducts_80_ng + - *fed_min_ashp_exist_backup_shared_ducts_92-5_ng + - *fed_min_ashp_exist_backup_shared_ducts_60_fo + - *fed_min_ashp_exist_backup_shared_ducts_76_fo + - *fed_min_ashp_exist_backup_shared_ducts_80_fo + - *fed_min_ashp_exist_backup_shared_ducts_92-5_fo + - *fed_min_ashp_exist_backup_shared_ducts_60_propane + - *fed_min_ashp_exist_backup_shared_ducts_76_propane + - *fed_min_ashp_exist_backup_shared_ducts_80_propane + - *fed_min_ashp_exist_backup_shared_ducts_92-5_propane + - *fed_min_ashp_exist_backup_shared_ducts_60_of + - *fed_min_ashp_exist_backup_shared_ducts_76_of + - *fed_min_ashp_exist_backup_shared_ducts_80_of + - *fed_min_ashp_exist_backup_shared_ducts_92-5_of + - *fed_min_ashp_exist_backup_shared_ducts_electricity + - *fed_min_mshp_exist_backup + #### 2.1 Electric Water Heating, 4 options #### + - *1_water_heater_fuel + - *2_water_heater_fuel_eff_premium + - *3_water_heater_fuel_eff_standard + - *4_water_heater_fuel_eff_tankless + #### 3 Electric Resistance Cooking, 1 option #### + - *electric_resistance_cooking + #### 4 Electric Clothes Dryer, 1 options #### + - *clothes_dryer_electric + #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### + - *1_electric_pool_heaters + - *2_electric_spa_heaters + #### 6 Envelope, 10 options #### + - *1_attic_insulation_IECC_CZ1A + - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - *4_infiltration_30pct_reduction + - *5_ducts_category1 + - *7_ducts_category3 + - *8_ducts_category4 + - *9_ducts_category5 + - *10_Drill_and_fill + +eagle: + n_jobs: 3 + minutes_per_sim: 5 + account: + postprocessing: + time: 20 + n_workers: 1 + sampling: + time: 10 From 77e9ac6255b0928ba19e9a189825e2eaa4aad5ae Mon Sep 17 00:00:00 2001 From: Yingli Date: Mon, 12 Feb 2024 16:44:29 -0700 Subject: [PATCH 08/19] hp backup sizing --- .../Clothes Dryer Usage Level.tsv | 4 +- .../Clothes Washer Usage Level.tsv | 4 +- .../Cooking Range Usage Level.tsv | 4 +- .../Dishwasher Usage Level.tsv | 4 +- project_national/panel_upgrades.yml | 46 +- .../.github/workflows/config.yml | 64 +- resources/hpxml-measures/.gitignore | 3 +- .../BuildResidentialHPXML/README.md | 346 +- .../BuildResidentialHPXML/measure.rb | 510 +- .../BuildResidentialHPXML/measure.xml | 455 +- .../tests/test_build_residential_hpxml.rb | 75 +- .../BuildResidentialScheduleFile/measure.rb | 16 +- .../BuildResidentialScheduleFile/measure.xml | 8 +- .../resources/README.md | 2 +- .../clothes_dryer_consumption_dist.csv | 100 +- .../clothes_washer_consumption_dist.csv | 95 +- .../resources/cooking_consumption_dist.csv | 70 +- .../resources/dishwasher_consumption_dist.csv | 57 +- .../resources/schedules.rb | 25 +- .../test_build_residential_schedule_file.rb | 277 +- resources/hpxml-measures/Changelog.md | 27 + .../HPXMLtoOpenStudio/README.md | 2 +- .../HPXMLtoOpenStudio/measure.rb | 46 +- .../HPXMLtoOpenStudio/measure.xml | 106 +- .../HPXMLtoOpenStudio/resources/constants.rb | 16 + .../resources/constructions.rb | 395 +- .../resources/hotwater_appliances.rb | 36 +- .../HPXMLtoOpenStudio/resources/hpxml.rb | 226 +- .../resources/hpxml_defaults.rb | 308 +- .../resources/hpxml_schema/HPXML.xsd | 48 +- .../hpxml_schematron/EPvalidator.xml | 409 +- .../HPXMLtoOpenStudio/resources/hvac.rb | 101 +- .../resources/hvac_sizing.rb | 1035 +- .../HPXMLtoOpenStudio/resources/lighting.rb | 4 +- .../HPXMLtoOpenStudio/resources/materials.rb | 10 +- .../resources/meta_measure.rb | 1 + .../resources/minitest_helper.rb | 1 + .../HPXMLtoOpenStudio/resources/schedules.rb | 115 +- .../resources/unit_conversions.rb | 3 + .../resources/waterheater.rb | 8 +- .../HPXMLtoOpenStudio/resources/weather.rb | 2 + .../resources/xmlvalidator.rb | 8 +- .../HPXMLtoOpenStudio/tests/test_defaults.rb | 254 +- .../HPXMLtoOpenStudio/tests/test_enclosure.rb | 60 +- .../HPXMLtoOpenStudio/tests/test_hvac.rb | 32 + .../tests/test_hvac_sizing.rb | 154 +- .../HPXMLtoOpenStudio/tests/test_schedules.rb | 419 +- .../tests/test_simcontrols.rb | 6 +- .../tests/test_validation.rb | 130 +- .../ReportSimulationOutput/measure.rb | 51 +- .../ReportSimulationOutput/measure.xml | 8 +- .../tests/test_report_sim_output.rb | 10 +- .../ReportUtilityBills/measure.rb | 9 +- .../ReportUtilityBills/measure.xml | 8 +- .../tests/test_report_utility_bills.rb | 12 +- .../docs/source/workflow_inputs.rst | 2709 +- resources/hpxml-measures/tasks.rb | 350 +- .../hpxml-measures/workflow/hpxml_inputs.json | 193 +- .../hpxml-measures/workflow/run_simulation.rb | 2 +- .../sample_files/base-appliances-coal.xml | 1 - ...e-appliances-dehumidifier-ief-portable.xml | 1 - ...appliances-dehumidifier-ief-whole-home.xml | 1 - .../base-appliances-dehumidifier-multiple.xml | 1 - .../base-appliances-dehumidifier.xml | 1 - .../sample_files/base-appliances-gas.xml | 1 - .../sample_files/base-appliances-modified.xml | 1 - .../sample_files/base-appliances-none.xml | 1 - .../sample_files/base-appliances-oil.xml | 1 - .../sample_files/base-appliances-propane.xml | 1 - .../sample_files/base-appliances-wood.xml | 1 - .../sample_files/base-atticroof-cathedral.xml | 1 - .../base-atticroof-conditioned.xml | 1 - .../sample_files/base-atticroof-flat.xml | 1 - .../base-atticroof-radiant-barrier.xml | 2 + ...base-atticroof-unvented-insulated-roof.xml | 1 - .../sample_files/base-atticroof-vented.xml | 1 - .../sample_files/base-battery-scheduled.xml | 1 - .../workflow/sample_files/base-battery.xml | 1 - ...t-adjacent-to-multifamily-buffer-space.xml | 1 + ...-bldgtype-mf-unit-adjacent-to-multiple.xml | 1 + ...mf-unit-adjacent-to-non-freezing-space.xml | 1 + ...mf-unit-adjacent-to-other-heated-space.xml | 1 + ...mf-unit-adjacent-to-other-housing-unit.xml | 1 + ...f-unit-infil-compartmentalization-test.xml | 1 + .../base-bldgtype-mf-unit-residents-1.xml | 1 + ...f-unit-shared-boiler-chiller-baseboard.xml | 1 + ...-shared-boiler-chiller-fan-coil-ducted.xml | 1 + ...mf-unit-shared-boiler-chiller-fan-coil.xml | 1 + ...ed-boiler-chiller-water-loop-heat-pump.xml | 1 + ...ler-cooling-tower-water-loop-heat-pump.xml | 1 + ...e-mf-unit-shared-boiler-only-baseboard.xml | 1 + ...nit-shared-boiler-only-fan-coil-ducted.xml | 1 + ...f-unit-shared-boiler-only-fan-coil-eae.xml | 1 + ...ed-boiler-only-fan-coil-fireplace-elec.xml | 1 + ...pe-mf-unit-shared-boiler-only-fan-coil.xml | 1 + ...hared-boiler-only-water-loop-heat-pump.xml | 1 + ...-mf-unit-shared-chiller-only-baseboard.xml | 1 + ...it-shared-chiller-only-fan-coil-ducted.xml | 1 + ...e-mf-unit-shared-chiller-only-fan-coil.xml | 1 + ...ared-chiller-only-water-loop-heat-pump.xml | 1 + ...ooling-tower-only-water-loop-heat-pump.xml | 1 + ...base-bldgtype-mf-unit-shared-generator.xml | 1 + ...ed-ground-loop-ground-to-air-heat-pump.xml | 1 + ...ed-laundry-room-multiple-water-heaters.xml | 1 + ...e-bldgtype-mf-unit-shared-laundry-room.xml | 1 + ...gtype-mf-unit-shared-mechvent-multiple.xml | 1 + ...f-unit-shared-mechvent-preconditioning.xml | 1 + .../base-bldgtype-mf-unit-shared-mechvent.xml | 1 + .../base-bldgtype-mf-unit-shared-pv.xml | 1 + ...ype-mf-unit-shared-water-heater-recirc.xml | 1 + ...e-bldgtype-mf-unit-shared-water-heater.xml | 1 + .../sample_files/base-bldgtype-mf-unit.xml | 1 + .../base-bldgtype-sfa-unit-2stories.xml | 2 +- ...-bldgtype-sfa-unit-atticroof-cathedral.xml | 2 +- ...a-unit-infil-compartmentalization-test.xml | 2 +- .../sample_files/base-bldgtype-sfa-unit.xml | 2 +- .../base-dhw-combi-tankless-outside.xml | 1 - .../sample_files/base-dhw-combi-tankless.xml | 1 - .../base-dhw-desuperheater-2-speed.xml | 1 - .../base-dhw-desuperheater-gshp.xml | 1 - .../base-dhw-desuperheater-hpwh.xml | 1 - .../base-dhw-desuperheater-tankless.xml | 1 - .../base-dhw-desuperheater-var-speed.xml | 1 - .../sample_files/base-dhw-desuperheater.xml | 1 - .../workflow/sample_files/base-dhw-dwhr.xml | 1 - .../base-dhw-indirect-detailed-setpoints.xml | 1 - .../sample_files/base-dhw-indirect-dse.xml | 1 - .../base-dhw-indirect-outside.xml | 1 - .../base-dhw-indirect-standbyloss.xml | 1 - .../base-dhw-indirect-with-solar-fraction.xml | 1 - .../sample_files/base-dhw-indirect.xml | 1 - .../sample_files/base-dhw-jacket-electric.xml | 1 - .../sample_files/base-dhw-jacket-gas.xml | 1 - .../sample_files/base-dhw-jacket-hpwh.xml | 1 - .../sample_files/base-dhw-jacket-indirect.xml | 1 - .../base-dhw-low-flow-fixtures.xml | 1 - .../sample_files/base-dhw-multiple.xml | 1 - .../workflow/sample_files/base-dhw-none.xml | 1 - .../sample_files/base-dhw-recirc-demand.xml | 1 - .../sample_files/base-dhw-recirc-manual.xml | 1 - .../base-dhw-recirc-nocontrol.xml | 1 - .../base-dhw-recirc-temperature.xml | 1 - .../sample_files/base-dhw-recirc-timer.xml | 1 - .../base-dhw-solar-direct-evacuated-tube.xml | 1 - .../base-dhw-solar-direct-flat-plate.xml | 1 - .../base-dhw-solar-direct-ics.xml | 1 - .../sample_files/base-dhw-solar-fraction.xml | 1 - .../base-dhw-solar-indirect-flat-plate.xml | 1 - ...base-dhw-solar-thermosyphon-flat-plate.xml | 1 - .../sample_files/base-dhw-tank-coal.xml | 1 - .../base-dhw-tank-detailed-setpoints.xml | 1 - .../sample_files/base-dhw-tank-elec-uef.xml | 1 - .../base-dhw-tank-gas-outside.xml | 1 - .../base-dhw-tank-gas-uef-fhr.xml | 1 - .../sample_files/base-dhw-tank-gas-uef.xml | 1 - .../sample_files/base-dhw-tank-gas.xml | 1 - ...-dhw-tank-heat-pump-detailed-schedules.xml | 1 - ...eat-pump-operating-mode-heat-pump-only.xml | 1 - .../base-dhw-tank-heat-pump-outside.xml | 1 - .../base-dhw-tank-heat-pump-uef.xml | 1 - ...dhw-tank-heat-pump-with-solar-fraction.xml | 1 - .../base-dhw-tank-heat-pump-with-solar.xml | 1 - .../sample_files/base-dhw-tank-heat-pump.xml | 1 - ...ratified-detailed-occupancy-stochastic.xml | 1 - .../base-dhw-tank-model-type-stratified.xml | 1 - .../sample_files/base-dhw-tank-oil.xml | 1 - .../sample_files/base-dhw-tank-wood.xml | 1 - .../base-dhw-tankless-detailed-setpoints.xml | 1 - .../base-dhw-tankless-electric-outside.xml | 1 - .../base-dhw-tankless-electric-uef.xml | 1 - .../base-dhw-tankless-electric.xml | 1 - .../base-dhw-tankless-gas-uef.xml | 1 - ...e-dhw-tankless-gas-with-solar-fraction.xml | 1 - .../base-dhw-tankless-gas-with-solar.xml | 1 - .../sample_files/base-dhw-tankless-gas.xml | 1 - .../base-dhw-tankless-propane.xml | 1 - .../base-enclosure-2stories-garage.xml | 1 - .../sample_files/base-enclosure-2stories.xml | 1 - .../sample_files/base-enclosure-beds-1.xml | 1 - .../sample_files/base-enclosure-beds-2.xml | 1 - .../sample_files/base-enclosure-beds-4.xml | 1 - .../sample_files/base-enclosure-beds-5.xml | 1 - .../base-enclosure-ceilingtypes.xml | 1 - .../base-enclosure-floortypes.xml | 1 - .../sample_files/base-enclosure-garage.xml | 1 - ...ase-enclosure-infil-ach-house-pressure.xml | 1 - ...ase-enclosure-infil-cfm-house-pressure.xml | 1 - .../base-enclosure-infil-cfm50.xml | 1 - .../sample_files/base-enclosure-infil-ela.xml | 1 - .../base-enclosure-infil-flue.xml | 1 - .../base-enclosure-infil-natural-ach.xml | 1 - .../base-enclosure-infil-natural-cfm.xml | 1 - .../base-enclosure-orientations.xml | 1 - .../sample_files/base-enclosure-overhangs.xml | 1 - ...nclosure-skylights-physical-properties.xml | 1 - .../base-enclosure-skylights-shading.xml | 1 - .../base-enclosure-skylights-storms.xml | 1 - .../sample_files/base-enclosure-skylights.xml | 1 - .../base-enclosure-split-level.xml | 1 - .../base-enclosure-thermal-mass.xml | 1 - .../sample_files/base-enclosure-walltypes.xml | 1 - ...ndows-natural-ventilation-availability.xml | 1 - .../base-enclosure-windows-none.xml | 1 - ...-enclosure-windows-physical-properties.xml | 1 - ...base-enclosure-windows-shading-seasons.xml | 1 - .../base-enclosure-windows-shading.xml | 1 - .../base-enclosure-windows-storms.xml | 1 - .../sample_files/base-foundation-ambient.xml | 1 - .../base-foundation-basement-garage.xml | 1 - .../base-foundation-belly-wing-no-skirt.xml | 1 - .../base-foundation-belly-wing-skirt.xml | 1 - .../sample_files/base-foundation-complex.xml | 1 - ...ditioned-basement-slab-insulation-full.xml | 1 - ...n-conditioned-basement-slab-insulation.xml | 1 - ...n-conditioned-basement-wall-insulation.xml | 1 - ...base-foundation-conditioned-crawlspace.xml | 1 - .../sample_files/base-foundation-multiple.xml | 1 - .../sample_files/base-foundation-slab.xml | 1 - ...ion-unconditioned-basement-above-grade.xml | 1 - ...tion-unconditioned-basement-assembly-r.xml | 1 - ...unconditioned-basement-wall-insulation.xml | 1 - ...base-foundation-unconditioned-basement.xml | 1 - .../base-foundation-unvented-crawlspace.xml | 1 - ...undation-vented-crawlspace-above-grade.xml | 1 - .../base-foundation-vented-crawlspace.xml | 1 - .../base-foundation-walkout-basement.xml | 1 - ...-to-air-heat-pump-1-speed-cooling-only.xml | 1 - ...heat-pump-1-speed-heating-capacity-17f.xml | 1 - ...-to-air-heat-pump-1-speed-heating-only.xml | 1 - ...heat-pump-1-speed-lockout-temperatures.xml | 1 - ...r-to-air-heat-pump-1-speed-seer2-hspf2.xml | 1 - ...base-hvac-air-to-air-heat-pump-1-speed.xml | 1 - ...base-hvac-air-to-air-heat-pump-2-speed.xml | 1 - ...p-var-speed-backup-boiler-hvac-seasons.xml | 1 - ...d-backup-boiler-switchover-temperature.xml | 1 - ...-air-heat-pump-var-speed-backup-boiler.xml | 1 - ...air-heat-pump-var-speed-backup-furnace.xml | 1 - ...etailed-performance-other-temperatures.xml | 1 - ...at-pump-var-speed-detailed-performance.xml | 1 - ...se-hvac-air-to-air-heat-pump-var-speed.xml | 1 - .../base-hvac-autosize-sizing-controls.xml | 1 - .../sample_files/base-hvac-autosize.xml | 1 - .../base-hvac-boiler-coal-only.xml | 1 - .../base-hvac-boiler-elec-only.xml | 1 - ...ase-hvac-boiler-gas-central-ac-1-speed.xml | 1 - .../base-hvac-boiler-gas-only-pilot.xml | 1 - .../base-hvac-boiler-gas-only.xml | 1 - .../base-hvac-boiler-oil-only.xml | 1 - .../base-hvac-boiler-propane-only.xml | 1 - .../base-hvac-boiler-wood-only.xml | 1 - ...ase-hvac-central-ac-only-1-speed-seer2.xml | 1 - .../base-hvac-central-ac-only-1-speed.xml | 1 - .../base-hvac-central-ac-only-2-speed.xml | 1 - ...ac-only-var-speed-detailed-performance.xml | 1 - .../base-hvac-central-ac-only-var-speed.xml | 1 - ...l-ac-plus-air-to-air-heat-pump-heating.xml | 1 - .../workflow/sample_files/base-hvac-dse.xml | 1 - ...heat-pump-1-speed-lockout-temperatures.xml | 1 - ...dual-fuel-air-to-air-heat-pump-1-speed.xml | 1 - ...dual-fuel-air-to-air-heat-pump-2-speed.xml | 1 - ...al-fuel-air-to-air-heat-pump-var-speed.xml | 1 - ...-dual-fuel-mini-split-heat-pump-ducted.xml | 1 - .../base-hvac-ducts-area-fractions.xml | 1 - .../base-hvac-ducts-area-multipliers.xml | 1 - .../sample_files/base-hvac-ducts-buried.xml | 1 - .../sample_files/base-hvac-ducts-defaults.xml | 1 - .../base-hvac-ducts-effective-rvalue.xml | 1 - .../base-hvac-ducts-leakage-cfm50.xml | 1 - .../base-hvac-ducts-leakage-percent.xml | 1 - .../base-hvac-elec-resistance-only.xml | 1 - .../base-hvac-evap-cooler-furnace-gas.xml | 1 - .../base-hvac-evap-cooler-only-ducted.xml | 1 - .../base-hvac-evap-cooler-only.xml | 1 - .../base-hvac-fireplace-wood-only.xml | 1 - .../base-hvac-floor-furnace-propane-only.xml | 1 - .../base-hvac-furnace-coal-only.xml | 1 - ...e-hvac-furnace-elec-central-ac-1-speed.xml | 1 - .../base-hvac-furnace-elec-only.xml | 1 - ...se-hvac-furnace-gas-central-ac-2-speed.xml | 1 - ...-hvac-furnace-gas-central-ac-var-speed.xml | 1 - ...ac-furnace-gas-only-detailed-setpoints.xml | 1 - .../base-hvac-furnace-gas-only-pilot.xml | 1 - .../base-hvac-furnace-gas-only.xml | 1 - .../base-hvac-furnace-gas-room-ac.xml | 1 - .../base-hvac-furnace-oil-only.xml | 1 - .../base-hvac-furnace-propane-only.xml | 1 - .../base-hvac-furnace-wood-only.xml | 1 - .../sample_files/base-hvac-furnace-x3-dse.xml | 1 - ...c-ground-to-air-heat-pump-cooling-only.xml | 1 - ...c-ground-to-air-heat-pump-heating-only.xml | 1 - .../base-hvac-ground-to-air-heat-pump.xml | 1 - ...l-quality-air-to-air-heat-pump-1-speed.xml | 1 - ...l-quality-air-to-air-heat-pump-2-speed.xml | 1 - ...at-pump-var-speed-detailed-performance.xml | 1 - ...quality-air-to-air-heat-pump-var-speed.xml | 1 - ...quality-furnace-gas-central-ac-1-speed.xml | 1 - ...quality-furnace-gas-central-ac-2-speed.xml | 1 - ...ality-furnace-gas-central-ac-var-speed.xml | 1 - ...-hvac-install-quality-furnace-gas-only.xml | 1 - ...nstall-quality-ground-to-air-heat-pump.xml | 1 - ...mini-split-air-conditioner-only-ducted.xml | 1 - ...ll-quality-mini-split-heat-pump-ducted.xml | 1 - ...mini-split-air-conditioner-only-ducted.xml | 1 - ...ner-only-ductless-detailed-performance.xml | 1 - ...ni-split-air-conditioner-only-ductless.xml | 1 - ...ni-split-heat-pump-ducted-cooling-only.xml | 1 - ...-heat-pump-ducted-detailed-performance.xml | 1 - ...ni-split-heat-pump-ducted-heating-only.xml | 1 - .../base-hvac-mini-split-heat-pump-ducted.xml | 1 - ...it-heat-pump-ductless-backup-baseboard.xml | 1 - ...ductless-backup-furnace-ducts-defaults.xml | 1 - ...plit-heat-pump-ductless-backup-furnace.xml | 1 - ...-split-heat-pump-ductless-backup-stove.xml | 1 - ...eat-pump-ductless-detailed-performance.xml | 1 - ...eat-pump-ductless-heating-capacity-17f.xml | 1 - ...ase-hvac-mini-split-heat-pump-ductless.xml | 1 - .../sample_files/base-hvac-multiple.xml | 1 - .../workflow/sample_files/base-hvac-none.xml | 1 - ...ase-hvac-ptac-with-heating-electricity.xml | 1 - ...ase-hvac-ptac-with-heating-natural-gas.xml | 1 - .../workflow/sample_files/base-hvac-ptac.xml | 1 - .../base-hvac-pthp-heating-capacity-17f.xml | 1 - .../workflow/sample_files/base-hvac-pthp.xml | 1 - .../base-hvac-room-ac-only-33percent.xml | 1 - .../base-hvac-room-ac-only-ceer.xml | 1 - ...e-hvac-room-ac-only-detailed-setpoints.xml | 1 - .../sample_files/base-hvac-room-ac-only.xml | 1 - .../base-hvac-room-ac-with-heating.xml | 1 - .../base-hvac-room-ac-with-reverse-cycle.xml | 1 - .../sample_files/base-hvac-seasons.xml | 1 - .../base-hvac-setpoints-daily-schedules.xml | 1 - .../base-hvac-setpoints-daily-setbacks.xml | 1 - .../sample_files/base-hvac-setpoints.xml | 1 - .../base-hvac-space-heater-gas-only.xml | 1 - .../sample_files/base-hvac-stove-oil-only.xml | 1 - .../base-hvac-stove-wood-pellets-only.xml | 1 - .../sample_files/base-hvac-undersized.xml | 1 - .../base-hvac-wall-furnace-elec-only.xml | 1 - .../base-lighting-ceiling-fans.xml | 1 - .../sample_files/base-lighting-holiday.xml | 1 - .../base-lighting-kwh-per-year.xml | 1 - .../sample_files/base-lighting-mixed.xml | 1 - .../base-lighting-none-ceiling-fans.xml | 1 - .../sample_files/base-lighting-none.xml | 1 - .../sample_files/base-location-AMY-2012.xml | 1 - .../base-location-baltimore-md.xml | 1 - .../base-location-capetown-zaf.xml | 1 - .../sample_files/base-location-dallas-tx.xml | 1 - .../sample_files/base-location-duluth-mn.xml | 1 - .../sample_files/base-location-helena-mt.xml | 1 - .../base-location-honolulu-hi.xml | 1 - .../sample_files/base-location-miami-fl.xml | 1 - .../sample_files/base-location-phoenix-az.xml | 1 - .../base-location-portland-or.xml | 1 - .../sample_files/base-mechvent-balanced.xml | 1 - .../base-mechvent-bath-kitchen-fans.xml | 1 - ...se-mechvent-cfis-airflow-fraction-zero.xml | 1 - .../sample_files/base-mechvent-cfis-dse.xml | 1 - ...-mechvent-cfis-evap-cooler-only-ducted.xml | 1 - ...mechvent-cfis-supplemental-fan-exhaust.xml | 1 - ...-mechvent-cfis-supplemental-fan-supply.xml | 1 - .../sample_files/base-mechvent-cfis.xml | 1 - .../base-mechvent-erv-atre-asre.xml | 1 - .../sample_files/base-mechvent-erv.xml | 1 - .../base-mechvent-exhaust-rated-flow-rate.xml | 1 - .../sample_files/base-mechvent-exhaust.xml | 1 - .../sample_files/base-mechvent-hrv-asre.xml | 1 - .../sample_files/base-mechvent-hrv.xml | 1 - .../sample_files/base-mechvent-multiple.xml | 1 - .../sample_files/base-mechvent-supply.xml | 1 - .../base-mechvent-whole-house-fan.xml | 1 - .../base-misc-additional-properties.xml | 1 - .../base-misc-bills-pv-detailed-only.xml | 1 - .../sample_files/base-misc-bills-pv-mixed.xml | 1 - .../sample_files/base-misc-bills-pv.xml | 1 - .../workflow/sample_files/base-misc-bills.xml | 1 - .../sample_files/base-misc-emissions.xml | 1 - ...base-misc-generators-battery-scheduled.xml | 1 - .../base-misc-generators-battery.xml | 1 - .../sample_files/base-misc-generators.xml | 1 - .../base-misc-ground-conductivity.xml | 7 +- .../base-misc-loads-large-uncommon.xml | 1 - .../base-misc-loads-large-uncommon2.xml | 1 - .../sample_files/base-misc-loads-none.xml | 1 - ...-neighbor-shading-bldgtype-multifamily.xml | 1 + .../base-misc-neighbor-shading.xml | 1 - .../base-misc-shielding-of-home.xml | 1 - .../base-misc-unit-multiplier.xml | 1 - .../base-misc-usage-multiplier.xml | 1 - .../sample_files/base-multiple-mf-units.xml | 2755 -- .../base-multiple-sfd-buildings.xml | 1602 - .../sample_files/base-pv-battery-ah.xml | 1 - .../sample_files/base-pv-battery-garage.xml | 1 - .../base-pv-battery-round-trip-efficiency.xml | 1 - .../base-pv-battery-scheduled.xml | 1 - .../workflow/sample_files/base-pv-battery.xml | 1 - .../base-pv-generators-battery-scheduled.xml | 1 - .../base-pv-generators-battery.xml | 1 - .../sample_files/base-pv-generators.xml | 1 - .../workflow/sample_files/base-pv.xml | 1 - .../base-residents-0-runperiod-1-month.xml | 1 - .../sample_files/base-residents-0.xml | 1 - ...-residents-1-misc-loads-large-uncommon.xml | 1 - ...residents-1-misc-loads-large-uncommon2.xml | 1 - .../sample_files/base-residents-1.xml | 1 - .../sample_files/base-residents-5.xml | 1 - .../base-schedules-detailed-all-10-mins.xml | 1 - ...-detailed-mixed-timesteps-power-outage.xml | 1 - ...ase-schedules-detailed-mixed-timesteps.xml | 1 - ...-detailed-occupancy-stochastic-10-mins.xml | 1 - ...iled-occupancy-stochastic-power-outage.xml | 1 - ...-detailed-occupancy-stochastic-vacancy.xml | 1 - ...chedules-detailed-occupancy-stochastic.xml | 1 - ...les-detailed-setpoints-daily-schedules.xml | 1 - ...ules-detailed-setpoints-daily-setbacks.xml | 1 - .../base-schedules-detailed-setpoints.xml | 1 - .../base-schedules-simple-power-outage.xml | 1 - .../base-schedules-simple-vacancy.xml | 1 - .../sample_files/base-schedules-simple.xml | 1 - .../base-simcontrol-calendar-year-custom.xml | 1 - ...base-simcontrol-daylight-saving-custom.xml | 1 - ...se-simcontrol-daylight-saving-disabled.xml | 1 - .../base-simcontrol-runperiod-1-month.xml | 62 +- ...rol-temperature-capacitance-multiplier.xml | 1 - ...p-10-mins-occupancy-stochastic-10-mins.xml | 1 - ...p-10-mins-occupancy-stochastic-60-mins.xml | 1 - .../base-simcontrol-timestep-10-mins.xml | 1 - .../base-simcontrol-timestep-30-mins.xml | 1 - .../workflow/sample_files/base.xml | 1 - .../tests/ASHRAE_Standard_140/L100AC.xml | 2 - .../tests/ASHRAE_Standard_140/L100AL.xml | 2 - .../tests/ASHRAE_Standard_140/L110AC.xml | 2 - .../tests/ASHRAE_Standard_140/L110AL.xml | 2 - .../tests/ASHRAE_Standard_140/L120AC.xml | 2 - .../tests/ASHRAE_Standard_140/L120AL.xml | 2 - .../tests/ASHRAE_Standard_140/L130AC.xml | 2 - .../tests/ASHRAE_Standard_140/L130AL.xml | 2 - .../tests/ASHRAE_Standard_140/L140AC.xml | 2 - .../tests/ASHRAE_Standard_140/L140AL.xml | 2 - .../tests/ASHRAE_Standard_140/L150AC.xml | 2 - .../tests/ASHRAE_Standard_140/L150AL.xml | 2 - .../tests/ASHRAE_Standard_140/L155AC.xml | 2 - .../tests/ASHRAE_Standard_140/L155AL.xml | 2 - .../tests/ASHRAE_Standard_140/L160AC.xml | 2 - .../tests/ASHRAE_Standard_140/L160AL.xml | 2 - .../tests/ASHRAE_Standard_140/L170AC.xml | 2 - .../tests/ASHRAE_Standard_140/L170AL.xml | 2 - .../tests/ASHRAE_Standard_140/L200AC.xml | 2 - .../tests/ASHRAE_Standard_140/L200AL.xml | 2 - .../tests/ASHRAE_Standard_140/L202AC.xml | 2 - .../tests/ASHRAE_Standard_140/L202AL.xml | 2 - .../tests/ASHRAE_Standard_140/L302XC.xml | 2 - .../tests/ASHRAE_Standard_140/L304XC.xml | 2 - .../tests/ASHRAE_Standard_140/L322XC.xml | 2 - .../tests/ASHRAE_Standard_140/L324XC.xml | 2 - .../tests/base_results/results_sizing.csv | 636 +- .../results_workflow_simulations1.csv | 27 +- .../results_workflow_simulations1_bills.csv | 27 +- .../results_workflow_simulations2.csv | 6 +- .../results_workflow_simulations2_bills.csv | 6 +- .../hpxml-measures/workflow/tests/compare.py | 2 +- .../workflow/tests/test_other.rb | 84 +- .../workflow/tests/test_real_homes.rb | 26 - .../workflow/tests/test_sample_files.rb | 26 - .../hpxml-measures/workflow/tests/util.rb | 34 +- resources/options_lookup.tsv | 26042 ++++++++-------- 466 files changed, 20141 insertions(+), 21103 deletions(-) delete mode 100644 resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml delete mode 100644 resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml delete mode 100644 resources/hpxml-measures/workflow/tests/test_real_homes.rb delete mode 100644 resources/hpxml-measures/workflow/tests/test_sample_files.rb diff --git a/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv b/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv index a3c9e0dd19..87360f6065 100644 --- a/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv +++ b/project_national/housing_characteristics/Clothes Dryer Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 0 1 0 0.25 -High 0 1 0 0.25 +Low 1 0 0 0.25 +High 0 0 1 0.25 # Created by: sources\other\tsv_maker.py # Description: Clothes dryer energy usage level multiplier. # Source: n/a diff --git a/project_national/housing_characteristics/Clothes Washer Usage Level.tsv b/project_national/housing_characteristics/Clothes Washer Usage Level.tsv index 52def74808..c19e9b7744 100644 --- a/project_national/housing_characteristics/Clothes Washer Usage Level.tsv +++ b/project_national/housing_characteristics/Clothes Washer Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 0 1 0 0.25 -High 0 1 0 0.25 +Low 1 0 0 0.25 +High 0 0 1 0.25 # Created by: sources\other\tsv_maker.py # Description: Clothes washer energy usage level multiplier. # Source: n/a diff --git a/project_national/housing_characteristics/Cooking Range Usage Level.tsv b/project_national/housing_characteristics/Cooking Range Usage Level.tsv index 5e8fc0f82a..d2b3e5d36c 100644 --- a/project_national/housing_characteristics/Cooking Range Usage Level.tsv +++ b/project_national/housing_characteristics/Cooking Range Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 0 1 0 0.25 -High 0 1 0 0.25 +Low 1 0 0 0.25 +High 0 0 1 0.25 # Created by: sources\other\tsv_maker.py # Description: Cooling range energy usage level multiplier. # Source: n/a diff --git a/project_national/housing_characteristics/Dishwasher Usage Level.tsv b/project_national/housing_characteristics/Dishwasher Usage Level.tsv index 2f14f11216..2aab102d2b 100644 --- a/project_national/housing_characteristics/Dishwasher Usage Level.tsv +++ b/project_national/housing_characteristics/Dishwasher Usage Level.tsv @@ -1,8 +1,8 @@ Dependency=Usage Level Option=80% Usage Option=100% Usage Option=120% Usage sampling_probability Average 0 1 0 0 Medium 0 1 0 0.5 -Low 0 1 0 0.25 -High 0 1 0 0.25 +Low 1 0 0 0.25 +High 0 0 1 0.25 # Created by: sources\other\tsv_maker.py # Description: Dishwasher energy usage level multiplier. # Source: n/a diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index f8f1bb5b91..92b1680339 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -197,7 +197,7 @@ references: #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - &1_fed_min_ashp_ducted - option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load # same as base option + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing # same as base option apply_logic: - HVAC Has Ducts|Yes - not: Heating Fuel|None @@ -213,7 +213,7 @@ references: lifetime: &lifetime_HP 15 - &2_fed_min_mshp_ductless - option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Max Load # federal minimum is SEER 14.3, but 14.5 is lowest SEER in baseline ResStock + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing # federal minimum is SEER 14.3, but 14.5 is lowest SEER in baseline ResStock apply_logic: - HVAC Has Ducts|No - not: Heating Fuel|None @@ -235,7 +235,7 @@ references: #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### ##ASHP non-ducted heating## - &fed_min_ashp_exist_backup_no_shared_ducts - option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing apply_logic: - not: HVAC Heating Efficiency|Shared Heating - not: HVAC Cooling Efficiency|Shared Cooling @@ -319,28 +319,28 @@ references: ## ASHP ducted heating ## # Natural Gas as backup - &fed_min_ashp_exist_backup_shared_ducts_60_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace @@ -349,28 +349,28 @@ references: #Fuel Oil as backup - &fed_min_ashp_exist_backup_shared_ducts_60_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace @@ -379,28 +379,28 @@ references: # Propane as backup - &fed_min_ashp_exist_backup_shared_ducts_60_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace @@ -409,28 +409,28 @@ references: # Other Fuel as backup - &fed_min_ashp_exist_backup_shared_ducts_60_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 5F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace @@ -439,7 +439,7 @@ references: # Electricity as backup - &fed_min_ashp_exist_backup_shared_ducts_electricity - option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing apply_logic: - HVAC Heating Efficiency|Electric Furnace, 100% AFUE costs: *costs_ashp_ducted_8-82_HSPF @@ -447,7 +447,7 @@ references: ## MSHP non-ducted heating ## - &fed_min_mshp_exist_backup - option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Max Load + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load apply_logic: - not: HVAC Heating Efficiency|Shared Heating - not: HVAC Cooling Efficiency|Shared Cooling @@ -458,7 +458,7 @@ references: #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - &1_high_eff_ashp_ducted - option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, Max Load + option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing apply_logic: - HVAC Has Ducts|Yes - not: Heating Fuel|None @@ -474,7 +474,7 @@ references: lifetime: *lifetime_HP - &2_high_eff_mshp_ductless - option: HVAC Heating Efficiency|MSHP, SEER 20, 11 HSPF, CCHP, Max Load + option: HVAC Heating Efficiency|MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing apply_logic: - HVAC Has Ducts|No - not: Heating Fuel|None diff --git a/resources/hpxml-measures/.github/workflows/config.yml b/resources/hpxml-measures/.github/workflows/config.yml index 518dc47483..b59dec25f8 100644 --- a/resources/hpxml-measures/.github/workflows/config.yml +++ b/resources/hpxml-measures/.github/workflows/config.yml @@ -13,7 +13,7 @@ jobs: container: image: docker://nrel/openstudio:3.7.0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} @@ -38,16 +38,16 @@ jobs: bundle exec rake test_measures - name: Store code coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: coverage name: coverage - name: Store results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: workflow/tests/results - name: results + name: results-unit-tests - name: Build documentation run: | @@ -55,7 +55,7 @@ jobs: make html SPHINXOPTS="-W --keep-going -n" - name: Save Docs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: documentation path: docs/_build/html/ @@ -65,7 +65,7 @@ jobs: container: image: docker://nrel/openstudio:3.7.0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} @@ -78,17 +78,17 @@ jobs: bundle exec rake test_workflow1 - name: Store results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: workflow/tests/results - name: results + name: results-workflow1-tests run-workflow2-tests: runs-on: ubuntu-latest container: image: docker://nrel/openstudio:3.7.0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} @@ -101,15 +101,15 @@ jobs: bundle exec rake test_workflow2 - name: Store results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: workflow/tests/results - name: results + name: results-workflow2-tests run-windows-tests: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} - name: Install software and run test @@ -121,37 +121,46 @@ jobs: tar -xzf Windows.tar.gz & .\OpenStudio-${env:OS_VERSION}+${env:OS_SHA}-Windows\bin\openstudio.exe workflow\run_simulation.rb -x workflow\sample_files\base.xml --hourly ALL --add-component-loads --add-stochastic-schedules + merge-results: + runs-on: ubuntu-latest + needs: [run-workflow1-tests, run-workflow2-tests, run-unit-tests] + steps: + - name: Merge Artifacts + uses: actions/upload-artifact/merge@v4 + with: + name: results + pattern: results-* + delete-merged: true + compare-results: if: github.event_name == 'pull_request' runs-on: ubuntu-latest - needs: [run-workflow1-tests, run-workflow2-tests, run-unit-tests] + needs: merge-results steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.base.sha }} - name: Store base results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: workflow/tests/base_results name: base_results - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Download base results - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - path: | - base_results + path: base_results name: base_results - name: Download feature results - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - path: | - results + path: results name: results - name: Compare results @@ -169,24 +178,23 @@ jobs: python workflow/tests/compare.py -a visualize - name: Store comparisons - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: workflow/tests/comparisons name: comparisons update-results: runs-on: ubuntu-latest - needs: [run-workflow1-tests, run-workflow2-tests, run-unit-tests] + needs: merge-results steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} - name: Download feature results - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - path: | - results + path: results name: results - name: Commit latest results diff --git a/resources/hpxml-measures/.gitignore b/resources/hpxml-measures/.gitignore index d9c6bb29f2..275c369663 100644 --- a/resources/hpxml-measures/.gitignore +++ b/resources/hpxml-measures/.gitignore @@ -1009,9 +1009,10 @@ /workflow/tests/run /workflow/tests/test* /workflow/sample_files/results -/workflow/sample_files/run +/workflow/sample_files/run*/ /files /BuildResidentialHPXML/tests/extra_files /ReportUtilityBills/resources/detailed_rates/*.json !/ReportUtilityBills/resources/detailed_rates/Sample*.json /ReportUtilityBills/tests/results_bills.csv +/HPXMLtoOpenStudio/resources/data/g_functions/g-function_library_1.0 diff --git a/resources/hpxml-measures/BuildResidentialHPXML/README.md b/resources/hpxml-measures/BuildResidentialHPXML/README.md index 3ad5ef7c10..1c5d2b6c62 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/README.md +++ b/resources/hpxml-measures/BuildResidentialHPXML/README.md @@ -33,6 +33,17 @@ Absolute/relative path of the existing HPXML file. If not provided, a new HPXML
+**Whole SFA/MF Building Simulation?** + +If the HPXML file represents a single family-attached/multifamily building with multiple dwelling units defined, specifies whether to run the HPXML file as a single whole building model. + +- **Name:** ``whole_sfa_or_mf_building_sim`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ **Software Info: Program Used** The name of the software program used. @@ -197,9 +208,22 @@ Presence of nearby buildings, trees, obstructions for infiltration model. If not
+**Site: Soil and Moisture Type** + +Type of soil and moisture. This is used to inform ground conductivity and diffusivity. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``site_soil_and_moisture_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `clay, dry`, `clay, mixed`, `clay, wet`, `gravel, dry`, `gravel, mixed`, `gravel, wet`, `loam, dry`, `loam, mixed`, `loam, wet`, `sand, dry`, `sand, mixed`, `sand, wet`, `silt, dry`, `silt, mixed`, `silt, wet`, `unknown, dry`, `unknown, mixed`, `unknown, wet` + +
+ **Site: Ground Conductivity** -Conductivity of the ground soil. If not provided, the OS-HPXML default (see HPXML Site) is used. +Conductivity of the ground soil. If provided, overrides the previous site and moisture type input. - **Name:** ``site_ground_conductivity`` - **Type:** ``Double`` @@ -210,6 +234,19 @@ Conductivity of the ground soil. If not provided, the OS-HPXML default (see +**Site: Ground Diffusivity** + +Diffusivity of the ground soil. If provided, overrides the previous site and moisture type input. + +- **Name:** ``site_ground_diffusivity`` +- **Type:** ``Double`` + +- **Units:** ``ft^2/hr`` + +- **Required:** ``false`` + +
+ **Site: Zip Code** Zip code of the home address. @@ -1013,22 +1050,24 @@ Assembly R-value of the roof.
-**Roof: Has Radiant Barrier** +**Attic: Radiant Barrier Location** -Presence of a radiant barrier in the attic. +The location of the radiant barrier in the attic. -- **Name:** ``roof_radiant_barrier`` -- **Type:** ``Boolean`` +- **Name:** ``radiant_barrier_attic_location`` +- **Type:** ``Choice`` -- **Required:** ``true`` +- **Required:** ``false`` + +- **Choices:** `none`, `Attic roof only`, `Attic roof and gable walls`, `Attic floor`
-**Roof: Radiant Barrier Grade** +**Attic: Radiant Barrier Grade** -The grade of the radiant barrier. If not provided, the OS-HPXML default (see
HPXML Roofs) is used. +The grade of the radiant barrier in the attic. If not provided, the OS-HPXML default (see HPXML Roofs) is used. -- **Name:** ``roof_radiant_barrier_grade`` +- **Name:** ``radiant_barrier_grade`` - **Type:** ``Choice`` - **Required:** ``false`` @@ -2250,6 +2289,259 @@ 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`, `Normalized capacity fractions` + +
+ +**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. + +- **Name:** ``geothermal_loop_configuration`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `none`, `vertical` + +
+ +**Geothermal Loop: Borefield Configuration** + +Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_borefield_configuration`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `Rectangle`, `Open Rectangle`, `C`, `L`, `U`, `Lopsided U` + +
+ +**Geothermal Loop: Loop Flow** + +Water flow rate through the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_loop_flow`` +- **Type:** ``Double`` + +- **Units:** ``gpm`` + +- **Required:** ``false`` + +
+ +**Geothermal Loop: Boreholes Count** + +Number of boreholes. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_boreholes_count`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Geothermal Loop: Boreholes Length** + +Average length of each borehole (vertical). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_boreholes_length`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Geothermal Loop: Boreholes Spacing** + +Distance between bores. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_boreholes_spacing`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Geothermal Loop: Boreholes Diameter** + +Diameter of bores. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_boreholes_diameter`` +- **Type:** ``Double`` + +- **Units:** ``in`` + +- **Required:** ``false`` + +
+ +**Geothermal Loop: Grout Type** + +Grout type of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_grout_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `standard`, `thermally enhanced` + +
+ +**Geothermal Loop: Pipe Type** + +Pipe type of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_pipe_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `standard`, `thermally enhanced` + +
+ +**Geothermal Loop: Pipe Diameter** + +Pipe diameter of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used. + +- **Name:** ``geothermal_loop_pipe_diameter`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `3/4" pipe`, `1" pipe`, `1-1/4" pipe` + +
+ **Heating System 2: Type** The type of the second heating system. @@ -2574,7 +2866,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`` @@ -2587,7 +2879,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`` @@ -2639,7 +2931,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`` @@ -2847,7 +3139,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`` @@ -2860,7 +3152,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`` @@ -2873,7 +3165,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`` @@ -2886,7 +3178,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`` @@ -2899,7 +3191,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`` @@ -2912,7 +3204,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`` @@ -2925,7 +3217,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`` @@ -2938,7 +3230,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`` @@ -2951,7 +3243,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`` @@ -2964,7 +3256,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`` @@ -2988,7 +3280,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`` @@ -3001,7 +3293,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`` @@ -3257,7 +3549,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`` @@ -3270,7 +3562,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`` @@ -3283,7 +3575,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/resources/hpxml-measures/BuildResidentialHPXML/measure.rb b/resources/hpxml-measures/BuildResidentialHPXML/measure.rb index 327a8d2a68..42d7d63abd 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +++ b/resources/hpxml-measures/BuildResidentialHPXML/measure.rb @@ -49,6 +49,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units).') args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('whole_sfa_or_mf_building_sim', false) + arg.setDisplayName('Whole SFA/MF Building Simulation?') + arg.setDescription('If the HPXML file represents a single family-attached/multifamily building with multiple dwelling units defined, specifies whether to run the HPXML file as a single whole building model.') + args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('software_info_program_used', false) arg.setDisplayName('Software Info: Program Used') arg.setDescription('The name of the software program used.') @@ -136,12 +141,30 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription("Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg + site_soil_and_moisture_type_choices = OpenStudio::StringVector.new + Constants.SoilTypes.each do |soil_type| + Constants.MoistureTypes.each do |moisture_type| + site_soil_and_moisture_type_choices << "#{soil_type}, #{moisture_type}" + end + end + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_and_moisture_type', site_soil_and_moisture_type_choices, false) + arg.setDisplayName('Site: Soil and Moisture Type') + arg.setDescription("Type of soil and moisture. This is used to inform ground conductivity and diffusivity. If not provided, the OS-HPXML default (see HPXML Site) is used.") + args << arg + arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_conductivity', false) arg.setDisplayName('Site: Ground Conductivity') - arg.setDescription("Conductivity of the ground soil. If not provided, the OS-HPXML default (see HPXML Site) is used.") + arg.setDescription('Conductivity of the ground soil. If provided, overrides the previous site and moisture type input.') arg.setUnits('Btu/hr-ft-F') args << arg + arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_diffusivity', false) + arg.setDisplayName('Site: Ground Diffusivity') + arg.setDescription('Diffusivity of the ground soil. If provided, overrides the previous site and moisture type input.') + arg.setUnits('ft^2/hr') + args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('site_zip_code', false) arg.setDisplayName('Site: Zip Code') arg.setDescription('Zip code of the home address.') @@ -638,20 +661,25 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(2.3) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('roof_radiant_barrier', true) - arg.setDisplayName('Roof: Has Radiant Barrier') - arg.setDescription('Presence of a radiant barrier in the attic.') - arg.setDefaultValue(false) + radiant_barrier_attic_location_choices = OpenStudio::StringVector.new + radiant_barrier_attic_location_choices << 'none' + radiant_barrier_attic_location_choices << HPXML::RadiantBarrierLocationAtticRoofOnly + radiant_barrier_attic_location_choices << HPXML::RadiantBarrierLocationAtticRoofAndGableWalls + radiant_barrier_attic_location_choices << HPXML::RadiantBarrierLocationAtticFloor + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('radiant_barrier_attic_location', radiant_barrier_attic_location_choices, false) + arg.setDisplayName('Attic: Radiant Barrier Location') + arg.setDescription('The location of the radiant barrier in the attic.') args << arg - roof_radiant_barrier_grade_choices = OpenStudio::StringVector.new - roof_radiant_barrier_grade_choices << '1' - roof_radiant_barrier_grade_choices << '2' - roof_radiant_barrier_grade_choices << '3' + radiant_barrier_grade_choices = OpenStudio::StringVector.new + radiant_barrier_grade_choices << '1' + radiant_barrier_grade_choices << '2' + radiant_barrier_grade_choices << '3' - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_radiant_barrier_grade', roof_radiant_barrier_grade_choices, false) - arg.setDisplayName('Roof: Radiant Barrier Grade') - arg.setDescription("The grade of the radiant barrier. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('radiant_barrier_grade', radiant_barrier_grade_choices, false) + arg.setDisplayName('Attic: Radiant Barrier Grade') + arg.setDescription("The grade of the radiant barrier in the attic. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") args << arg wall_type_choices = OpenStudio::StringVector.new @@ -1215,6 +1243,10 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument heat_pump_sizing_choices << HPXML::HeatPumpSizingACCA heat_pump_sizing_choices << HPXML::HeatPumpSizingHERS heat_pump_sizing_choices << HPXML::HeatPumpSizingMaxLoad + + heat_pump_backup_sizing_choices = OpenStudio::StringVector.new + heat_pump_backup_sizing_choices << HPXML::HeatPumpBackupSizingEmergency + heat_pump_backup_sizing_choices << HPXML::HeatPumpBackupSizingSupplemental arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_type', heat_pump_type_choices, true) arg.setDisplayName('Heat Pump: Type') @@ -1336,6 +1368,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription("The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default (see HPXML HVAC Sizing Control) is used.") args << arg + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_backup_sizing_methodology', heat_pump_backup_sizing_choices, false) + arg.setDisplayName('Heat Pump: Backup Sizing Methodology') + arg.setDescription("The auto-sizing methodology to use when the heat pump backup capacity is not provided. If not provided, the OS-HPXML default (see HPXML HVAC Sizing Control) is used.") + args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('heat_pump_is_ducted', false) arg.setDisplayName('Heat Pump: Is Ducted') arg.setDescription("Whether the heat pump is ducted or not. Only used for #{HPXML::HVACTypeHeatPumpMiniSplit}. It's assumed that #{HPXML::HVACTypeHeatPumpAirToAir} and #{HPXML::HVACTypeHeatPumpGroundToAir} are ducted, and #{HPXML::HVACTypeHeatPumpPTHP} and #{HPXML::HVACTypeHeatPumpRoom} are not ducted. If not provided, assumes not ducted.") @@ -1359,6 +1396,154 @@ 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 + # geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationHorizontal + # geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationOther + geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationVertical + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_configuration', geothermal_loop_configuration_choices, false) + arg.setDisplayName('Geothermal Loop: Configuration') + arg.setDescription("Configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see Ground-to-Air Heat Pump) is used.") + args << arg + + geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new + valid_bore_configs = HVACSizing.valid_bore_configs + valid_bore_configs.keys.each do |valid_bore_config| + geothermal_loop_borefield_configuration_choices << valid_bore_config + end + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) + arg.setDisplayName('Geothermal Loop: Borefield Configuration') + arg.setDescription("Borefield configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_loop_flow', false) + arg.setDisplayName('Geothermal Loop: Loop Flow') + arg.setDescription("Water flow rate through the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default (see HPXML Geothermal Loops) is used.") + arg.setUnits('gpm') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geothermal_loop_boreholes_count', false) + arg.setDisplayName('Geothermal Loop: Boreholes Count') + arg.setDescription("Number of boreholes. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default (see HPXML Geothermal Loops) is used.") + arg.setUnits('#') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_length', false) + arg.setDisplayName('Geothermal Loop: Boreholes Length') + arg.setDescription("Average length of each borehole (vertical). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default (see HPXML Geothermal Loops) is used.") + arg.setUnits('ft') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_spacing', false) + arg.setDisplayName('Geothermal Loop: Boreholes Spacing') + arg.setDescription("Distance between bores. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used.") + arg.setUnits('ft') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_diameter', false) + arg.setDisplayName('Geothermal Loop: Boreholes Diameter') + arg.setDescription("Diameter of bores. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used.") + arg.setUnits('in') + args << arg + + geothermal_loop_grout_or_pipe_type_choices = OpenStudio::StringVector.new + geothermal_loop_grout_or_pipe_type_choices << HPXML::GeothermalLoopGroutOrPipeTypeStandard + geothermal_loop_grout_or_pipe_type_choices << HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_grout_type', geothermal_loop_grout_or_pipe_type_choices, false) + arg.setDisplayName('Geothermal Loop: Grout Type') + arg.setDescription("Grout type of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_pipe_type', geothermal_loop_grout_or_pipe_type_choices, false) + arg.setDisplayName('Geothermal Loop: Pipe Type') + arg.setDescription("Pipe type of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used.") + args << arg + + geothermal_loop_pipe_diameter_choices = OpenStudio::StringVector.new + geothermal_loop_pipe_diameter_choices << '3/4" pipe' + geothermal_loop_pipe_diameter_choices << '1" pipe' + geothermal_loop_pipe_diameter_choices << '1-1/4" pipe' + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_pipe_diameter', geothermal_loop_pipe_diameter_choices, false) + arg.setDisplayName('Geothermal Loop: Pipe Diameter') + arg.setDescription("Pipe diameter of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default (see HPXML Geothermal Loops) is used.") + arg.setUnits('in') + args << arg + heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace @@ -1572,13 +1757,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 @@ -1604,7 +1789,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 @@ -1715,61 +1900,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 @@ -1781,13 +1966,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 @@ -1967,19 +2152,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) @@ -3233,6 +3418,9 @@ def argument_warnings(args) warning = (args[:geometry_attic_type] == HPXML::AtticTypeConditioned) && (args[:ceiling_assembly_r] > max_uninsulated_ceiling_rvalue) warnings << 'Home with conditioned attic has ceiling insulation.' if warning + warning = (args[:heat_pump_type] != HPXML::HVACTypeHeatPumpGroundToAir) && (args[:geothermal_loop_configuration].is_initialized && args[:geothermal_loop_configuration].get != 'none') + warnings << 'Specified an attached geothermal loop but home has no ground source heat pump.' if warning + return warnings end @@ -3291,6 +3479,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, @@ -3396,7 +3622,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) sorted_surfaces = model.getSurfaces.sort_by { |s| s.additionalProperties.getFeatureAsInteger('Index').get } sorted_subsurfaces = model.getSubSurfaces.sort_by { |ss| ss.additionalProperties.getFeatureAsInteger('Index').get } - hpxml = HPXML.new(hpxml_path: existing_hpxml_path, building_id: 'ALL') + hpxml = HPXML.new(hpxml_path: existing_hpxml_path) if not set_header(runner, hpxml, args) return false @@ -3424,6 +3650,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) set_heating_systems(hpxml_bldg, args) set_cooling_systems(hpxml_bldg, args) set_heat_pumps(hpxml_bldg, args) + set_geothermal_loop(hpxml_bldg, args) set_secondary_heating_systems(hpxml_bldg, args) set_hvac_distribution(hpxml_bldg, args) set_hvac_control(hpxml, hpxml_bldg, args, epw_file, weather) @@ -3598,6 +3825,10 @@ def self.set_header(runner, hpxml, args) hpxml.header.xml_generated_by = 'BuildResidentialHPXML' hpxml.header.transaction = 'create' + if args[:whole_sfa_or_mf_building_sim].is_initialized + hpxml.header.whole_sfa_or_mf_building_sim = args[:whole_sfa_or_mf_building_sim].get + end + if args[:schedules_vacancy_period].is_initialized begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_vacancy_period].get) @@ -4019,6 +4250,16 @@ def self.set_site(hpxml_bldg, args) hpxml_bldg.site.ground_conductivity = args[:site_ground_conductivity].get end + if args[:site_ground_diffusivity].is_initialized + hpxml_bldg.site.ground_diffusivity = args[:site_ground_diffusivity].get + end + + if args[:site_soil_and_moisture_type].is_initialized + soil_type, moisture_type = args[:site_soil_and_moisture_type].get.split(', ') + hpxml_bldg.site.soil_type = soil_type + hpxml_bldg.site.moisture_type = moisture_type + end + if args[:site_type].is_initialized hpxml_bldg.site.site_type = args[:site_type].get end @@ -4109,6 +4350,9 @@ def self.set_building_construction(hpxml_bldg, args) hpxml_bldg.building_construction.conditioned_building_volume = conditioned_building_volume hpxml_bldg.building_construction.average_ceiling_height = args[:geometry_average_ceiling_height] hpxml_bldg.building_construction.residential_facility_type = args[:geometry_unit_type] + if args[:geometry_building_num_units].is_initialized + hpxml_bldg.building_construction.number_of_units_in_building = args[:geometry_building_num_units].get + end if args[:year_built].is_initialized hpxml_bldg.building_construction.year_built = args[:year_built].get @@ -4127,6 +4371,10 @@ def self.set_building_header(hpxml_bldg, args) if args[:heat_pump_sizing_methodology].is_initialized hpxml_bldg.header.heat_pump_sizing_methodology = args[:heat_pump_sizing_methodology].get end + + if args[:heat_pump_backup_sizing_methodology].is_initialized + hpxml_bldg.header.heat_pump_backup_sizing_methodology = args[:heat_pump_backup_sizing_methodology].get + end if args[:window_natvent_availability].is_initialized hpxml_bldg.header.natvent_days_per_week = args[:window_natvent_availability].get @@ -4215,11 +4463,6 @@ def self.set_roofs(hpxml_bldg, args, sorted_surfaces) roof_color = args[:roof_color].get end - radiant_barrier = args[:roof_radiant_barrier] - if args[:roof_radiant_barrier] && args[:roof_radiant_barrier_grade].is_initialized - radiant_barrier_grade = args[:roof_radiant_barrier_grade].get - end - if args[:geometry_attic_type] == HPXML::AtticTypeFlatRoof azimuth = nil else @@ -4233,10 +4476,16 @@ def self.set_roofs(hpxml_bldg, args, sorted_surfaces) roof_type: roof_type, roof_color: roof_color, pitch: args[:geometry_roof_pitch], - radiant_barrier: radiant_barrier, - radiant_barrier_grade: radiant_barrier_grade, insulation_assembly_r_value: args[:roof_assembly_r]) @surface_ids[surface.name.to_s] = hpxml_bldg.roofs[-1].id + + next unless [HPXML::RadiantBarrierLocationAtticRoofOnly, HPXML::RadiantBarrierLocationAtticRoofAndGableWalls].include?(args[:radiant_barrier_attic_location].to_s) + next unless [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include?(hpxml_bldg.roofs[-1].interior_adjacent_to) + + hpxml_bldg.roofs[-1].radiant_barrier = true + if args[:radiant_barrier_grade].is_initialized + hpxml_bldg.roofs[-1].radiant_barrier_grade = args[:radiant_barrier_grade].get + end end end @@ -4371,6 +4620,14 @@ def self.set_walls(hpxml_bldg, model, args, sorted_surfaces) else hpxml_bldg.walls[-1].insulation_assembly_r_value = 4.0 # Uninsulated end + + next unless hpxml_bldg.walls[-1].attic_wall_type == HPXML::AtticWallTypeGable && args[:radiant_barrier_attic_location].to_s == HPXML::RadiantBarrierLocationAtticRoofAndGableWalls + next unless [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include?(hpxml_bldg.walls[-1].interior_adjacent_to) + + hpxml_bldg.walls[-1].radiant_barrier = true + if args[:radiant_barrier_grade].is_initialized + hpxml_bldg.walls[-1].radiant_barrier_grade = args[:radiant_barrier_grade].get + end end end @@ -4528,6 +4785,14 @@ def self.set_floors(hpxml_bldg, args, sorted_surfaces) else hpxml_bldg.floors[-1].insulation_assembly_r_value = 2.1 # Uninsulated end + + next unless args[:radiant_barrier_attic_location].to_s == HPXML::RadiantBarrierLocationAtticFloor + next unless [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include?(hpxml_bldg.floors[-1].exterior_adjacent_to) && hpxml_bldg.floors[-1].interior_adjacent_to == HPXML::LocationConditionedSpace + + hpxml_bldg.floors[-1].radiant_barrier = true + if args[:radiant_barrier_grade].is_initialized + hpxml_bldg.floors[-1].radiant_barrier_grade = args[:radiant_barrier_grade].get + end end end @@ -4971,6 +5236,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 = Float(min_speed_cap_or_frac) + max_speed_capacity = Float(max_speed_cap_or_frac) + elsif hvac_perf_data_capacity_type == 'Normalized capacity fractions' + min_speed_capacity_fraction_of_nominal = Float(min_speed_cap_or_frac) + max_speed_capacity_fraction_of_nominal = Float(max_speed_cap_or_frac) + end + + clg_perf_data.add(outdoor_temperature: Float(outdoor_temperature), + capacity: min_speed_capacity, + capacity_fraction_of_nominal: min_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: Float(min_speed_cop)) + clg_perf_data.add(outdoor_temperature: Float(outdoor_temperature), + capacity: max_speed_capacity, + capacity_fraction_of_nominal: max_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: Float(max_speed_cop)) + end + end end def self.set_heat_pumps(hpxml_bldg, args) @@ -5115,6 +5417,138 @@ 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 = Float(min_speed_cap_or_frac) + max_speed_capacity = Float(max_speed_cap_or_frac) + elsif hvac_perf_data_capacity_type == 'Normalized capacity fractions' + min_speed_capacity_fraction_of_nominal = Float(min_speed_cap_or_frac) + max_speed_capacity_fraction_of_nominal = Float(max_speed_cap_or_frac) + end + + htg_perf_data.add(outdoor_temperature: Float(outdoor_temperature), + capacity: min_speed_capacity, + capacity_fraction_of_nominal: min_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: Float(min_speed_cop)) + htg_perf_data.add(outdoor_temperature: Float(outdoor_temperature), + capacity: max_speed_capacity, + capacity_fraction_of_nominal: max_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: Float(max_speed_cop)) + end + + 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 = Float(min_speed_cap_or_frac) + max_speed_capacity = Float(max_speed_cap_or_frac) + elsif hvac_perf_data_capacity_type == 'Normalized capacity fractions' + min_speed_capacity_fraction_of_nominal = Float(min_speed_cap_or_frac) + max_speed_capacity_fraction_of_nominal = Float(max_speed_cap_or_frac) + end + + clg_perf_data.add(outdoor_temperature: Float(outdoor_temperature), + capacity: min_speed_capacity, + capacity_fraction_of_nominal: min_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: Float(min_speed_cop)) + clg_perf_data.add(outdoor_temperature: Float(outdoor_temperature), + capacity: max_speed_capacity, + capacity_fraction_of_nominal: max_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: Float(max_speed_cop)) + end + end + end + + def self.set_geothermal_loop(hpxml_bldg, args) + return if hpxml_bldg.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir }.size == 0 + return if !args[:geothermal_loop_configuration].is_initialized || args[:geothermal_loop_configuration].get == 'none' + + if args[:geothermal_loop_borefield_configuration].is_initialized + bore_config = args[:geothermal_loop_borefield_configuration].get + end + + if args[:geothermal_loop_loop_flow].is_initialized + loop_flow = args[:geothermal_loop_loop_flow].get + end + + if args[:geothermal_loop_boreholes_count].is_initialized + num_bore_holes = args[:geothermal_loop_boreholes_count].get + end + + if args[:geothermal_loop_boreholes_length].is_initialized + bore_length = args[:geothermal_loop_boreholes_length].get + end + + if args[:geothermal_loop_boreholes_spacing].is_initialized + bore_spacing = args[:geothermal_loop_boreholes_spacing].get + end + + if args[:geothermal_loop_boreholes_diameter].is_initialized + bore_diameter = args[:geothermal_loop_boreholes_diameter].get + end + + if args[:geothermal_loop_grout_type].is_initialized + grout_type = args[:geothermal_loop_grout_type].get + end + + if args[:geothermal_loop_pipe_type].is_initialized + pipe_type = args[:geothermal_loop_pipe_type].get + end + + if args[:geothermal_loop_pipe_diameter].is_initialized + pipe_diameter = args[:geothermal_loop_pipe_diameter].get + if pipe_diameter == '3/4" pipe' + pipe_diameter = 0.75 + elsif pipe_diameter == '1" pipe' + pipe_diameter = 1.0 + elsif pipe_diameter == '1-1/4" pipe' + pipe_diameter = 1.25 + end + end + + hpxml_bldg.geothermal_loops.add(id: "GeothermalLoop#{hpxml_bldg.geothermal_loops.size + 1}", + loop_configuration: args[:geothermal_loop_configuration].get, + loop_flow: loop_flow, + bore_config: bore_config, + num_bore_holes: num_bore_holes, + bore_length: bore_length, + bore_spacing: bore_spacing, + bore_diameter: bore_diameter, + grout_type: grout_type, + pipe_type: pipe_type, + pipe_diameter: pipe_diameter) + hpxml_bldg.heat_pumps[-1].geothermal_loop_idref = hpxml_bldg.geothermal_loops[-1].id end def self.set_secondary_heating_systems(hpxml_bldg, args) diff --git a/resources/hpxml-measures/BuildResidentialHPXML/measure.xml b/resources/hpxml-measures/BuildResidentialHPXML/measure.xml index 895e9df698..1117d2c430 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +++ b/resources/hpxml-measures/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 73f05c97-2d2b-4e1e-8709-67b264ec605e - 2023-11-13T20:11:04Z + 20c13f7b-9d7f-4d4f-b258-384312c93913 + 2024-01-25T17:44:12Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -27,6 +27,24 @@ false false + + whole_sfa_or_mf_building_sim + Whole SFA/MF Building Simulation? + If the HPXML file represents a single family-attached/multifamily building with multiple dwelling units defined, specifies whether to run the HPXML file as a single whole building model. + Boolean + false + false + + + true + true + + + false + false + + + software_info_program_used Software Info: Program Used @@ -193,15 +211,106 @@ + + site_soil_and_moisture_type + Site: Soil and Moisture Type + Type of soil and moisture. This is used to inform ground conductivity and diffusivity. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. + Choice + false + false + + + clay, dry + clay, dry + + + clay, mixed + clay, mixed + + + clay, wet + clay, wet + + + gravel, dry + gravel, dry + + + gravel, mixed + gravel, mixed + + + gravel, wet + gravel, wet + + + loam, dry + loam, dry + + + loam, mixed + loam, mixed + + + loam, wet + loam, wet + + + sand, dry + sand, dry + + + sand, mixed + sand, mixed + + + sand, wet + sand, wet + + + silt, dry + silt, dry + + + silt, mixed + silt, mixed + + + silt, wet + silt, wet + + + unknown, dry + unknown, dry + + + unknown, mixed + unknown, mixed + + + unknown, wet + unknown, wet + + + site_ground_conductivity Site: Ground Conductivity - Conductivity of the ground soil. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. + Conductivity of the ground soil. If provided, overrides the previous site and moisture type input. Double Btu/hr-ft-F false false + + site_ground_diffusivity + Site: Ground Diffusivity + Diffusivity of the ground soil. If provided, overrides the previous site and moisture type input. + Double + ft^2/hr + false + false + site_zip_code Site: Zip Code @@ -1390,28 +1499,35 @@ 2.3 - roof_radiant_barrier - Roof: Has Radiant Barrier - Presence of a radiant barrier in the attic. - Boolean - true + radiant_barrier_attic_location + Attic: Radiant Barrier Location + The location of the radiant barrier in the attic. + Choice + false false - false - true - true + none + none - false - false + Attic roof only + Attic roof only + + + Attic roof and gable walls + Attic roof and gable walls + + + Attic floor + Attic floor - roof_radiant_barrier_grade - Roof: Radiant Barrier Grade - The grade of the radiant barrier. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. + radiant_barrier_grade + Attic: Radiant Barrier Grade + The grade of the radiant barrier in the attic. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false @@ -2787,6 +2903,271 @@ 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 + + + Normalized capacity fractions + Normalized capacity fractions + + + + + 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 + Configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. + Choice + false + false + + + none + none + + + vertical + vertical + + + + + geothermal_loop_borefield_configuration + Geothermal Loop: Borefield Configuration + Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Choice + false + false + + + Rectangle + Rectangle + + + Open Rectangle + Open Rectangle + + + C + C + + + L + L + + + U + U + + + Lopsided U + Lopsided U + + + + + geothermal_loop_loop_flow + Geothermal Loop: Loop Flow + Water flow rate through the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Double + gpm + false + false + + + geothermal_loop_boreholes_count + Geothermal Loop: Boreholes Count + Number of boreholes. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Integer + # + false + false + + + geothermal_loop_boreholes_length + Geothermal Loop: Boreholes Length + Average length of each borehole (vertical). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Double + ft + false + false + + + geothermal_loop_boreholes_spacing + Geothermal Loop: Boreholes Spacing + Distance between bores. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Double + ft + false + false + + + geothermal_loop_boreholes_diameter + Geothermal Loop: Boreholes Diameter + Diameter of bores. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Double + in + false + false + + + geothermal_loop_grout_type + Geothermal Loop: Grout Type + Grout type of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Choice + false + false + + + standard + standard + + + thermally enhanced + thermally enhanced + + + + + geothermal_loop_pipe_type + Geothermal Loop: Pipe Type + Pipe type of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Choice + false + false + + + standard + standard + + + thermally enhanced + thermally enhanced + + + + + geothermal_loop_pipe_diameter + Geothermal Loop: Pipe Diameter + Pipe diameter of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-geothermal-loops'>HPXML Geothermal Loops</a>) is used. + Choice + in + false + false + + + 3/4" pipe + 3/4" pipe + + + 1" pipe + 1" pipe + + + 1-1/4" pipe + 1-1/4" pipe + + + heating_system_2_type Heating System 2: Type @@ -3334,7 +3715,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 @@ -3343,7 +3724,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 @@ -3391,7 +3772,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 @@ -3611,7 +3992,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 @@ -3620,7 +4001,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 @@ -3629,7 +4010,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 @@ -3638,7 +4019,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 @@ -3647,7 +4028,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 @@ -3656,7 +4037,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 @@ -3665,7 +4046,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 @@ -3674,7 +4055,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 @@ -3683,7 +4064,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 @@ -3692,7 +4073,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 @@ -3720,7 +4101,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 @@ -3729,7 +4110,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 @@ -4113,7 +4494,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 @@ -4122,7 +4503,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 @@ -4131,7 +4512,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 @@ -6751,7 +7132,7 @@ README.md md readme - 92C872C5 + 25A31E46 README.md.erb @@ -6768,7 +7149,7 @@ measure.rb rb script - DEA666BB + 1C5F33C0 geometry.rb @@ -6780,7 +7161,7 @@ test_build_residential_hpxml.rb rb test - 5018D51F + 85F5709E diff --git a/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb b/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index 0769711f2a..477383d6d6 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb +++ b/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -68,6 +68,7 @@ def test_workflows 'extra-water-heater-attic.xml' => 'base-sfd.xml', 'extra-battery-crawlspace.xml' => 'base-sfd.xml', 'extra-battery-attic.xml' => 'base-sfd.xml', + 'extra-detailed-performance-autosize.xml' => 'base-sfd.xml', 'extra-sfa-atticroof-flat.xml' => 'base-sfa.xml', 'extra-sfa-atticroof-conditioned-eaves-gable.xml' => 'extra-sfa-slab.xml', @@ -184,6 +185,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', @@ -217,6 +222,7 @@ def test_workflows 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => 'base-sfd.xml', 'warning-conditioned-basement-with-ceiling-insulation.xml' => 'base-sfd.xml', 'warning-conditioned-attic-with-floor-insulation.xml' => 'base-sfd.xml', + 'warning-geothermal-loop-but-no-gshp.xml' => 'base-sfd.xml' } expected_errors = { @@ -243,6 +249,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.'], @@ -281,7 +291,8 @@ def test_workflows 'warning-vented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'], 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'], 'warning-conditioned-basement-with-ceiling-insulation.xml' => ['Home with conditioned basement has floor insulation.'], - 'warning-conditioned-attic-with-floor-insulation.xml' => ['Home with conditioned attic has ceiling insulation.'] + 'warning-conditioned-attic-with-floor-insulation.xml' => ['Home with conditioned attic has ceiling insulation.'], + 'warning-geothermal-loop-but-no-gshp.xml' => ['Specified an attached geothermal loop but home has no ground source heat pump.'] } schema_path = File.join(File.dirname(__FILE__), '../..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd') @@ -331,9 +342,13 @@ def test_workflows flunk "Error: Did not successfully generate #{hpxml_file}." end - hpxml_path = File.absolute_path(File.join(@output_path, hpxml_file)) - hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') + hpxml = HPXML.new(hpxml_path: hpxml_path) + if hpxml.errors.size > 0 + puts hpxml.errors.to_s + puts "\nError: Did not successfully validate #{hpxml_file}." + exit! + end hpxml.header.xml_generated_by = 'build_residential_hpxml_test.rb' hpxml.header.created_date_and_time = Time.new(2000, 1, 1).strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs @@ -346,7 +361,8 @@ def test_workflows puts errors.to_s puts "\nError: Did not successfully validate #{hpxml_file}." exit! - rescue Exception + rescue Exception => e + puts "#{e.message}\n#{e.backtrace.join("\n")}" flunk "Error: Did not successfully generate #{hpxml_file}" end end @@ -420,8 +436,8 @@ def _set_measure_argument_values(hpxml_file, args) args['roof_material_type'] = HPXML::RoofTypeAsphaltShingles args['roof_color'] = HPXML::ColorMedium args['roof_assembly_r'] = 2.3 - args['roof_radiant_barrier'] = false - args['roof_radiant_barrier_grade'] = 1 + args['radiant_barrier_attic_location'] = 'none' + args['radiant_barrier_grade'] = 1 args['neighbor_front_distance'] = 0 args['neighbor_back_distance'] = 0 args['neighbor_left_distance'] = 0 @@ -495,6 +511,7 @@ def _set_measure_argument_values(hpxml_file, args) args['heat_pump_backup_fuel'] = HPXML::FuelTypeElectricity args['heat_pump_backup_heating_efficiency'] = 1 args['heat_pump_backup_heating_capacity'] = 36000.0 + args['geothermal_loop_configuration'] = 'none' args['hvac_control_heating_weekday_setpoint'] = 68 args['hvac_control_heating_weekend_setpoint'] = 68 args['hvac_control_cooling_weekday_setpoint'] = 78 @@ -645,6 +662,7 @@ def _set_measure_argument_values(hpxml_file, args) args['permanent_spa_heater_type'] = HPXML::HeaterTypeElectricResistance elsif ['base-sfd2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') + args['whole_sfa_or_mf_building_sim'] = true elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 @@ -661,8 +679,10 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-sfa2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') + args['whole_sfa_or_mf_building_sim'] = true elsif ['base-sfa3.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') + args['whole_sfa_or_mf_building_sim'] = true elsif ['base-mf.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeApartment args['geometry_unit_cfa'] = 900.0 @@ -690,10 +710,13 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-mf2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') + args['whole_sfa_or_mf_building_sim'] = true elsif ['base-mf3.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') + args['whole_sfa_or_mf_building_sim'] = true elsif ['base-mf4.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') + args['whole_sfa_or_mf_building_sim'] = true elsif ['base-sfd-header.xml'].include? hpxml_file args['software_info_program_used'] = 'Program' args['software_info_program_version'] = '1' @@ -712,6 +735,7 @@ def _set_measure_argument_values(hpxml_file, args) args['utility_bill_scenario_names'] = 'Bills' elsif ['base-sfd-header-no-duplicates.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['whole_sfa_or_mf_building_sim'] = true end # Extras @@ -904,6 +928,27 @@ def _set_measure_argument_values(hpxml_file, args) elsif ['extra-battery-attic.xml'].include? hpxml_file args['battery_present'] = true args['battery_location'] = HPXML::LocationAttic + elsif ['extra-detailed-performance-autosize.xml'].include? hpxml_file + args['heating_system_type'] = 'none' + args['cooling_system_type'] = 'none' + args['heat_pump_type'] = HPXML::HVACTypeHeatPumpAirToAir + args['heat_pump_heating_efficiency'] = 10.0 + args['heat_pump_cooling_efficiency'] = 17.25 + args['heat_pump_cooling_compressor_type'] = HPXML::HVACCompressorTypeVariableSpeed + args['heat_pump_cooling_sensible_heat_fraction'] = 0.78 + args.delete('heat_pump_heating_capacity') + args.delete('heat_pump_cooling_capacity') + args['hvac_perf_data_capacity_type'] = 'Normalized capacity fractions' + args['hvac_perf_data_heating_outdoor_temperatures'] = '47.0, 17.0, 5.0' + args['hvac_perf_data_heating_min_speed_capacities'] = '0.28, 0.12, 0.05' + args['hvac_perf_data_heating_max_speed_capacities'] = '1.0, 0.69, 0.55' + args['hvac_perf_data_heating_min_speed_cops'] = '4.73, 1.84, 0.81' + args['hvac_perf_data_heating_max_speed_cops'] = '3.44, 2.66, 2.28' + args['hvac_perf_data_cooling_outdoor_temperatures'] = '95.0, 82.0' + args['hvac_perf_data_cooling_min_speed_capacities'] = '0.325, 0.37' + args['hvac_perf_data_cooling_max_speed_capacities'] = '1.0, 1.11' + 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 ['extra-sfa-atticroof-flat.xml'].include? hpxml_file args['geometry_attic_type'] = HPXML::AtticTypeFlatRoof args['ducts_supply_leakage_to_outside_value'] = 0.0 @@ -1151,6 +1196,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 @@ -1268,6 +1329,8 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_attic_type'] = HPXML::AtticTypeConditioned args['ducts_supply_location'] = HPXML::LocationConditionedSpace args['ducts_return_location'] = HPXML::LocationConditionedSpace + elsif ['warning-geothermal-loop-but-no-gshp.xml'].include? hpxml_file + args['geothermal_loop_configuration'] = HPXML::GeothermalLoopLoopConfigurationVertical end end diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb b/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb index 11137efcaf..094c50c604 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb @@ -104,7 +104,6 @@ def run(model, runner, user_arguments) building_id = nil building_id = args[:building_id].get if args[:building_id].is_initialized - hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: building_id) debug = false if args[:debug].is_initialized @@ -121,9 +120,7 @@ def run(model, runner, user_arguments) runner.registerInfo('Unable to retrieve the schedules random seed; setting it to 1.') end - # create EpwFile object - epw_path = Location.get_epw_path(hpxml.buildings[0], hpxml_path) - epw_file = OpenStudio::EpwFile.new(epw_path) + epw_path, epw_file = nil, nil output_csv_basename, _ = args[:output_csv_path].split('.csv') @@ -135,12 +132,17 @@ def run(model, runner, user_arguments) next if doc_buildings.size > 1 && building_id != 'ALL' && building_id != doc_building_id + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: doc_building_id) + hpxml_bldg = hpxml.buildings[0] + + if epw_path.nil? + epw_path = Location.get_epw_path(hpxml_bldg, hpxml_path) + epw_file = OpenStudio::EpwFile.new(epw_path) + end + # deterministically vary schedules across building units args[:random_seed] *= (i + 1) - # get hpxml_bldg - hpxml_bldg = hpxml.buildings.find { |hb| hb.building_id == doc_building_id } - # exit if number of occupants is zero if hpxml_bldg.building_occupancy.number_of_residents == 0 runner.registerInfo("#{doc_building_id}: Number of occupants set to zero; skipping generation of stochastic schedules.") diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml b/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml index da8362da2d..a38d01b1b8 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - 48439a72-2880-4934-b216-38a24bf684b7 - 2023-11-02T14:39:58Z + 3606c838-78bd-44c3-a156-89c18187577f + 2024-01-22T22:47:29Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -114,7 +114,7 @@ measure.rb rb script - 6445A4FB + DB493DC3 README.md @@ -912,7 +912,7 @@ test_build_residential_schedule_file.rb rb test - BF7A1992 + 2F6E6374 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md index 877fb77550..01341703a2 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md @@ -39,7 +39,7 @@ The files are divided into four clusters (cluster0 to cluster3), for 4 occupant `_consumption_dist.csv` -These files contain the 1-min power kW samples for the given end use, obtained from NREL metered data. The metered range is Whirlpool WFE540H0AS, which is a standard electric range. The metered clothes dryer is Bosch WTG865H4UC, whose CEF=2.68. +These files contain the 15-min power consumption kWh samples for the given end use, obtained from RBSA (average 15-min end use kWh for each submetered home; N=number of homes with that end use). The schedule generator randomly picks one of these values to determine the power level of the appliance schedule. `_duration_dist.csv` diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv index e11588eeca..5a9d15bf27 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv @@ -1,5 +1,95 @@ -0.182461667 -1.9305556 -2.578876433 -2.607120267 -5.981998067 +0.7401875901875902 +0.6763526834611172 +0.6933136094674556 +0.7525892857142857 +0.6114730290456432 +0.6686034353995519 +0.6486158192090395 +0.8418343195266272 +0.5109159779614325 +0.7325305738476011 +0.7300523350987 +0.8098499541059488 +0.7579439252336448 +0.505147348212131 +0.8228205128205128 +0.757375415282392 +0.6456170212765957 +0.6166452095808383 +0.5857394366197183 +0.7722986682107701 +0.5820289855072464 +0.8095555555555556 +0.8690485829959514 +0.5393928798474253 +0.6707438016528926 +0.6491715976331361 +0.6852181208053691 +0.7737162162162162 +0.5468722466960353 +0.6900119904076739 +0.6686852589641434 +0.5546972369194592 +0.7376367498672332 +0.7106993006993007 +0.8190260631001371 +0.9360693641618497 +0.7348567530695771 +0.5642268041237113 +0.4671391917896087 +0.576453488372093 +0.7148119469026548 +0.5451612903225806 +0.7728179190751445 +0.5989509433962265 +0.7988797250859107 +0.614203211351755 +0.6865119651921683 +0.643011583011583 +0.656452296819788 +0.624065934065934 +0.49186450492182976 +0.698195991091314 +0.5266933333333333 +0.6834490740740741 +0.6792571428571429 +0.580092920073819 +0.6755813953488372 +0.7074688796680498 +0.6719745222929936 +0.7267451523545706 +0.5332251655629139 +0.6518089167280766 +0.7233875338753387 +0.5308162031438936 +0.7748849104859334 +0.5244340505144995 +0.7985 +0.6511931818181819 +0.5508247422680412 +0.5128938156359393 +0.5025907590759076 +0.5205498281786941 +0.5137831858407079 +0.5919750628069445 +0.5294406822425564 +0.6661693548387096 +0.7131951219512195 +0.6371662206363367 +0.49895771878072764 +0.5738197424892704 +0.4593438320209974 +0.83614 +0.6048826895565093 +0.5638992581023038 +0.6861959662853703 +0.5313793103448275 +0.715788876276958 +0.4535348226018397 +0.7158775067750407 +0.6221506849315068 +0.7510689869484152 +0.8052488687782805 +0.714069640914037 +0.5361458333333333 +0.6422522522522522 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv index 298e976a34..40dc6fb042 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv @@ -1,2 +1,93 @@ -0.755685783 -0.711993683 +0.07840152649072847 +0.08468426286190477 +0.07354431109509202 +0.05928571428571429 +0.047323492187499996 +0.08326639892904954 +0.08801944565 +0.10726148409893993 +0.06470188386108597 +0.036913244172727275 +0.06380358329255953 +0.03639135685580222 +0.06532894736842106 +0.075 +0.0724594589916996 +0.04552238805970149 +0.0454150216342155 +0.08559735020011683 +0.04075611066856492 +0.049579831932773114 +0.09103340292275575 +0.055832836370387245 +0.04031746031746032 +0.060389375761458336 +0.03660564553348165 +0.08472395263956835 +0.051892162410218975 +0.04075858495649351 +0.036328667291947565 +0.17408163265306123 +0.056306947876447876 +0.0396128506696 +0.04122222222222222 +0.10344627299128752 +0.11312958614822646 +0.036449818245376346 +0.08550582650327869 +0.07144449236641222 +0.06485333333061225 +0.044670719351570416 +0.04111545881583012 +0.07306586750025063 +0.061816410982954546 +0.06934900732161896 +0.036943585438202246 +0.08009580838323353 +0.07253886010362695 +0.09161556603773585 +0.06734366904857143 +0.04669642857142857 +0.09067542213883678 +0.07715048591408451 +0.03741839523160377 +0.07300678889151516 +0.07983786760725807 +0.08426026080046685 +0.06947525244250614 +0.08961722488038278 +0.036504996461146494 +0.04847781164346764 +0.07804588823411765 +0.054262407749416666 +0.03410074324978541 +0.07096827022890173 +0.0365219869796875 +0.06884012422808641 +0.07333511100723127 +0.06980131860797546 +0.07540567352784314 +0.048277994330612244 +0.03508549061456044 +0.08235954552052023 +0.08555555555555555 +0.04969387972166667 +0.07329218106995886 +0.042370467636666666 +0.09774325928465753 +0.047965425507356156 +0.07347945054308944 +0.05227391342638889 +0.03785645173949045 +0.03873201797222222 +0.10400276502513116 +0.08141323676074766 +0.07476731104767442 +0.03763019355974441 +0.0832133676092545 +0.057244647308859226 +0.04419379292659933 +0.08293756397134085 +0.03424707690035088 +0.0862861697537037 +0.050176510811891895 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv index 48faf8a3d8..6dd4bd9671 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv @@ -1,7 +1,63 @@ -0.428622011 -1.1382695 -1.255058153 -3.327111361 -3.345616878 -3.351581688 -3.449142567 +0.24184278350515465 +0.35916249105225484 +0.3342277992277992 +0.22115897435897436 +0.09386666666666667 +0.2452562225475842 +0.2596535129932628 +0.2432636193530874 +0.24371917463512835 +0.29547826086956525 +0.26907056798623064 +0.1512106135986733 +0.30496503496503496 +0.24927876823338735 +0.28042694497153703 +0.21896645512239346 +0.22332857142857143 +0.26805182341650674 +0.28706552706552707 +0.2110576923076923 +0.2335443411539029 +0.2429324894514768 +0.26504347826086955 +0.27439024390243905 +0.2443854324734446 +0.256246719160105 +0.25103846153846154 +0.2787231503579952 +0.25219110378912685 +0.21715078416728903 +0.3207981220657277 +0.23244106463878328 +0.2183682008368201 +0.20691096305269535 +0.26887706855791965 +0.22020926756352766 +0.27527944969905416 +0.3208922238372093 +0.21243827160493828 +0.1282451253481894 +0.24433724075743912 +0.2594965449160908 +0.22655840455840456 +0.23205211726384364 +0.1833734939759036 +0.2773582295988935 +0.20106739053043787 +0.20534220532319392 +0.23474915254237289 +0.2620616570327553 +0.26216216216216215 +0.19722676579925652 +0.22963117236760225 +0.2672146739130435 +0.20087423312883435 +0.27033473154362414 +0.19489583333333332 +0.18529780564263323 +0.13686559139784946 +0.2350279552715655 +0.23928018575851392 +0.3259296875 +0.18784615384615386 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv index 13ec6c5951..231559fbae 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv @@ -1 +1,56 @@ -1.004 +0.17106035889070148 +0.15234417344173443 +0.12264907135874878 +0.17646869983948635 +0.159185667752443 +0.08693232131562302 +0.14911691542288558 +0.1589312536106297 +0.12033292231812577 +0.2234162162162162 +0.17139954853273137 +0.22575192096597146 +0.14875886524822696 +0.23615671641791044 +0.22696747114375657 +0.1382964509394572 +0.1954726368159204 +0.15478218780251693 +0.1606179775280899 +0.20641921397379911 +0.18277294038847958 +0.13049798115746972 +0.18272727272727274 +0.1634688995215311 +0.16244444444444445 +0.08069159836065574 +0.16043570669500531 +0.10926213286921388 +0.12836313617606604 +0.1486868686868687 +0.23592876712328767 +0.1351692913385827 +0.1369962686567164 +0.1741904761904762 +0.21345098039215687 +0.11025 +0.1772456813819578 +0.15782529743268628 +0.1526602564102564 +0.17230768295204263 +0.09601374570446736 +0.1711441647597254 +0.23446710090525502 +0.14131832797427654 +0.16409345794392524 +0.11176461562068436 +0.20523647001462703 +0.16846917666528755 +0.09413361169102297 +0.15504725897920604 +0.18657683215130025 +0.17790163934426229 +0.09052422097870969 +0.2059972299168975 +0.17470588235294118 +0.18686940966010734 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb index b9715f9c7d..e5fd81cd2c 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb @@ -554,30 +554,30 @@ def create_stochastic_schedules(args:) random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cooking_power_sch = cooking_power_sch.rotate(random_offset) cooking_power_sch = apply_monthly_offsets(array: cooking_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cooking_power_sch = average_array(cooking_power_sch, @minutes_per_step) + cooking_power_sch = aggregate_array(cooking_power_sch, @minutes_per_step) cooking_peak_power = cooking_power_sch.max - @schedules[SchedulesFile::ColumnCookingRange] = cooking_power_sch.map { |power| power } + @schedules[SchedulesFile::ColumnCookingRange] = cooking_power_sch.map { |power| power / cooking_peak_power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cw_power_sch = cw_power_sch.rotate(random_offset) cw_power_sch = apply_monthly_offsets(array: cw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cw_power_sch = average_array(cw_power_sch, @minutes_per_step) + cw_power_sch = aggregate_array(cw_power_sch, @minutes_per_step) cw_peak_power = cw_power_sch.max - @schedules[SchedulesFile::ColumnClothesWasher] = cw_power_sch.map { |power| power } + @schedules[SchedulesFile::ColumnClothesWasher] = cw_power_sch.map { |power| power / cw_peak_power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cd_power_sch = cd_power_sch.rotate(random_offset) cd_power_sch = apply_monthly_offsets(array: cd_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cd_power_sch = average_array(cd_power_sch, @minutes_per_step) + cd_power_sch = aggregate_array(cd_power_sch, @minutes_per_step) cd_peak_power = cd_power_sch.max - @schedules[SchedulesFile::ColumnClothesDryer] = cd_power_sch.map { |power| power } + @schedules[SchedulesFile::ColumnClothesDryer] = cd_power_sch.map { |power| power / cd_peak_power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range dw_power_sch = dw_power_sch.rotate(random_offset) dw_power_sch = apply_monthly_offsets(array: dw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - dw_power_sch = average_array(dw_power_sch, @minutes_per_step) + dw_power_sch = aggregate_array(dw_power_sch, @minutes_per_step) dw_peak_power = dw_power_sch.max - @schedules[SchedulesFile::ColumnDishwasher] = dw_power_sch.map { |power| power } + @schedules[SchedulesFile::ColumnDishwasher] = dw_power_sch.map { |power| power / dw_peak_power } @schedules[SchedulesFile::ColumnOccupants] = away_schedule.map { |i| 1.0 - i } @@ -601,15 +601,6 @@ def aggregate_array(array, group_size) return new_array end - def average_array(array, group_size) - new_array_size = array.size / group_size - new_array = [0] * new_array_size - new_array_size.times do |j| - new_array[j] = array[(j * group_size)..(j + 1) * group_size - 1].sum(0) / group_size - end - return new_array - end - def apply_monthly_offsets(array:, weekday_monthly_shift_dict:, weekend_monthly_shift_dict:) month_strs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] new_array = [] diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb b/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb index e53ddeac7f..051b7c1d18 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb @@ -19,6 +19,9 @@ def setup @args_hash = {} @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) @args_hash['hpxml_output_path'] = @args_hash['hpxml_path'] + + @year = 2007 + @tol = 0.005 end def teardown @@ -36,29 +39,29 @@ def test_stochastic info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) end @@ -83,7 +86,7 @@ def test_stochastic_subset_of_columns assert(info_msgs.any? { |info_msg| info_msg.include?('ColumnNames') }) sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) columns.each do |column| @@ -118,30 +121,30 @@ def test_stochastic_debug info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3067, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnSleeping, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3067, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnSleeping, schedules: sf.tmp_schedules), @tol) end def test_random_seed @@ -154,29 +157,29 @@ def test_random_seed info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=MD') }) assert(info_msgs.any? { |info_msg| info_msg.include?('RandomSeed=1') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(898, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2070, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2070, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(233, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(288, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(320, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(889, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) @args_hash['schedules_random_seed'] = 2 @@ -184,29 +187,29 @@ def test_random_seed info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=MD') }) assert(info_msgs.any? { |info_msg| info_msg.include?('RandomSeed=2') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(226, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(244, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1753, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1753, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(174, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3029, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4700, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4700, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(233, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(244, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) end @@ -219,29 +222,29 @@ def test_10_min_timestep info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=10') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) - assert_in_epsilon(6707, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(105, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3237, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4845, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4845, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(146, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(154, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(397, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6707, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2077, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(105, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3237, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4845, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4845, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(146, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(154, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(397, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) end @@ -277,7 +280,7 @@ def test_zero_occupants end def test_multiple_buildings - hpxml = _create_hpxml('base-multiple-sfd-buildings.xml') + hpxml = _create_hpxml('base-bldgtype-mf-whole-building.xml') hpxml.buildings.each do |hpxml_bldg| hpxml_bldg.header.schedules_filepaths = nil end @@ -289,7 +292,7 @@ def test_multiple_buildings info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) @@ -297,66 +300,66 @@ def test_multiple_buildings hpxml.buildings.each do |hpxml_bldg| sf = SchedulesFile.new(schedules_paths: hpxml_bldg.header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) if hpxml_bldg.building_id == 'MyBuilding' assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv') - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) elsif hpxml_bldg.building_id == 'MyBuilding_2' assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') - assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3029, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4700, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4700, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(894, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) elsif hpxml_bldg.building_id == 'MyBuilding_3' assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_3.csv') - assert_in_epsilon(6045, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(421, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(239, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(81, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(127, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(224, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(209, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6045, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(421, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(239, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(81, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(127, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2984, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4716, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4716, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(224, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(209, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(970, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) end end end def test_multiple_buildings_id - hpxml = _create_hpxml('base-multiple-sfd-buildings.xml') + hpxml = _create_hpxml('base-bldgtype-mf-whole-building.xml') hpxml.buildings.each do |hpxml_bldg| hpxml_bldg.header.schedules_filepaths = nil end @@ -368,7 +371,7 @@ def test_multiple_buildings_id info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) - assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?("SimYear=#{@year}") }) assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) @@ -379,24 +382,24 @@ def test_multiple_buildings_id if building_id == @args_hash['building_id'] sf = SchedulesFile.new(schedules_paths: hpxml_bldg.header.schedules_filepaths, - year: 2007, + year: @year, output_path: @tmp_schedule_file_path) assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') - assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3029, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4700, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4700, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(894, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) else assert_empty(hpxml_bldg.header.schedules_filepaths) @@ -437,12 +440,12 @@ def _test_measure(expect_fail: false) assert_equal('Success', result.value.valueName) end - hpxml = HPXML.new(hpxml_path: @tmp_hpxml_path, building_id: 'ALL') + hpxml = HPXML.new(hpxml_path: @tmp_hpxml_path) return hpxml, result end def _create_hpxml(hpxml_name) - return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name), building_id: 'ALL') + return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) end end diff --git a/resources/hpxml-measures/Changelog.md b/resources/hpxml-measures/Changelog.md index 62b1340364..cd22372583 100644 --- a/resources/hpxml-measures/Changelog.md +++ b/resources/hpxml-measures/Changelog.md @@ -1,3 +1,30 @@ +## OpenStudio-HPXML v1.8.0 + +__New Features__ +- Updates to HPXML v4.0-rc3. +- **Breaking change**: Modeling whole SFA/MF buildings is now specified using a `SoftwareInfo/extension/WholeSFAorMFBuildingSimulation=true` element instead of `building-id=ALL` argument. +- Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. +- Allows radiant barriers for additional locations (attic gable walls and floor); reduced emissivity due to dust assumed for radiant barriers on attic floor. +- Allows autosizing with detailed performance data inputs for variable-speed air source HVAC systems using `CapacityFractionOfNominal`. +- Ground source heat pump enhancements: + - Allows optional detailed inputs related to geothermal loop (`HVACPlant/GeothermalLoop`). + - Allows optional ground diffusivity input. + - Updates to using G-Functions from the [G-Function Library for Modeling Vertical Bore Ground Heat Exchanger](https://gdr.openei.org/submissions/1325). + - 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. +- Updated water heater installation location defaulting to match ANSI 301-2022 +- Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). + +__Bugfixes__ +- Fixes error if using AllowIncreasedFixedCapacities=true w/ HP detailed performance data. +- Prevents mains water temperature from going below freezing (0 C). +- Fixes error if HPXML has emissions scenario and abbreviated run period. +- Fixes detailed schedule error-checking where schedules with MAX < 1 were incorrectly allowed. + ## OpenStudio-HPXML v1.7.0 __New Features__ diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/README.md b/resources/hpxml-measures/HPXMLtoOpenStudio/README.md index 758fa3a13e..f85d81f4d4 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/README.md +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/README.md @@ -68,7 +68,7 @@ If true, bypasses HPXML input validation for faster performance. WARNING: This s **BuildingID** -The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to run all the HPXML Buildings (dwelling units) of a multifamily building in a single model. +The ID of the HPXML Building. Only required if the HPXML has multiple Building elements and WholeSFAorMFBuildingSimulation is not true. - **Name:** ``building_id`` - **Type:** ``String`` diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb index bce7622ccb..5e1818f1f2 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb @@ -63,7 +63,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument.makeStringArgument('building_id', false) arg.setDisplayName('BuildingID') - arg.setDescription("The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to run all the HPXML Buildings (dwelling units) of a multifamily building in a single model.") + arg.setDescription('The ID of the HPXML Building. Only required if the HPXML has multiple Building elements and WholeSFAorMFBuildingSimulation is not true.') args << arg return args @@ -137,7 +137,7 @@ def run(model, runner, user_arguments) fail 'Weather station EPW filepath has different values across dwelling units.' end - if (building_id == 'ALL') && (hpxml.buildings.size > 1) + if hpxml.header.whole_sfa_or_mf_building_sim && (hpxml.buildings.size > 1) if hpxml.buildings.map { |hpxml_bldg| hpxml_bldg.batteries.size }.sum > 0 # FUTURE: Figure out how to allow this. If we allow it, update docs and hpxml_translator_test.rb too. # Batteries use "TrackFacilityElectricDemandStoreExcessOnSite"; to support modeling of batteries in whole @@ -734,7 +734,10 @@ def add_walls(runner, model, spaces) # Apply construction # The code below constructs a reasonable wall construction based on the # wall type while ensuring the correct assembly R-value. - + has_radiant_barrier = wall.radiant_barrier + if has_radiant_barrier + radiant_barrier_grade = wall.radiant_barrier_grade + end inside_film = Material.AirFilmVertical if wall.is_exterior outside_film = Material.AirFilmOutside @@ -750,7 +753,8 @@ def add_walls(runner, model, spaces) mat_int_finish = Material.InteriorFinishMaterial(wall.interior_finish_type, wall.interior_finish_thickness) Constructions.apply_wall_construction(runner, model, surfaces, wall.id, wall.wall_type, wall.insulation_assembly_r_value, - mat_int_finish, inside_film, outside_film, mat_ext_finish, wall.solar_absorptance, + mat_int_finish, has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, mat_ext_finish, wall.solar_absorptance, wall.emittance) end end @@ -876,6 +880,10 @@ def add_floors(runner, model, spaces) outside_film = Material.AirFilmFloorAverage end mat_int_finish_or_covering = Material.InteriorFinishMaterial(floor.interior_finish_type, floor.interior_finish_thickness) + has_radiant_barrier = floor.radiant_barrier + if has_radiant_barrier + radiant_barrier_grade = floor.radiant_barrier_grade + end else # Floor if @apply_ashrae140_assumptions # Raised floor @@ -897,7 +905,7 @@ def add_floors(runner, model, spaces) end Constructions.apply_floor_ceiling_construction(runner, model, [surface], floor.id, floor.floor_type, floor.is_ceiling, floor.insulation_assembly_r_value, - mat_int_finish_or_covering, inside_film, outside_film) + mat_int_finish_or_covering, has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) end end @@ -1000,8 +1008,20 @@ def add_foundation_walls_slabs(runner, model, weather, spaces) end mat_ext_finish = nil - Constructions.apply_wall_construction(runner, model, [surface], fnd_wall.id, wall_type, assembly_r, - mat_int_finish, inside_film, outside_film, mat_ext_finish, nil, nil) + Constructions.apply_wall_construction(runner, + model, + [surface], + fnd_wall.id, + wall_type, + assembly_r, + mat_int_finish, + false, + inside_film, + outside_film, + nil, + mat_ext_finish, + nil, + nil) end end end @@ -1458,12 +1478,12 @@ def apply_adiabatic_construction(model, surfaces, type) mat_int_finish = Material.InteriorFinishMaterial(HPXML::InteriorFinishGypsumBoard, 0.5) mat_ext_finish = Material.ExteriorFinishMaterial(HPXML::SidingTypeWood) Constructions.apply_wood_stud_wall(model, surfaces, 'AdiabaticWallConstruction', - 0, 1, 3.5, true, 0.1, mat_int_finish, 0, 99, mat_ext_finish, - Material.AirFilmVertical, Material.AirFilmVertical) + 0, 1, 3.5, true, 0.1, mat_int_finish, 0, 99, mat_ext_finish, false, + Material.AirFilmVertical, Material.AirFilmVertical, nil) elsif type == 'floor' Constructions.apply_wood_frame_floor_ceiling(model, surfaces, 'AdiabaticFloorConstruction', false, - 0, 1, 0.07, 5.5, 0.75, 99, Material.CoveringBare, - Material.AirFilmFloorReduced, Material.AirFilmFloorReduced) + 0, 1, 0.07, 5.5, 0.75, 99, Material.CoveringBare, false, + Material.AirFilmFloorReduced, Material.AirFilmFloorReduced, nil) elsif type == 'roof' Constructions.apply_open_cavity_roof(model, surfaces, 'AdiabaticRoofConstruction', 0, 1, 7.25, 0.07, 7.25, 0.75, 99, @@ -1691,8 +1711,8 @@ def add_heat_pump(runner, model, weather, spaces, airloop_map) airloop_map[sys_id] = HVAC.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - conditioned_zone, @hpxml_bldg.site.ground_conductivity, @hvac_unavailable_periods, - @hpxml_bldg.building_construction.number_of_units) + conditioned_zone, @hpxml_bldg.site.ground_conductivity, @hpxml_bldg.site.ground_diffusivity, + @hvac_unavailable_periods, @hpxml_bldg.building_construction.number_of_units) end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml index 44b489b833..3bdf4629c0 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 6d2dc12a-bac9-4979-a4db-a4172c12a591 - 2023-11-27T16:49:25Z + 6ad02afc-fdfc-4687-a74b-66073db8c426 + 2024-01-30T17:28:44Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -87,7 +87,7 @@ building_id BuildingID - The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to run all the HPXML Buildings (dwelling units) of a multifamily building in a single model. + The ID of the HPXML Building. Only required if the HPXML has multiple Building elements and WholeSFAorMFBuildingSimulation is not true. String false false @@ -125,7 +125,7 @@ README.md md readme - A4165C6F + DCE171D6 README.md.erb @@ -142,7 +142,7 @@ measure.rb rb script - 78A58FBA + C56D4A67 airflow.rb @@ -160,13 +160,13 @@ constants.rb rb resource - E28C712B + 0A8AFBD2 constructions.rb rb resource - D28BD90F + 86823274 data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -222,6 +222,54 @@ resource 63C6A1E2 + + data/g_functions/C_configurations_5m_v1.0.json + json + resource + E97DCCDD + + + data/g_functions/L_configurations_5m_v1.0.json + json + resource + 6B2B3787 + + + data/g_functions/LopU_configurations_5m_v1.0.json + json + resource + B13FA813 + + + data/g_functions/Open_configurations_5m_v1.0.json + json + resource + FF25A024 + + + data/g_functions/README.md + md + resource + 48D1301C + + + data/g_functions/U_configurations_5m_v1.0.json + json + resource + B5BEF270 + + + data/g_functions/rectangle_5m_v1.0.json + json + resource + 25FFB6A8 + + + data/g_functions/util.rb + rb + resource + 2BEF07FA + data/unavailable_periods.csv csv @@ -256,19 +304,19 @@ hpxml.rb rb resource - 20268ABE + EDE2A195 hpxml_defaults.rb rb resource - 9C9F94F7 + 932395EE hpxml_schema/HPXML.xsd xsd resource - BB0FF5BB + 572286DE hpxml_schema/README.md @@ -280,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - F76DC990 + 7EE89A2E hpxml_schematron/iso-schematron.xsd @@ -292,19 +340,19 @@ hvac.rb rb resource - B014F262 + A060839F hvac_sizing.rb rb resource - 00BE0F0C + 7CE7B6AB lighting.rb rb resource - A109B2B5 + 4D3BB4E9 location.rb @@ -316,19 +364,19 @@ materials.rb rb resource - 24DCB986 + 74EB5B1D meta_measure.rb rb resource - 17DD9336 + 3FCE13DD minitest_helper.rb rb resource - CDB0A906 + 923B05E5 misc_loads.rb @@ -472,7 +520,7 @@ schedules.rb rb resource - 62152E07 + 06478FFB simcontrols.rb @@ -484,7 +532,7 @@ unit_conversions.rb rb resource - 6D8BA8E5 + 7954C9BD util.rb @@ -508,13 +556,13 @@ waterheater.rb rb resource - 73019632 + EFED6196 weather.rb rb resource - 6E12B2EB + 6A61B98A xmlhelper.rb @@ -526,7 +574,7 @@ xmlvalidator.rb rb resource - 84D0E4E1 + 87937B84 test_airflow.rb @@ -544,13 +592,13 @@ test_defaults.rb rb test - C42C6EE4 + 75775259 test_enclosure.rb rb test - 833E46A5 + 427AA4EF test_generator.rb @@ -568,13 +616,13 @@ test_hvac.rb rb test - 19EE9DA5 + 5567231B test_hvac_sizing.rb rb test - E2E504ED + EC19A8C1 test_lighting.rb @@ -604,19 +652,19 @@ test_schedules.rb rb test - 19948562 + 76D882A7 test_simcontrols.rb rb test - 800361DB + 211EB384 test_validation.rb rb test - C1EF0839 + EAD345DF test_water_heater.rb diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb index 39310eb5f4..80bc06ec05 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb @@ -86,6 +86,12 @@ def self.IECCZones '4A', '4B', '4C', '5A', '5B', '5C', '6A', '6B', '6C', '7', '8'] end + def self.MoistureTypes + return [HPXML::SiteSoilMoistureTypeDry, + HPXML::SiteSoilMoistureTypeMixed, + HPXML::SiteSoilMoistureTypeWet] + end + def self.ObjectNameAirSourceHeatPump return 'air source heat pump' end @@ -386,6 +392,16 @@ def self.ScheduleTypeLimitsTemperature return 'Temperature' end + def self.SoilTypes + return [HPXML::SiteSoilTypeClay, + HPXML::SiteSoilTypeGravel, + HPXML::SiteSoilTypeLoam, + # HPXML::SiteSoilTypeOther, + HPXML::SiteSoilTypeSand, + HPXML::SiteSoilTypeSilt, + HPXML::SiteSoilTypeUnknown] + end + def self.StateCodesMap return { 'AK' => 'Alaska', 'AL' => 'Alabama', diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb index dbc7ea93ea..cbd5affc16 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb @@ -3,11 +3,24 @@ class Constructions # Container class for walls, floors/ceilings, roofs, etc. - def self.apply_wood_stud_wall(model, surfaces, constr_name, - cavity_r, install_grade, cavity_depth_in, cavity_filled, - framing_factor, mat_int_finish, osb_thick_in, - rigid_r, mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_wood_stud_wall(model, + surfaces, + constr_name, + cavity_r, + install_grade, + cavity_depth_in, + cavity_filled, + framing_factor, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -35,6 +48,10 @@ def self.apply_wood_stud_wall(model, surfaces, constr_name, rigid_thick_in = rigid_r * BaseMaterial.InsulationRigid.k_in mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end # Set paths gapFactor = get_gap_factor(install_grade, framing_factor, cavity_r) @@ -56,21 +73,40 @@ def self.apply_wood_stud_wall(model, surfaces, constr_name, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + + if not mat_rb.nil? + constr.add_layer(mat_rb) + end + constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) end - def self.apply_double_stud_wall(model, surfaces, constr_name, - cavity_r, install_grade, stud_depth_in, gap_depth_in, - framing_factor, framing_spacing, is_staggered, - mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_double_stud_wall(model, + surfaces, + constr_name, + cavity_r, + install_grade, + stud_depth_in, + gap_depth_in, + framing_factor, + framing_spacing, + is_staggered, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -94,6 +130,11 @@ def self.apply_double_stud_wall(model, surfaces, constr_name, mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end + # Set paths stud_frac = 1.5 / framing_spacing misc_framing_factor = framing_factor - stud_frac @@ -129,21 +170,40 @@ def self.apply_double_stud_wall(model, surfaces, constr_name, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + + if not mat_rb.nil? + constr.add_layer(mat_rb) + end + constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) end - def self.apply_cmu_wall(model, surfaces, constr_name, - thick_in, conductivity, density, framing_factor, - furring_r, furring_cavity_depth, furring_spacing, - mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_cmu_wall(model, + surfaces, + constr_name, + thick_in, + conductivity, + density, + framing_factor, + furring_r, + furring_cavity_depth, + furring_spacing, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -169,6 +229,10 @@ def self.apply_cmu_wall(model, surfaces, constr_name, rigid_thick_in = rigid_r * BaseMaterial.InsulationRigid.k_in mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end # Set paths if not mat_furring.nil? @@ -200,20 +264,36 @@ def self.apply_cmu_wall(model, surfaces, constr_name, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + if not mat_rb.nil? + constr.add_layer(mat_rb) + end + constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) end - def self.apply_icf_wall(model, surfaces, constr_name, - icf_r, ins_thick_in, concrete_thick_in, framing_factor, - mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_icf_wall(model, + surfaces, + constr_name, + icf_r, + ins_thick_in, + concrete_thick_in, + framing_factor, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -232,6 +312,11 @@ def self.apply_icf_wall(model, surfaces, constr_name, mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end + # Set paths path_fracs = [framing_factor, 1.0 - framing_factor] @@ -253,20 +338,36 @@ def self.apply_icf_wall(model, surfaces, constr_name, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + + if not mat_rb.nil? + constr.add_layer(mat_rb) + end constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) end - def self.apply_sip_wall(model, surfaces, constr_name, sip_r, - sip_thick_in, framing_factor, sheathing_thick_in, - mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_sip_wall(model, + surfaces, + constr_name, + sip_r, + sip_thick_in, + framing_factor, + sheathing_thick_in, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -289,6 +390,11 @@ def self.apply_sip_wall(model, surfaces, constr_name, sip_r, mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end + # Set paths spline_frac = 4.0 / 48.0 # One 4" spline for every 48" wide panel cavity_frac = 1.0 - (spline_frac + framing_factor) @@ -313,21 +419,39 @@ def self.apply_sip_wall(model, surfaces, constr_name, sip_r, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + + if not mat_rb.nil? + constr.add_layer(mat_rb) + end + constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) end - def self.apply_steel_stud_wall(model, surfaces, constr_name, - cavity_r, install_grade, cavity_depth, - cavity_filled, framing_factor, correction_factor, - mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_steel_stud_wall(model, + surfaces, + constr_name, + cavity_r, + install_grade, + cavity_depth, + cavity_filled, + framing_factor, + correction_factor, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -356,6 +480,11 @@ def self.apply_steel_stud_wall(model, surfaces, constr_name, mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end + # Set paths gapFactor = get_gap_factor(install_grade, framing_factor, cavity_r) path_fracs = [1 - gapFactor, gapFactor] @@ -376,20 +505,37 @@ def self.apply_steel_stud_wall(model, surfaces, constr_name, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + + if not mat_rb.nil? + constr.add_layer(mat_rb) + end + constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) end - def self.apply_generic_layered_wall(model, surfaces, constr_name, - thick_ins, conds, denss, specheats, - mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + def self.apply_generic_layered_wall(model, + surfaces, + constr_name, + thick_ins, + conds, + denss, + specheats, + mat_int_finish, + osb_thick_in, + rigid_r, + mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance = nil, + emittance = nil) return if surfaces.empty? @@ -424,6 +570,10 @@ def self.apply_generic_layered_wall(model, surfaces, constr_name, rigid_thick_in = rigid_r * BaseMaterial.InsulationRigid.k_in mat_rigid = Material.new(name: 'wall rigid ins', thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) + end # Set paths path_fracs = [1] @@ -446,10 +596,14 @@ def self.apply_generic_layered_wall(model, surfaces, constr_name, if not mat_int_finish.nil? constr.add_layer(mat_int_finish) end + if not mat_rb.nil? + constr.add_layer(mat_rb) + end + constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) @@ -554,7 +708,7 @@ def self.apply_open_cavity_roof(model, surfaces, constr_name, end mat_rb = nil if has_radiant_barrier - mat_rb = Material.RadiantBarrier(radiant_barrier_grade) + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) end # Set paths @@ -623,7 +777,7 @@ def self.apply_closed_cavity_roof(model, surfaces, constr_name, end mat_rb = nil if has_radiant_barrier - mat_rb = Material.RadiantBarrier(radiant_barrier_grade) + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, false) end # Set paths @@ -662,7 +816,7 @@ def self.apply_wood_frame_floor_ceiling(model, surfaces, constr_name, is_ceiling cavity_r, install_grade, framing_factor, joist_height_in, plywood_thick_in, rigid_r, mat_int_finish_or_covering, - inside_film, outside_film) + has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) # Interior finish below, open cavity above (e.g., attic floor) # Open cavity below, floor covering above (e.g., crawlspace ceiling) @@ -681,8 +835,13 @@ def self.apply_wood_frame_floor_ceiling(model, surfaces, constr_name, is_ceiling addtl_thick_in = rigid_r / 3.0 # Assume roughly R-3 per inch of loose-fill above cavity mat_addtl_ins = Material.new(name: 'ceiling loosefill ins', thick_in: addtl_thick_in, mat_base: BaseMaterial.InsulationGenericLoosefill, k_in: addtl_thick_in / rigid_r) end + mat_cavity = Material.new(thick_in: joist_height_in, mat_base: BaseMaterial.InsulationGenericLoosefill, k_in: joist_height_in / cavity_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, true) + end mat_framing = Material.new(thick_in: joist_height_in, mat_base: BaseMaterial.Wood) mat_gap = Material.AirCavityOpen(joist_height_in) @@ -693,6 +852,9 @@ def self.apply_wood_frame_floor_ceiling(model, surfaces, constr_name, is_ceiling # Define construction constr = Construction.new(constr_name, path_fracs) constr.add_layer(outside_film) + if not mat_rb.nil? + constr.add_layer(mat_rb) + end if not mat_addtl_ins.nil? constr.add_layer(mat_addtl_ins) end @@ -724,6 +886,9 @@ def self.apply_wood_frame_floor_ceiling(model, surfaces, constr_name, is_ceiling # Define construction constr = Construction.new(constr_name, path_fracs) constr.add_layer(outside_film) + if not mat_rb.nil? + constr.add_layer(mat_rb) + end constr.add_layer([mat_framing, mat_cavity, mat_gap], 'floor stud and cavity') if not mat_rigid.nil? constr.add_layer(mat_rigid) @@ -737,7 +902,7 @@ def self.apply_wood_frame_floor_ceiling(model, surfaces, constr_name, is_ceiling constr.add_layer(inside_film) end - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) @@ -747,7 +912,7 @@ def self.apply_steel_frame_floor_ceiling(model, surfaces, constr_name, is_ceilin cavity_r, install_grade, framing_factor, correction_factor, joist_height_in, plywood_thick_in, rigid_r, mat_int_finish_or_covering, - inside_film, outside_film) + has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) # Interior finish below, open cavity above (e.g., attic floor) # Open cavity below, floor covering above (e.g., crawlspace ceiling) @@ -769,6 +934,10 @@ def self.apply_steel_frame_floor_ceiling(model, surfaces, constr_name, is_ceilin end mat_cavity = Material.new(thick_in: joist_height_in, mat_base: BaseMaterial.InsulationGenericLoosefill, k_in: joist_height_in / eR) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, true) + end mat_gap = Material.AirCavityOpen(joist_height_in) # Set paths @@ -778,6 +947,9 @@ def self.apply_steel_frame_floor_ceiling(model, surfaces, constr_name, is_ceilin # Define construction constr = Construction.new(constr_name, path_fracs) constr.add_layer(outside_film) + if not mat_rb.nil? + constr.add_layer(mat_rb) + end if not mat_addtl_ins.nil? constr.add_layer(mat_addtl_ins) end @@ -822,7 +994,7 @@ def self.apply_steel_frame_floor_ceiling(model, surfaces, constr_name, is_ceilin constr.add_layer(inside_film) end - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) @@ -831,8 +1003,8 @@ def self.apply_steel_frame_floor_ceiling(model, surfaces, constr_name, is_ceilin def self.apply_sip_floor_ceiling(model, surfaces, constr_name, is_ceiling, sip_r, sip_thick_in, framing_factor, mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + mat_ext_finish, has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance = nil, emittance = nil) return if surfaces.empty? @@ -859,6 +1031,10 @@ def self.apply_sip_floor_ceiling(model, surfaces, constr_name, is_ceiling, rigid_thick_in = rigid_r * BaseMaterial.InsulationRigid.k_in mat_rigid = Material.new(name: "#{constr_type} rigid ins", thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, true) + end # Set paths spline_frac = 4.0 / 48.0 # One 4" spline for every 48" wide panel @@ -871,6 +1047,9 @@ def self.apply_sip_floor_ceiling(model, surfaces, constr_name, is_ceiling, if not mat_ext_finish.nil? constr.add_layer(mat_ext_finish) end + if not mat_rb.nil? + constr.add_layer(mat_rb) + end constr.add_layer([mat_framing_inner_outer, mat_spline, mat_ins_inner_outer], "#{constr_type} spline layer") constr.add_layer([mat_framing_middle, mat_ins_middle, mat_ins_middle], "#{constr_type} ins layer") constr.add_layer([mat_framing_inner_outer, mat_spline, mat_ins_inner_outer], "#{constr_type} spline layer") @@ -886,7 +1065,7 @@ def self.apply_sip_floor_ceiling(model, surfaces, constr_name, is_ceiling, constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) @@ -895,8 +1074,8 @@ def self.apply_sip_floor_ceiling(model, surfaces, constr_name, is_ceiling, def self.apply_generic_layered_floor_ceiling(model, surfaces, constr_name, is_ceiling, thick_ins, conds, denss, specheats, mat_int_finish, osb_thick_in, rigid_r, - mat_ext_finish, inside_film, outside_film, - solar_absorptance = nil, emittance = nil) + mat_ext_finish, has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance = nil, emittance = nil) return if surfaces.empty? @@ -937,7 +1116,10 @@ def self.apply_generic_layered_floor_ceiling(model, surfaces, constr_name, is_ce rigid_thick_in = rigid_r * BaseMaterial.InsulationRigid.k_in mat_rigid = Material.new(name: "#{constr_type} rigid ins", thick_in: rigid_thick_in, mat_base: BaseMaterial.InsulationRigid, k_in: rigid_thick_in / rigid_r) end - + mat_rb = nil + if has_radiant_barrier + mat_rb = Material.RadiantBarrier(radiant_barrier_grade, true) + end # Set paths path_fracs = [1] @@ -947,6 +1129,9 @@ def self.apply_generic_layered_floor_ceiling(model, surfaces, constr_name, is_ce if not mat_ext_finish.nil? constr.add_layer(mat_ext_finish) end + if not mat_rb.nil? + constr.add_layer(mat_rb) + end mats.each do |mat| constr.add_layer(mat) end @@ -962,7 +1147,7 @@ def self.apply_generic_layered_floor_ceiling(model, surfaces, constr_name, is_ce constr.add_layer(inside_film) constr.set_exterior_material_properties(solar_absorptance, emittance) - constr.set_interior_material_properties() + constr.set_interior_material_properties() unless has_radiant_barrier # Create and assign construction to surfaces constr.create_and_assign_constructions(surfaces, model) @@ -1092,11 +1277,24 @@ def self.apply_partition_walls(model, constr_name, mat_int_finish, partition_wal obj_name = 'partition wall mass' imdef = create_os_int_mass_and_def(model, obj_name, spaces[HPXML::LocationConditionedSpace], partition_wall_area) - apply_wood_stud_wall(model, [imdef], constr_name, - 0, 1, 3.5, false, 0.16, - mat_int_finish, 0, 0, mat_int_finish, + apply_wood_stud_wall(model, + [imdef], + constr_name, + 0, + 1, + 3.5, + false, + 0.16, + mat_int_finish, + 0, + 0, + mat_int_finish, + false, + Material.AirFilmVertical, Material.AirFilmVertical, - Material.AirFilmVertical) + 1, + nil, + nil) end def self.apply_furniture(model, furniture_mass, spaces) @@ -1690,9 +1888,20 @@ def self.calc_non_cavity_r(film_r, constr_set) return non_cavity_r end - def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, assembly_r, - mat_int_finish, inside_film, outside_film, mat_ext_finish, - solar_absorptance, emittance) + def self.apply_wall_construction(runner, + model, + surfaces, + wall_id, + wall_type, + assembly_r, + mat_int_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + mat_ext_finish, + solar_absorptance, + emittance) if mat_ext_finish.nil? fallback_mat_ext_finish = nil @@ -1718,12 +1927,23 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as ] match, constr_set, cavity_r = pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film) - apply_wood_stud_wall(model, surfaces, "#{wall_id} construction", - cavity_r, install_grade, constr_set.stud.thick_in, - cavity_filled, constr_set.framing_factor, - constr_set.mat_int_finish, constr_set.osb_thick_in, - constr_set.rigid_r, constr_set.mat_ext_finish, - inside_film, outside_film, solar_absorptance, + apply_wood_stud_wall(model, + surfaces, + "#{wall_id} construction", + cavity_r, + install_grade, + constr_set.stud.thick_in, + cavity_filled, + constr_set.framing_factor, + constr_set.mat_int_finish, + constr_set.osb_thick_in, + constr_set.rigid_r, + constr_set.mat_ext_finish, + has_radiant_barrier, + inside_film, + outside_film, + radiant_barrier_grade, + solar_absorptance, emittance) elsif wall_type == HPXML::WallTypeSteelStud install_grade = 1 @@ -1744,8 +1964,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as cavity_filled, constr_set.framing_factor, constr_set.corr_factor, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, - constr_set.mat_ext_finish, inside_film, outside_film, - solar_absorptance, emittance) + constr_set.mat_ext_finish, has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance, emittance) elsif wall_type == HPXML::WallTypeDoubleWoodStud install_grade = 1 is_staggered = false @@ -1762,7 +1982,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as constr_set.framing_spacing, is_staggered, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, constr_set.mat_ext_finish, - inside_film, outside_film, solar_absorptance, + has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance, emittance) elsif wall_type == HPXML::WallTypeCMU density = 119.0 # lb/ft^3 @@ -1781,8 +2002,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as constr_set.framing_factor, furring_r, furring_cavity_depth_in, furring_spacing, constr_set.mat_int_finish, constr_set.osb_thick_in, - rigid_r, constr_set.mat_ext_finish, inside_film, - outside_film, solar_absorptance, emittance) + rigid_r, constr_set.mat_ext_finish, has_radiant_barrier, inside_film, + outside_film, radiant_barrier_grade, solar_absorptance, emittance) elsif wall_type == HPXML::WallTypeSIP sheathing_thick_in = 0.44 @@ -1797,8 +2018,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as cavity_r, constr_set.thick_in, constr_set.framing_factor, constr_set.sheath_thick_in, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, - constr_set.mat_ext_finish, inside_film, outside_film, - solar_absorptance, emittance) + constr_set.mat_ext_finish, has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance, emittance) elsif wall_type == HPXML::WallTypeICF constr_sets = [ ICFConstructionSet.new(2.0, 4.0, 0.08, 0.0, 0.5, mat_int_finish, mat_ext_finish), # ICF w/4" concrete and 2" rigid ins layers @@ -1811,7 +2032,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as constr_set.concrete_thick_in, constr_set.framing_factor, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, constr_set.mat_ext_finish, - inside_film, outside_film, solar_absorptance, + has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance, emittance) elsif [HPXML::WallTypeConcrete, HPXML::WallTypeBrick, HPXML::WallTypeAdobe, HPXML::WallTypeStrawBale, HPXML::WallTypeStone, HPXML::WallTypeLog].include? wall_type constr_sets = [ @@ -1853,7 +2075,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as thick_ins, conds, denss, specheats, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, constr_set.mat_ext_finish, - inside_film, outside_film, solar_absorptance, + has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade, solar_absorptance, emittance) else fail "Unexpected wall type '#{wall_type}'." @@ -1863,7 +2086,8 @@ def self.apply_wall_construction(runner, model, surfaces, wall_id, wall_type, as end def self.apply_floor_ceiling_construction(runner, model, surface, floor_id, floor_type, is_ceiling, assembly_r, - mat_int_finish_or_covering, inside_film, outside_film) + mat_int_finish_or_covering, has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade) if mat_int_finish_or_covering.nil? fallback_mat_int_finish_or_covering = nil @@ -1895,7 +2119,7 @@ def self.apply_floor_ceiling_construction(runner, model, surface, floor_id, floo cavity_r, install_grade, constr_set.framing_factor, constr_set.stud.thick_in, constr_set.osb_thick_in, constr_set.rigid_r, constr_int_finish_or_covering, - inside_film, outside_film) + has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) elsif floor_type == HPXML::FloorTypeSteelFrame install_grade = 1 @@ -1917,7 +2141,7 @@ def self.apply_floor_ceiling_construction(runner, model, surface, floor_id, floo cavity_r, install_grade, constr_set.framing_factor, constr_set.corr_factor, constr_set.cavity_thick_in, constr_set.osb_thick_in, constr_set.rigid_r, constr_int_finish_or_covering, - inside_film, outside_film) + has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) elsif floor_type == HPXML::FloorTypeSIP constr_sets = [ @@ -1931,7 +2155,7 @@ def self.apply_floor_ceiling_construction(runner, model, surface, floor_id, floo apply_sip_floor_ceiling(model, surface, "#{floor_id} construction", is_ceiling, cavity_r, constr_set.thick_in, constr_set.framing_factor, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, - constr_set.mat_ext_finish, inside_film, outside_film) + constr_set.mat_ext_finish, has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) elsif floor_type == HPXML::FloorTypeConcrete constr_sets = [ GenericConstructionSet.new(20.0, osb_thick_in, mat_int_finish_or_covering, nil), # w/R-20 rigid @@ -1956,7 +2180,8 @@ def self.apply_floor_ceiling_construction(runner, model, surface, floor_id, floo thick_ins, conds, denss, specheats, constr_set.mat_int_finish, constr_set.osb_thick_in, constr_set.rigid_r, constr_set.mat_ext_finish, - inside_film, outside_film) + has_radiant_barrier, inside_film, outside_film, + radiant_barrier_grade) else fail "Unexpected floor type '#{floor_type}'." end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index 96d9d42f75..c616da8200 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -48,13 +48,8 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cw_power_schedule = nil cw_col_name = SchedulesFile::ColumnClothesWasher cw_object_name = Constants.ObjectNameClothesWasher - metered_clothes_washer_IMEF = 2.07 - if clothes_washer.integrated_modified_energy_factor.nil? - clothes_washer.integrated_modified_energy_factor = 2.07 - end - clothes_washer_power_multiplier = metered_clothes_washer_IMEF/clothes_washer.integrated_modified_energy_factor if not schedules_file.nil? - cw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: cw_col_name) * clothes_washer_power_multiplier + cw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: cw_col_name, daily_kwh: cw_annual_kwh / 365.0) cw_power_schedule = schedules_file.create_schedule_file(model, col_name: cw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cw_power_schedule.nil? @@ -84,17 +79,8 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cd_schedule = nil cd_col_name = SchedulesFile::ColumnClothesDryer cd_obj_name = Constants.ObjectNameClothesDryer - metered_clothes_dryer_CEF = 2.68 - if clothes_dryer.combined_energy_factor.nil? - clothes_dryer.combined_energy_factor = 2.68 - end - clothes_dryer_power_multiplier = metered_clothes_dryer_CEF/clothes_dryer.combined_energy_factor if not schedules_file.nil? - if clothes_dryer.fuel_type == HPXML::FuelTypeElectricity - cd_design_level_e = clothes_dryer_power_multiplier * schedules_file.calc_design_level_from_schedule_max(col_name: cd_col_name) - else - cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) - end + cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) cd_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cd_col_name, annual_therm: cd_annual_therm) cd_schedule = schedules_file.create_schedule_file(model, col_name: cd_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end @@ -127,13 +113,8 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat dw_power_schedule = nil dw_col_name = SchedulesFile::ColumnDishwasher dw_obj_name = Constants.ObjectNameDishwasher - metered_dishwasher_rated_annual_kwh = 240 - if dishwasher.rated_annual_kwh.nil? - dishwasher.rated_annual_kwh = 240 - end - dishwasher_power_multiplier = dishwasher.rated_annual_kwh/metered_dishwasher_rated_annual_kwh if not schedules_file.nil? - dw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: dw_col_name) * dishwasher_power_multiplier + dw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: dw_col_name, daily_kwh: dw_annual_kwh / 365.0) dw_power_schedule = schedules_file.create_schedule_file(model, col_name: dw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if dw_power_schedule.nil? @@ -220,22 +201,13 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat # Cooking Range energy if not cooking_range.nil? cook_annual_kwh, cook_annual_therm, cook_frac_sens, cook_frac_lat = calc_range_oven_energy(nbeds, cooking_range, oven, cooking_range.additional_properties.space.nil?) - if cooking_range.is_induction - burner_ef = 0.91 - else - burner_ef = 1.0 - end # Create schedule cook_schedule = nil cook_col_name = SchedulesFile::ColumnCookingRange cook_obj_name = Constants.ObjectNameCookingRange if not schedules_file.nil? - if cooking_range.fuel_type == HPXML::FuelTypeElectricity - cook_design_level_e = burner_ef * schedules_file.calc_design_level_from_schedule_max(col_name: cook_col_name) - else - cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) - end + cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) cook_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cook_col_name, annual_therm: cook_annual_therm) cook_schedule = schedules_file.create_schedule_file(model, col_name: cook_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb index e3026ca2c8..92c8c96dd8 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb @@ -153,11 +153,26 @@ class HPXML < Object FuelTypeWoodPellets = 'wood pellets' FurnitureMassTypeLightWeight = 'light-weight' FurnitureMassTypeHeavyWeight = 'heavy-weight' + GeothermalLoopBorefieldConfigurationRectangle = 'Rectangle' + GeothermalLoopBorefieldConfigurationZonedRectangle = 'Zoned Rectangle' + GeothermalLoopBorefieldConfigurationOpenRectangle = 'Open Rectangle' + GeothermalLoopBorefieldConfigurationC = 'C' + GeothermalLoopBorefieldConfigurationL = 'L' + GeothermalLoopBorefieldConfigurationU = 'U' + GeothermalLoopBorefieldConfigurationLopsidedU = 'Lopsided U' + GeothermalLoopLoopConfigurationDiagonal = 'diagonal' + GeothermalLoopLoopConfigurationHorizontal = 'horizontal' + GeothermalLoopLoopConfigurationOther = 'other' + GeothermalLoopLoopConfigurationVertical = 'vertical' + GeothermalLoopGroutOrPipeTypeStandard = 'standard' + GeothermalLoopGroutOrPipeTypeThermallyEnhanced = 'thermally enhanced' HeaterTypeElectricResistance = 'electric resistance' HeaterTypeGas = 'gas fired' HeaterTypeHeatPump = 'heat pump' HeatPumpBackupTypeIntegrated = 'integrated' HeatPumpBackupTypeSeparate = 'separate' + HeatPumpBackupSizingEmergency = 'emergency' + HeatPumpBackupSizingSupplemental = 'supplemental' HeatPumpSizingACCA = 'ACCA' HeatPumpSizingHERS = 'HERS' HeatPumpSizingMaxLoad = 'MaxLoad' @@ -273,6 +288,9 @@ class HPXML < Object PVTrackingType1Axis = '1-axis' PVTrackingType1AxisBacktracked = '1-axis backtracked' PVTrackingType2Axis = '2-axis' + RadiantBarrierLocationAtticRoofOnly = 'Attic roof only' + RadiantBarrierLocationAtticRoofAndGableWalls = 'Attic roof and gable walls' + RadiantBarrierLocationAtticFloor = 'Attic floor' ResidentialTypeApartment = 'apartment unit' ResidentialTypeManufactured = 'manufactured home' ResidentialTypeSFA = 'single-family attached' @@ -303,6 +321,16 @@ class HPXML < Object SidingTypeSyntheticStucco = 'synthetic stucco' SidingTypeVinyl = 'vinyl siding' SidingTypeWood = 'wood siding' + SiteSoilMoistureTypeDry = 'dry' + SiteSoilMoistureTypeMixed = 'mixed' + SiteSoilMoistureTypeWet = 'wet' + SiteSoilTypeClay = 'clay' + SiteSoilTypeGravel = 'gravel' + SiteSoilTypeLoam = 'loam' + SiteSoilTypeOther = 'other' + SiteSoilTypeSand = 'sand' + SiteSoilTypeSilt = 'silt' + SiteSoilTypeUnknown = 'unknown' SiteTypeUrban = 'urban' SiteTypeSuburban = 'suburban' SiteTypeRural = 'rural' @@ -410,6 +438,7 @@ def initialize(hpxml_path: nil, schema_validator: nil, schematron_validator: nil @hpxml_path = hpxml_path @errors = [] @warnings = [] + building_id = nil if building_id.to_s.empty? hpxml_doc = nil if not hpxml_path.nil? @@ -427,16 +456,25 @@ def initialize(hpxml_path: nil, schema_validator: nil, schematron_validator: nil hpxml_doc = XMLHelper.get_element(doc, '/HPXML') Version.check_hpxml_version(XMLHelper.get_attribute_value(hpxml_doc, 'schemaVersion')) + # Get value of WholeSFAorMFBuildingSimulation element + whole_sfa_or_mf_building_sim = XMLHelper.get_value(hpxml_doc, 'SoftwareInfo/extension/WholeSFAorMFBuildingSimulation', :boolean) + whole_sfa_or_mf_building_sim = false if whole_sfa_or_mf_building_sim.nil? + has_mult_building_elements = XMLHelper.get_elements(hpxml_doc, 'Building').size > 1 + if has_mult_building_elements + if building_id.nil? && !whole_sfa_or_mf_building_sim + @errors << 'Multiple Building elements defined in HPXML file; provide Building ID argument or set WholeSFAorMFBuildingSimulation=true.' + return unless @errors.empty? + elsif whole_sfa_or_mf_building_sim && (not building_id.nil?) + @warnings << 'Multiple Building elements defined in HPXML file and WholeSFAorMFBuildingSimulation=true; Building ID argument will be ignored.' + building_id = nil + end + end + # Handle multiple buildings # Do this before schematron validation so that: # 1. We don't give schematron warnings for Building elements that are not of interest. # 2. The schematron validation occurs faster (as we're only validating one Building). - if (XMLHelper.get_elements(hpxml_doc, 'Building').size > 1) && (building_id.to_s.downcase != 'all') - if building_id.nil? - @errors << 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' - return unless @errors.empty? - end - + if has_mult_building_elements && (not building_id.nil?) # Discard all Building elements except the one of interest XMLHelper.get_elements(hpxml_doc, 'Building').reverse_each do |building| next if XMLHelper.get_attribute_value(XMLHelper.get_element(building, 'BuildingID'), 'id') == building_id @@ -654,7 +692,7 @@ def initialize(hpxml_object, *args) :software_program_version, :apply_ashrae140_assumptions, :temperature_capacitance_multiplier, :timestep, :sim_begin_month, :sim_begin_day, :sim_end_month, :sim_end_day, :sim_calendar_year, :eri_calculation_version, :co2index_calculation_version, :energystar_calculation_version, - :iecc_eri_calculation_version, :zerh_calculation_version] + :iecc_eri_calculation_version, :zerh_calculation_version, :whole_sfa_or_mf_building_sim] attr_accessor(*ATTRS) attr_reader(:emissions_scenarios) attr_reader(:utility_bill_scenarios) @@ -702,6 +740,7 @@ def to_doc(doc) XMLHelper.add_element(software_info, 'SoftwareProgramUsed', @software_program_used, :string) unless @software_program_used.nil? XMLHelper.add_element(software_info, 'SoftwareProgramVersion', @software_program_version, :string) unless @software_program_version.nil? XMLHelper.add_extension(software_info, 'ApplyASHRAE140Assumptions', @apply_ashrae140_assumptions, :boolean) unless @apply_ashrae140_assumptions.nil? + XMLHelper.add_extension(software_info, 'WholeSFAorMFBuildingSimulation', @whole_sfa_or_mf_building_sim, :boolean) unless @whole_sfa_or_mf_building_sim.nil? { 'ERICalculation' => @eri_calculation_version, 'CO2IndexCalculation' => @co2index_calculation_version, 'EnergyStarCalculation' => @energystar_calculation_version, @@ -751,6 +790,7 @@ def from_doc(hpxml) @sim_calendar_year = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/CalendarYear', :integer) @temperature_capacitance_multiplier = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/TemperatureCapacitanceMultiplier', :float) @apply_ashrae140_assumptions = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ApplyASHRAE140Assumptions', :boolean) + @whole_sfa_or_mf_building_sim = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/WholeSFAorMFBuildingSimulation', :boolean) @emissions_scenarios.from_doc(XMLHelper.get_element(hpxml, 'SoftwareInfo')) @utility_bill_scenarios.from_doc(XMLHelper.get_element(hpxml, 'SoftwareInfo')) @unavailable_periods.from_doc(XMLHelper.get_element(hpxml, 'SoftwareInfo')) @@ -1051,7 +1091,7 @@ class Building < BaseElement :climate_and_risk_zones, :air_infiltration, :air_infiltration_measurements, :attics, :foundations, :roofs, :rim_joists, :walls, :foundation_walls, :floors, :slabs, :windows, :skylights, :doors, :partition_wall_mass, :furniture_mass, :heating_systems, - :cooling_systems, :heat_pumps, :hvac_plant, :hvac_controls, :hvac_distributions, + :cooling_systems, :heat_pumps, :geothermal_loops, :hvac_plant, :hvac_controls, :hvac_distributions, :ventilation_fans, :water_heating_systems, :hot_water_distributions, :water_fixtures, :water_heating, :solar_thermal_systems, :pv_systems, :inverters, :generators, :batteries, :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, @@ -1140,6 +1180,7 @@ def to_doc(doc) @heating_systems.to_doc(building) @cooling_systems.to_doc(building) @heat_pumps.to_doc(building) + @geothermal_loops.to_doc(building) @hvac_plant.to_doc(building) @hvac_controls.to_doc(building) @hvac_distributions.to_doc(building) @@ -1213,6 +1254,7 @@ def from_doc(building) @heating_systems = HeatingSystems.new(self, building) @cooling_systems = CoolingSystems.new(self, building) @heat_pumps = HeatPumps.new(self, building) + @geothermal_loops = GeothermalLoops.new(self, building) @hvac_plant = HVACPlant.new(self, building) @hvac_controls = HVACControls.new(self, building) @hvac_distributions = HVACDistributions.new(self, building) @@ -1697,7 +1739,7 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) class Site < BaseElement ATTRS = [:site_type, :surroundings, :vertical_surroundings, :shielding_of_home, :orientation_of_front_of_home, :azimuth_of_front_of_home, :fuels, - :ground_conductivity] + :soil_type, :moisture_type, :ground_conductivity, :ground_diffusivity] attr_accessor(*ATTRS) def check_for_errors @@ -1721,7 +1763,16 @@ def to_doc(building) XMLHelper.add_element(fuel_types_available, 'Fuel', fuel, :string) end end - XMLHelper.add_extension(site, 'GroundConductivity', @ground_conductivity, :float, @ground_conductivity_isdefaulted) unless @ground_conductivity.nil? + if (not @soil_type.nil?) || (not @moisture_type.nil?) || (not @ground_conductivity.nil?) || (not @ground_diffusivity.nil?) + soil = XMLHelper.add_element(site, 'Soil') + XMLHelper.add_element(soil, 'SoilType', @soil_type, :string, @soil_type_isdefaulted) unless @soil_type.nil? + XMLHelper.add_element(soil, 'MoistureType', @moisture_type, :string, @moisture_type_isdefaulted) unless @moisture_type.nil? + XMLHelper.add_element(soil, 'Conductivity', @ground_conductivity, :float, @ground_conductivity_isdefaulted) unless @ground_conductivity.nil? + if not @ground_diffusivity.nil? + extension = XMLHelper.create_elements_as_needed(soil, ['extension']) + XMLHelper.add_element(extension, 'Diffusivity', @ground_diffusivity, :float, @ground_diffusivity_isdefaulted) unless @ground_diffusivity.nil? + end + end if site.children.size == 0 bldg_summary = XMLHelper.get_element(doc, '/HPXML/Building/BuildingDetails/BuildingSummary') @@ -1742,7 +1793,10 @@ def from_doc(building) @orientation_of_front_of_home = XMLHelper.get_value(site, 'OrientationOfFrontOfHome', :string) @azimuth_of_front_of_home = XMLHelper.get_value(site, 'AzimuthOfFrontOfHome', :integer) @fuels = XMLHelper.get_values(site, 'FuelTypesAvailable/Fuel', :string) - @ground_conductivity = XMLHelper.get_value(site, 'extension/GroundConductivity', :float) + @soil_type = XMLHelper.get_value(site, 'Soil/SoilType', :string) + @moisture_type = XMLHelper.get_value(site, 'Soil/MoistureType', :string) + @ground_conductivity = XMLHelper.get_value(site, 'Soil/Conductivity', :float) + @ground_diffusivity = XMLHelper.get_value(site, 'Soil/extension/Diffusivity', :float) end end @@ -1826,7 +1880,7 @@ class BuildingConstruction < BaseElement ATTRS = [:year_built, :number_of_conditioned_floors, :number_of_conditioned_floors_above_grade, :average_ceiling_height, :number_of_bedrooms, :number_of_bathrooms, :conditioned_floor_area, :conditioned_building_volume, :residential_facility_type, - :building_footprint_area, :number_of_units] + :building_footprint_area, :number_of_units, :number_of_units_in_building] attr_accessor(*ATTRS) def check_for_errors @@ -1841,6 +1895,7 @@ def to_doc(building) XMLHelper.add_element(building_construction, 'YearBuilt', @year_built, :integer) unless @year_built.nil? XMLHelper.add_element(building_construction, 'ResidentialFacilityType', @residential_facility_type, :string) unless @residential_facility_type.nil? XMLHelper.add_element(building_construction, 'NumberofUnits', @number_of_units, :integer, @number_of_units_isdefaulted) unless @number_of_units.nil? + XMLHelper.add_element(building_construction, 'NumberofUnitsInBuilding', @number_of_units_in_building, :integer) unless @number_of_units_in_building.nil? XMLHelper.add_element(building_construction, 'NumberofConditionedFloors', @number_of_conditioned_floors, :float) unless @number_of_conditioned_floors.nil? XMLHelper.add_element(building_construction, 'NumberofConditionedFloorsAboveGrade', @number_of_conditioned_floors_above_grade, :float) unless @number_of_conditioned_floors_above_grade.nil? XMLHelper.add_element(building_construction, 'AverageCeilingHeight', @average_ceiling_height, :float, @average_ceiling_height_isdefaulted) unless @average_ceiling_height.nil? @@ -1860,6 +1915,7 @@ def from_doc(building) @year_built = XMLHelper.get_value(building_construction, 'YearBuilt', :integer) @residential_facility_type = XMLHelper.get_value(building_construction, 'ResidentialFacilityType', :string) @number_of_units = XMLHelper.get_value(building_construction, 'NumberofUnits', :integer) + @number_of_units_in_building = XMLHelper.get_value(building_construction, 'NumberofUnitsInBuilding', :integer) @number_of_conditioned_floors = XMLHelper.get_value(building_construction, 'NumberofConditionedFloors', :float) @number_of_conditioned_floors_above_grade = XMLHelper.get_value(building_construction, 'NumberofConditionedFloorsAboveGrade', :float) @average_ceiling_height = XMLHelper.get_value(building_construction, 'AverageCeilingHeight', :float) @@ -1873,7 +1929,7 @@ def from_doc(building) class BuildingHeader < BaseElement ATTRS = [:schedules_filepaths, :extension_properties, :natvent_days_per_week, - :heat_pump_sizing_methodology, :allow_increased_fixed_capacities, + :heat_pump_sizing_methodology, :heat_pump_backup_sizing_methodology, :allow_increased_fixed_capacities, :shading_summer_begin_month, :shading_summer_begin_day, :shading_summer_end_month, :shading_summer_end_day, :manualj_heating_design_temp, :manualj_cooling_design_temp, :manualj_heating_setpoint, :manualj_cooling_setpoint, :manualj_humidity_setpoint, @@ -1890,9 +1946,10 @@ def to_doc(building) return if nil? building_summary = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary']) - if (not @heat_pump_sizing_methodology.nil?) || (not @allow_increased_fixed_capacities.nil?) + if (not @heat_pump_sizing_methodology.nil?) || (not @allow_increased_fixed_capacities.nil?) || (not @heat_pump_backup_sizing_methodology.nil?) hvac_sizing_control = XMLHelper.create_elements_as_needed(building_summary, ['extension', 'HVACSizingControl']) XMLHelper.add_element(hvac_sizing_control, 'HeatPumpSizingMethodology', @heat_pump_sizing_methodology, :string, @heat_pump_sizing_methodology_isdefaulted) unless @heat_pump_sizing_methodology.nil? + XMLHelper.add_element(hvac_sizing_control, 'HeatPumpBackupSizingMethodology', @heat_pump_backup_sizing_methodology, :string, @heat_pump_backup_sizing_methodology_isdefaulted) unless @heat_pump_backup_sizing_methodology.nil? XMLHelper.add_element(hvac_sizing_control, 'AllowIncreasedFixedCapacities', @allow_increased_fixed_capacities, :boolean, @allow_increased_fixed_capacities_isdefaulted) unless @allow_increased_fixed_capacities.nil? end if (not @manualj_heating_design_temp.nil?) || (not @manualj_cooling_design_temp.nil?) || (not @manualj_heating_setpoint.nil?) || (not @manualj_cooling_setpoint.nil?) || (not @manualj_humidity_setpoint.nil?) || (not @manualj_internal_loads_sensible.nil?) || (not @manualj_internal_loads_latent.nil?) || (not @manualj_num_occupants.nil?) @@ -1937,6 +1994,7 @@ def from_doc(building) @shading_summer_end_month = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/ShadingControl/SummerEndMonth', :integer) @shading_summer_end_day = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/ShadingControl/SummerEndDayOfMonth', :integer) @heat_pump_sizing_methodology = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/HeatPumpSizingMethodology', :string) + @heat_pump_backup_sizing_methodology = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/HeatPumpBackupSizingMethodology', :string) @allow_increased_fixed_capacities = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/AllowIncreasedFixedCapacities', :boolean) @manualj_heating_design_temp = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/HeatingDesignTemperature', :float) @manualj_cooling_design_temp = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/CoolingDesignTemperature', :float) @@ -2870,7 +2928,7 @@ def from_doc(building) class Wall < BaseElement ATTRS = [:id, :exterior_adjacent_to, :interior_adjacent_to, :wall_type, :optimum_value_engineering, - :area, :orientation, :azimuth, :siding, :color, :solar_absorptance, :emittance, :insulation_id, + :area, :orientation, :azimuth, :siding, :color, :solar_absorptance, :emittance, :radiant_barrier, :radiant_barrier_grade, :insulation_id, :insulation_assembly_r_value, :insulation_cavity_r_value, :insulation_continuous_r_value, :interior_finish_type, :interior_finish_thickness, :attic_wall_type, :framing_factor, :framing_size, :framing_spacing, :insulation_grade] @@ -2982,6 +3040,8 @@ def to_doc(building) XMLHelper.add_element(interior_finish, 'Type', @interior_finish_type, :string, @interior_finish_type_isdefaulted) unless @interior_finish_type.nil? XMLHelper.add_element(interior_finish, 'Thickness', @interior_finish_thickness, :float, @interior_finish_thickness_isdefaulted) unless @interior_finish_thickness.nil? end + XMLHelper.add_element(wall, 'RadiantBarrier', @radiant_barrier, :boolean, @radiant_barrier_isdefaulted) unless @radiant_barrier.nil? + XMLHelper.add_element(wall, 'RadiantBarrierGrade', @radiant_barrier_grade, :integer, @radiant_barrier_grade_isdefaulted) unless @radiant_barrier_grade.nil? insulation = XMLHelper.add_element(wall, 'Insulation') sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') if not @insulation_id.nil? @@ -3029,6 +3089,8 @@ def from_doc(wall) @interior_finish_type = XMLHelper.get_value(interior_finish, 'Type', :string) @interior_finish_thickness = XMLHelper.get_value(interior_finish, 'Thickness', :float) end + @radiant_barrier = XMLHelper.get_value(wall, 'RadiantBarrier', :boolean) + @radiant_barrier_grade = XMLHelper.get_value(wall, 'RadiantBarrierGrade', :integer) insulation = XMLHelper.get_element(wall, 'Insulation') if not insulation.nil? @insulation_id = HPXML::get_id(insulation) @@ -3251,7 +3313,7 @@ class Floor < BaseElement ATTRS = [:id, :exterior_adjacent_to, :interior_adjacent_to, :floor_type, :area, :insulation_id, :insulation_assembly_r_value, :insulation_cavity_r_value, :insulation_continuous_r_value, :floor_or_ceiling, :interior_finish_type, :interior_finish_thickness, :insulation_grade, - :framing_factor, :framing_size, :framing_spacing] + :framing_factor, :framing_size, :framing_spacing, :radiant_barrier, :radiant_barrier_grade] attr_accessor(*ATTRS) def is_ceiling @@ -3342,6 +3404,8 @@ def to_doc(building) XMLHelper.add_element(interior_finish, 'Type', @interior_finish_type, :string, @interior_finish_type_isdefaulted) unless @interior_finish_type.nil? XMLHelper.add_element(interior_finish, 'Thickness', @interior_finish_thickness, :float, @interior_finish_thickness_isdefaulted) unless @interior_finish_thickness.nil? end + XMLHelper.add_element(floor, 'RadiantBarrier', @radiant_barrier, :boolean, @radiant_barrier_isdefaulted) unless @radiant_barrier.nil? + XMLHelper.add_element(floor, 'RadiantBarrierGrade', @radiant_barrier_grade, :integer, @radiant_barrier_grade_isdefaulted) unless @radiant_barrier_grade.nil? insulation = XMLHelper.add_element(floor, 'Insulation') sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') if not @insulation_id.nil? @@ -3380,6 +3444,8 @@ def from_doc(floor) @interior_finish_type = XMLHelper.get_value(interior_finish, 'Type', :string) @interior_finish_thickness = XMLHelper.get_value(interior_finish, 'Thickness', :float) end + @radiant_barrier = XMLHelper.get_value(floor, 'RadiantBarrier', :boolean) + @radiant_barrier_grade = XMLHelper.get_value(floor, 'RadiantBarrierGrade', :integer) insulation = XMLHelper.get_element(floor, 'Insulation') if not insulation.nil? @insulation_id = HPXML::get_id(insulation) @@ -4377,6 +4443,111 @@ def from_doc(cooling_system) end end + class GeothermalLoops < BaseArrayElement + def add(**kwargs) + self << GeothermalLoop.new(@parent_object, **kwargs) + end + + def from_doc(building) + return if building.nil? + + XMLHelper.get_elements(building, 'BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop').each do |geothermal_loop| + self << GeothermalLoop.new(@parent_object, geothermal_loop) + end + end + end + + class GeothermalLoop < BaseElement + ATTRS = [:id, :loop_configuration, :loop_flow, :bore_config, :num_bore_holes, :bore_spacing, + :bore_length, :bore_diameter, :grout_type, :grout_conductivity, :pipe_type, + :pipe_conductivity, :pipe_diameter, :shank_spacing] + attr_accessor(*ATTRS) + + def heat_pump + list = [] + @parent_object.heat_pumps.each do |heat_pump| + next if heat_pump.geothermal_loop_idref.nil? + next unless heat_pump.geothermal_loop_idref == @id + + list << heat_pump + end + + if list.size == 0 + fail "Geothermal loop '#{@id}' found but no heat pump attached to it." + elsif list.size > 1 + fail "Multiple heat pumps found attached to geothermal loop '#{@id}'." + end + end + + def delete + @parent_object.geothermal_loops.delete(self) + @parent_object.heat_pumps.each do |heat_pump| + next unless heat_pump.geothermal_loop_idref == @id + + heat_pump.geothermal_loop_idref = nil + end + end + + def check_for_errors + errors = [] + begin; heat_pump; rescue StandardError => e; errors << e.message; end + return errors + end + + def to_doc(building) + return if nil? + + hvac_plant = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + geothermal_loop = XMLHelper.add_element(hvac_plant, 'GeothermalLoop') + sys_id = XMLHelper.add_element(geothermal_loop, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(geothermal_loop, 'LoopConfiguration', @loop_configuration, :string, @loop_configuration_isdefaulted) unless @loop_configuration.nil? + XMLHelper.add_element(geothermal_loop, 'LoopFlow', @loop_flow, :float, @loop_flow_isdefaulted) unless @loop_flow.nil? + if (not @num_bore_holes.nil?) || (not @bore_spacing.nil?) || (not @bore_length.nil?) || (not @bore_diameter.nil?) + boreholes_or_trenches = XMLHelper.add_element(geothermal_loop, 'BoreholesOrTrenches') + XMLHelper.add_element(boreholes_or_trenches, 'Count', @num_bore_holes, :integer, @num_bore_holes_isdefaulted) unless @num_bore_holes.nil? + XMLHelper.add_element(boreholes_or_trenches, 'Length', @bore_length, :float, @bore_length_isdefaulted) unless @bore_length.nil? + XMLHelper.add_element(boreholes_or_trenches, 'Spacing', @bore_spacing, :float, @bore_spacing_isdefaulted) unless @bore_spacing.nil? + XMLHelper.add_element(boreholes_or_trenches, 'Diameter', @bore_diameter, :float, @bore_diameter_isdefaulted) unless @bore_diameter.nil? + end + if (not @grout_type.nil?) || (not @grout_conductivity.nil?) + grout = XMLHelper.add_element(geothermal_loop, 'Grout') + XMLHelper.add_element(grout, 'Type', @grout_type, :string, @grout_type_isdefaulted) unless @grout_type.nil? + XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? + end + if (not @pipe_type.nil?) || (not @pipe_conductivity.nil?) || (not @pipe_diameter.nil?) || (not @shank_spacing.nil?) + pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') + XMLHelper.add_element(pipe, 'Type', @pipe_type, :string, @pipe_type_isdefaulted) unless @pipe_type.nil? + XMLHelper.add_element(pipe, 'Conductivity', @pipe_conductivity, :float, @pipe_conductivity_isdefaulted) unless @pipe_conductivity.nil? + XMLHelper.add_element(pipe, 'Diameter', @pipe_diameter, :float, @pipe_diameter_isdefaulted) unless @pipe_diameter.nil? + XMLHelper.add_element(pipe, 'ShankSpacing', @shank_spacing, :float, @shank_spacing_isdefaulted) unless @shank_spacing.nil? + end + if not @bore_config.nil? + extension = XMLHelper.create_elements_as_needed(geothermal_loop, ['extension']) + XMLHelper.add_element(extension, 'BorefieldConfiguration', @bore_config, :string, @bore_config_isdefaulted) unless @bore_config.nil? + end + end + + def from_doc(geothermal_loop) + return if geothermal_loop.nil? + + @id = HPXML::get_id(geothermal_loop) + @loop_configuration = XMLHelper.get_value(geothermal_loop, 'LoopConfiguration', :string) + @loop_flow = XMLHelper.get_value(geothermal_loop, 'LoopFlow', :float) + @num_bore_holes = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Count', :integer) + @bore_length = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Length', :float) + @bore_spacing = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Spacing', :float) + @bore_diameter = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Diameter', :float) + @grout_type = XMLHelper.get_value(geothermal_loop, 'Grout/Type', :string) + @grout_conductivity = XMLHelper.get_value(geothermal_loop, 'Grout/Conductivity', :float) + @pipe_type = XMLHelper.get_value(geothermal_loop, 'Pipe/Type', :string) + @pipe_conductivity = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) + @pipe_diameter = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) + @shank_spacing = XMLHelper.get_value(geothermal_loop, 'Pipe/ShankSpacing', :float) + @bore_config = XMLHelper.get_value(geothermal_loop, 'extension/BorefieldConfiguration', :string) + end + end + class HeatPumps < BaseArrayElement def add(**kwargs) self << HeatPump.new(@parent_object, **kwargs) @@ -4415,7 +4586,8 @@ def initialize(hpxml_object, *args) :pump_watts_per_ton, :fan_watts_per_cfm, :is_shared_system, :number_of_units_served, :shared_loop_watts, :shared_loop_motor_efficiency, :airflow_defect_ratio, :charge_defect_ratio, :heating_airflow_cfm, :cooling_airflow_cfm, :location, :primary_heating_system, :primary_cooling_system, - :heating_capacity_retention_fraction, :heating_capacity_retention_temp, :crankcase_heater_watts] + :heating_capacity_retention_fraction, :heating_capacity_retention_temp, :crankcase_heater_watts, + :geothermal_loop_idref] attr_accessor(*ATTRS) attr_reader(:cooling_detailed_performance_data) attr_reader(:heating_detailed_performance_data) @@ -4431,6 +4603,17 @@ def distribution_system fail "Attached HVAC distribution system '#{@distribution_system_idref}' not found for HVAC system '#{@id}'." end + def geothermal_loop + return if @geothermal_loop_idref.nil? + + @parent_object.geothermal_loops.each do |geothermal_loop| + next unless geothermal_loop.id == @geothermal_loop_idref + + return geothermal_loop + end + fail "Attached geothermal loop '#{@geothermal_loop_idref}' not found for heat pump '#{@id}'." + end + def is_dual_fuel if backup_system.nil? if @backup_heating_fuel.nil? @@ -4476,6 +4659,7 @@ def delete def check_for_errors errors = [] begin; distribution_system; rescue StandardError => e; errors << e.message; end + begin; geothermal_loop; rescue StandardError => e; errors << e.message; end errors += @cooling_detailed_performance_data.check_for_errors errors += @heating_detailed_performance_data.check_for_errors return errors @@ -4562,6 +4746,10 @@ def to_doc(building) XMLHelper.add_element(annual_efficiency, 'Units', UnitsCOP, :string) XMLHelper.add_element(annual_efficiency, 'Value', @heating_efficiency_cop, :float, @heating_efficiency_cop_isdefaulted) end + if not @geothermal_loop_idref.nil? + attached_to_geothermal_loop = XMLHelper.add_element(heat_pump, 'AttachedToGeothermalLoop') + XMLHelper.add_attribute(attached_to_geothermal_loop, 'idref', @geothermal_loop_idref) + end @cooling_detailed_performance_data.to_doc(heat_pump) @heating_detailed_performance_data.to_doc(heat_pump) XMLHelper.add_extension(heat_pump, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? @@ -4625,6 +4813,7 @@ def from_doc(heat_pump) @heating_efficiency_hspf = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF}']/Value", :float) @heating_efficiency_hspf2 = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF2}']/Value", :float) @heating_efficiency_cop = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) + @geothermal_loop_idref = HPXML::get_idref(XMLHelper.get_element(heat_pump, 'AttachedToGeothermalLoop')) @cooling_detailed_performance_data.from_doc(heat_pump) @heating_detailed_performance_data.from_doc(heat_pump) @airflow_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/AirflowDefectRatio', :float) @@ -6709,6 +6898,9 @@ class Lighting < BaseElement def check_for_errors errors = [] + + errors += HPXML::check_dates('Exterior Holiday Lighting', @holiday_period_begin_month, @holiday_period_begin_day, @holiday_period_end_month, @holiday_period_end_day) + return errors end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 2525eececb..b5f6263265 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -42,7 +42,7 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_doors(hpxml_bldg) apply_partition_wall_mass(hpxml_bldg) apply_furniture_mass(hpxml_bldg) - apply_hvac(runner, hpxml_bldg, weather, convert_shared_systems) + apply_hvac(runner, hpxml, hpxml_bldg, weather, convert_shared_systems) apply_hvac_control(hpxml_bldg, schedules_file) apply_hvac_distribution(hpxml_bldg, ncfl, ncfl_ag) apply_hvac_location(hpxml_bldg) @@ -63,7 +63,7 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_batteries(hpxml_bldg) # Do HVAC sizing after all other defaults have been applied - apply_hvac_sizing(hpxml_bldg, weather, cfa) + apply_hvac_sizing(runner, hpxml_bldg, weather, cfa) # default detailed performance has to be after sizing to have autosized capacity information apply_detailed_performance_data_for_var_speed_systems(hpxml_bldg) @@ -222,6 +222,11 @@ def self.apply_building_header(hpxml_header, hpxml_bldg, weather) hpxml_bldg.header.heat_pump_sizing_methodology_isdefaulted = true end + if hpxml_bldg.header.heat_pump_backup_sizing_methodology.nil? && (hpxml_bldg.heat_pumps.size > 0) + hpxml_bldg.header.heat_pump_backup_sizing_methodology = HPXML::HeatPumpBackupSizingEmergency + hpxml_bldg.header.heat_pump_backup_sizing_methodology_isdefaulted = true + end + if hpxml_bldg.header.allow_increased_fixed_capacities.nil? hpxml_bldg.header.allow_increased_fixed_capacities = false hpxml_bldg.header.allow_increased_fixed_capacities_isdefaulted = true @@ -447,6 +452,80 @@ def self.apply_building(hpxml_bldg, epw_file) hpxml_bldg.time_zone_utc_offset_isdefaulted = true end + if hpxml_bldg.site.soil_type.nil? && hpxml_bldg.site.ground_conductivity.nil? && hpxml_bldg.site.ground_diffusivity.nil? + hpxml_bldg.site.soil_type = HPXML::SiteSoilTypeUnknown + hpxml_bldg.site.soil_type_isdefaulted = true + end + + if hpxml_bldg.site.moisture_type.nil? && hpxml_bldg.site.ground_conductivity.nil? && hpxml_bldg.site.ground_diffusivity.nil? + hpxml_bldg.site.moisture_type = HPXML::SiteSoilMoistureTypeMixed + hpxml_bldg.site.moisture_type_isdefaulted = true + end + + # Conductivity/diffusivity values come from https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4813881 (with the exception of "unknown") + if hpxml_bldg.site.ground_conductivity.nil? && hpxml_bldg.site.ground_diffusivity.nil? + if hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeSand + if hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + hpxml_bldg.site.ground_conductivity = 0.2311 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0097 # ft^2/hr + elsif hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeWet + hpxml_bldg.site.ground_conductivity = 1.3865 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0322 # ft^2/hr + elsif hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + hpxml_bldg.site.ground_conductivity = ((0.2311 + 1.3865) / 2.0).round(4) # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = ((0.0097 + 0.0322) / 2.0).round(4) # ft^2/hr + end + hpxml_bldg.site.ground_conductivity_isdefaulted = true + hpxml_bldg.site.ground_diffusivity_isdefaulted = true + elsif hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeSilt || hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeClay + if hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + hpxml_bldg.site.ground_conductivity = 0.2889 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0120 # ft^2/hr + elsif hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeWet + hpxml_bldg.site.ground_conductivity = 0.9821 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0194 # ft^2/hr + elsif hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + hpxml_bldg.site.ground_conductivity = ((0.2889 + 0.9821) / 2.0).round(4) # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = ((0.0120 + 0.0194) / 2.0).round(4) # ft^2/hr + end + hpxml_bldg.site.ground_conductivity_isdefaulted = true + hpxml_bldg.site.ground_diffusivity_isdefaulted = true + elsif hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeLoam + hpxml_bldg.site.ground_conductivity = 1.2132 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0353 # ft^2/hr + + hpxml_bldg.site.ground_conductivity_isdefaulted = true + hpxml_bldg.site.ground_diffusivity_isdefaulted = true + elsif hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeGravel + if hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + hpxml_bldg.site.ground_conductivity = 0.2311 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0097 # ft^2/hr + elsif hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeWet + hpxml_bldg.site.ground_conductivity = 1.0399 # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = 0.0291 # ft^2/hr + elsif hpxml_bldg.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + hpxml_bldg.site.ground_conductivity = ((0.2311 + 1.0399) / 2.0).round(4) # Btu/hr-ft-F + hpxml_bldg.site.ground_diffusivity = ((0.0097 + 0.0291) / 2.0).round(4) # ft^2/hr + end + hpxml_bldg.site.ground_conductivity_isdefaulted = true + hpxml_bldg.site.ground_diffusivity_isdefaulted = true + elsif hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeUnknown + hpxml_bldg.site.ground_conductivity = 1.0 + hpxml_bldg.site.ground_diffusivity = 0.0208 + hpxml_bldg.site.ground_conductivity_isdefaulted = true + hpxml_bldg.site.ground_diffusivity_isdefaulted = true + end + end + if hpxml_bldg.site.ground_conductivity.nil? && !hpxml_bldg.site.ground_diffusivity.nil? + # Divide diffusivity by 0.0208 to maintain 1/0.0208 relationship + hpxml_bldg.site.ground_conductivity = hpxml_bldg.site.ground_diffusivity / 0.0208 # Btu/hr-ft-F + hpxml_bldg.site.ground_conductivity_isdefaulted = true + elsif !hpxml_bldg.site.ground_conductivity.nil? && hpxml_bldg.site.ground_diffusivity.nil? + # Multiply conductivity by 0.0208 to maintain 1/0.0208 relationship + hpxml_bldg.site.ground_diffusivity = hpxml_bldg.site.ground_conductivity * 0.0208 # ft^2/hr + hpxml_bldg.site.ground_diffusivity_isdefaulted = true + end + if hpxml_bldg.dst_enabled.nil? hpxml_bldg.dst_enabled = true # Assume DST since it occurs in most US locations hpxml_bldg.dst_enabled_isdefaulted = true @@ -778,6 +857,14 @@ def self.apply_walls(hpxml_bldg) wall.interior_finish_thickness = 0.5 wall.interior_finish_thickness_isdefaulted = true end + if wall.radiant_barrier.nil? + wall.radiant_barrier = false + wall.radiant_barrier_isdefaulted = true + end + if wall.radiant_barrier && wall.radiant_barrier_grade.nil? + wall.radiant_barrier_grade = 1 + wall.radiant_barrier_grade_isdefaulted = true + end end end @@ -864,6 +951,14 @@ def self.apply_floors(hpxml_bldg) floor.interior_finish_thickness = 0.5 floor.interior_finish_thickness_isdefaulted = true end + if floor.radiant_barrier.nil? + floor.radiant_barrier = false + floor.radiant_barrier_isdefaulted = true + end + if floor.radiant_barrier && floor.radiant_barrier_grade.nil? + floor.radiant_barrier_grade = 1 + floor.radiant_barrier_grade_isdefaulted = true + end end end @@ -1078,7 +1173,7 @@ def self.apply_furniture_mass(hpxml_bldg) end end - def self.apply_hvac(runner, hpxml_bldg, weather, convert_shared_systems) + def self.apply_hvac(runner, hpxml, hpxml_bldg, weather, convert_shared_systems) if convert_shared_systems HVAC.apply_shared_systems(hpxml_bldg) end @@ -1151,17 +1246,9 @@ def self.apply_hvac(runner, hpxml_bldg, weather, convert_shared_systems) next unless heat_pump.heating_capacity_retention_fraction.nil? next unless heat_pump.heating_capacity_17F.nil? next if [HPXML::HVACTypeHeatPumpGroundToAir, HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type + next unless heat_pump.heating_detailed_performance_data.empty? # set after hvac sizing - if not heat_pump.heating_detailed_performance_data.empty? - # Calculate heating capacity retention at 5F outdoor drybulb - target_odb = 5.0 - max_capacity_47 = heat_pump.heating_detailed_performance_data.find { |dp| dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity - heat_pump.heating_capacity_retention_fraction = (HVAC.interpolate_to_odb_table_point(heat_pump.heating_detailed_performance_data, HPXML::CapacityDescriptionMaximum, target_odb, :capacity) / max_capacity_47).round(5) - heat_pump.heating_capacity_retention_fraction = 0.0 if heat_pump.heating_capacity_retention_fraction < 0 - heat_pump.heating_capacity_retention_temp = target_odb - else - heat_pump.heating_capacity_retention_temp, heat_pump.heating_capacity_retention_fraction = HVAC.get_default_heating_capacity_retention(heat_pump.compressor_type, heat_pump.heating_efficiency_hspf) - end + heat_pump.heating_capacity_retention_temp, heat_pump.heating_capacity_retention_fraction = HVAC.get_default_heating_capacity_retention(heat_pump.compressor_type, heat_pump.heating_efficiency_hspf) heat_pump.heating_capacity_retention_fraction_isdefaulted = true heat_pump.heating_capacity_retention_temp_isdefaulted = true end @@ -1495,9 +1582,69 @@ def self.apply_hvac(runner, hpxml_bldg, weather, convert_shared_systems) HVAC.set_heat_curves_central_air_source(heat_pump, use_eer_cop) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type + if heat_pump.geothermal_loop.nil? + if hpxml.buildings.size > 1 + bldg_idx = hpxml.buildings.index(hpxml_bldg) + loop_id = "GeothermalLoop#{hpxml_bldg.geothermal_loops.size + 1}_#{bldg_idx + 1}" + else + loop_id = "GeothermalLoop#{hpxml_bldg.geothermal_loops.size + 1}" + end + hpxml_bldg.geothermal_loops.add(id: loop_id, + loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical) + heat_pump.geothermal_loop_idref = hpxml_bldg.geothermal_loops[-1].id + end + + if heat_pump.geothermal_loop.pipe_diameter.nil? + heat_pump.geothermal_loop.pipe_diameter = 1.25 # in + heat_pump.geothermal_loop.pipe_diameter_isdefaulted = true + end + HVAC.set_gshp_assumptions(heat_pump, weather) HVAC.set_curves_gshp(heat_pump) + if heat_pump.geothermal_loop.bore_spacing.nil? + heat_pump.geothermal_loop.bore_spacing = 16.4 # ft, distance between bores + heat_pump.geothermal_loop.bore_spacing_isdefaulted = true + end + + if heat_pump.geothermal_loop.bore_diameter.nil? + heat_pump.geothermal_loop.bore_diameter = 5.0 # in + heat_pump.geothermal_loop.bore_diameter_isdefaulted = true + end + + if heat_pump.geothermal_loop.grout_type.nil? && heat_pump.geothermal_loop.grout_conductivity.nil? + heat_pump.geothermal_loop.grout_type = HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.grout_type_isdefaulted = true + end + + if heat_pump.geothermal_loop.grout_conductivity.nil? + if heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.grout_conductivity = 0.75 # Btu/h-ft-R + elsif heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + heat_pump.geothermal_loop.grout_conductivity = 1.2 # Btu/h-ft-R + end + heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true + end + + if heat_pump.geothermal_loop.pipe_type.nil? && heat_pump.geothermal_loop.pipe_conductivity.nil? + heat_pump.geothermal_loop.pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.pipe_type_isdefaulted = true + end + + if heat_pump.geothermal_loop.pipe_conductivity.nil? + if heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.pipe_conductivity = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene + elsif heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + heat_pump.geothermal_loop.pipe_conductivity = 0.40 # Btu/h-ft-R; 0.7 W/m-K from https://www.dropbox.com/scl/fi/91yp8e9v34vdh1isvrfvy/GeoPerformX-Spec-Sheet.pdf?rlkey=kw7p01gs46z9lfjs78bo8aujq&dl=0 + end + heat_pump.geothermal_loop.pipe_conductivity_isdefaulted = true + end + + if heat_pump.geothermal_loop.shank_spacing.nil? + hp_ap = heat_pump.additional_properties + heat_pump.geothermal_loop.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe + heat_pump.geothermal_loop.shank_spacing_isdefaulted = true + end elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type HVAC.set_heat_pump_temperatures(heat_pump, runner) @@ -1522,6 +1669,14 @@ def self.apply_detailed_performance_data_for_var_speed_systems(hpxml_bldg) if hvac_system.cooling_detailed_performance_data.empty? HVAC.set_cool_detailed_performance_data(hvac_system) else + # process capacity fraction of nominal + hvac_system.cooling_detailed_performance_data.each do |dp| + next unless dp.capacity.nil? + + dp.capacity = (dp.capacity_fraction_of_nominal * hvac_system.cooling_capacity).round(3) + dp.capacity_isdefaulted = true + end + # override some properties based on detailed performance data cool_rated_capacity = [hvac_system.cooling_capacity, 1.0].max cool_max_capacity = [hvac_system.cooling_detailed_performance_data.find { |dp| (dp.outdoor_temperature == HVAC::AirSourceCoolRatedODB) && (dp.capacity_description == HPXML::CapacityDescriptionMaximum) }.capacity, 1.0].max @@ -1533,6 +1688,24 @@ def self.apply_detailed_performance_data_for_var_speed_systems(hpxml_bldg) if hvac_system.heating_detailed_performance_data.empty? HVAC.set_heat_detailed_performance_data(hvac_system) else + # process capacity fraction of nominal + hvac_system.heating_detailed_performance_data.each do |dp| + next unless dp.capacity.nil? + + dp.capacity = (dp.capacity_fraction_of_nominal * hvac_system.heating_capacity).round(3) + dp.capacity_isdefaulted = true + end + + if hvac_system.heating_capacity_retention_fraction.nil? && hvac_system.heating_capacity_17F.nil? + # Calculate heating capacity retention at 5F outdoor drybulb + target_odb = 5.0 + max_capacity_47 = hvac_system.heating_detailed_performance_data.find { |dp| dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity + hvac_system.heating_capacity_retention_fraction = (HVAC.interpolate_to_odb_table_point(hvac_system.heating_detailed_performance_data, HPXML::CapacityDescriptionMaximum, target_odb, :capacity) / max_capacity_47).round(5) + hvac_system.heating_capacity_retention_fraction = 0.0 if hvac_system.heating_capacity_retention_fraction < 0 + hvac_system.heating_capacity_retention_temp = target_odb + hvac_system.heating_capacity_retention_fraction_isdefaulted = true + hvac_system.heating_capacity_retention_temp_isdefaulted = true + end # override some properties based on detailed performance data heat_rated_capacity = [hvac_system.heating_capacity, 1.0].max heat_max_capacity = [hvac_system.heating_detailed_performance_data.find { |dp| (dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB) && (dp.capacity_description == HPXML::CapacityDescriptionMaximum) }.capacity, 1.0].max @@ -2833,27 +3006,27 @@ def self.apply_fuel_loads(hpxml_bldg, cfa, schedules_file) end end - def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) + def self.apply_hvac_sizing(runner, hpxml_bldg, weather, cfa) hvac_systems = HVAC.get_hpxml_hvac_systems(hpxml_bldg) # Calculate building design loads and equipment capacities/airflows - bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(weather, hpxml_bldg, cfa, hvac_systems) + bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(runner, weather, hpxml_bldg, cfa, hvac_systems) hvacpl = hpxml_bldg.hvac_plant tol = 10 # Btuh # Assign heating design loads to HPXML object - hvacpl.hdl_total = bldg_design_loads.Heat_Tot.round - hvacpl.hdl_walls = bldg_design_loads.Heat_Walls.round - hvacpl.hdl_ceilings = bldg_design_loads.Heat_Ceilings.round - hvacpl.hdl_roofs = bldg_design_loads.Heat_Roofs.round - hvacpl.hdl_floors = bldg_design_loads.Heat_Floors.round - hvacpl.hdl_slabs = bldg_design_loads.Heat_Slabs.round - hvacpl.hdl_windows = bldg_design_loads.Heat_Windows.round - hvacpl.hdl_skylights = bldg_design_loads.Heat_Skylights.round - hvacpl.hdl_doors = bldg_design_loads.Heat_Doors.round - hvacpl.hdl_infilvent = bldg_design_loads.Heat_InfilVent.round - hvacpl.hdl_ducts = bldg_design_loads.Heat_Ducts.round + hvacpl.hdl_total = Float(bldg_design_loads.Heat_Tot.round) + hvacpl.hdl_walls = Float(bldg_design_loads.Heat_Walls.round) + hvacpl.hdl_ceilings = Float(bldg_design_loads.Heat_Ceilings.round) + hvacpl.hdl_roofs = Float(bldg_design_loads.Heat_Roofs.round) + hvacpl.hdl_floors = Float(bldg_design_loads.Heat_Floors.round) + hvacpl.hdl_slabs = Float(bldg_design_loads.Heat_Slabs.round) + hvacpl.hdl_windows = Float(bldg_design_loads.Heat_Windows.round) + hvacpl.hdl_skylights = Float(bldg_design_loads.Heat_Skylights.round) + hvacpl.hdl_doors = Float(bldg_design_loads.Heat_Doors.round) + hvacpl.hdl_infilvent = Float(bldg_design_loads.Heat_InfilVent.round) + hvacpl.hdl_ducts = Float(bldg_design_loads.Heat_Ducts.round) hdl_sum = (hvacpl.hdl_walls + hvacpl.hdl_ceilings + hvacpl.hdl_roofs + hvacpl.hdl_floors + hvacpl.hdl_slabs + hvacpl.hdl_windows + hvacpl.hdl_skylights + hvacpl.hdl_doors + hvacpl.hdl_infilvent + @@ -2863,18 +3036,18 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) end # Assign cooling sensible design loads to HPXML object - hvacpl.cdl_sens_total = bldg_design_loads.Cool_Sens.round - hvacpl.cdl_sens_walls = bldg_design_loads.Cool_Walls.round - hvacpl.cdl_sens_ceilings = bldg_design_loads.Cool_Ceilings.round - hvacpl.cdl_sens_roofs = bldg_design_loads.Cool_Roofs.round - hvacpl.cdl_sens_floors = bldg_design_loads.Cool_Floors.round + hvacpl.cdl_sens_total = Float(bldg_design_loads.Cool_Sens.round) + hvacpl.cdl_sens_walls = Float(bldg_design_loads.Cool_Walls.round) + hvacpl.cdl_sens_ceilings = Float(bldg_design_loads.Cool_Ceilings.round) + hvacpl.cdl_sens_roofs = Float(bldg_design_loads.Cool_Roofs.round) + hvacpl.cdl_sens_floors = Float(bldg_design_loads.Cool_Floors.round) hvacpl.cdl_sens_slabs = 0.0 - hvacpl.cdl_sens_windows = bldg_design_loads.Cool_Windows.round - hvacpl.cdl_sens_skylights = bldg_design_loads.Cool_Skylights.round - hvacpl.cdl_sens_doors = bldg_design_loads.Cool_Doors.round - hvacpl.cdl_sens_infilvent = bldg_design_loads.Cool_InfilVent_Sens.round - hvacpl.cdl_sens_ducts = bldg_design_loads.Cool_Ducts_Sens.round - hvacpl.cdl_sens_intgains = bldg_design_loads.Cool_IntGains_Sens.round + hvacpl.cdl_sens_windows = Float(bldg_design_loads.Cool_Windows.round) + hvacpl.cdl_sens_skylights = Float(bldg_design_loads.Cool_Skylights.round) + hvacpl.cdl_sens_doors = Float(bldg_design_loads.Cool_Doors.round) + hvacpl.cdl_sens_infilvent = Float(bldg_design_loads.Cool_InfilVent_Sens.round) + hvacpl.cdl_sens_ducts = Float(bldg_design_loads.Cool_Ducts_Sens.round) + hvacpl.cdl_sens_intgains = Float(bldg_design_loads.Cool_IntGains_Sens.round) cdl_sens_sum = (hvacpl.cdl_sens_walls + hvacpl.cdl_sens_ceilings + hvacpl.cdl_sens_roofs + hvacpl.cdl_sens_floors + hvacpl.cdl_sens_slabs + hvacpl.cdl_sens_windows + @@ -2886,10 +3059,10 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) end # Assign cooling latent design loads to HPXML object - hvacpl.cdl_lat_total = bldg_design_loads.Cool_Lat.round - hvacpl.cdl_lat_ducts = bldg_design_loads.Cool_Ducts_Lat.round - hvacpl.cdl_lat_infilvent = bldg_design_loads.Cool_InfilVent_Lat.round - hvacpl.cdl_lat_intgains = bldg_design_loads.Cool_IntGains_Lat.round + hvacpl.cdl_lat_total = Float(bldg_design_loads.Cool_Lat.round) + hvacpl.cdl_lat_ducts = Float(bldg_design_loads.Cool_Ducts_Lat.round) + hvacpl.cdl_lat_infilvent = Float(bldg_design_loads.Cool_InfilVent_Lat.round) + hvacpl.cdl_lat_intgains = Float(bldg_design_loads.Cool_IntGains_Lat.round) cdl_lat_sum = (hvacpl.cdl_lat_ducts + hvacpl.cdl_lat_infilvent + hvacpl.cdl_lat_intgains) if (cdl_lat_sum - hvacpl.cdl_lat_total).abs > tol @@ -2906,14 +3079,14 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) # Heating capacities if htg_sys.heating_capacity.nil? || ((htg_sys.heating_capacity - hvac_sizing_values.Heat_Capacity).abs >= 1.0) - scaling_factor = hvac_sizing_values.Heat_Capacity.round / htg_sys.heating_capacity unless htg_sys.heating_capacity.nil? + scaling_factor = Float(hvac_sizing_values.Heat_Capacity.round) / htg_sys.heating_capacity unless htg_sys.heating_capacity.nil? # Heating capacity @ 17F if htg_sys.is_a? HPXML::HeatPump if (not htg_sys.heating_capacity.nil?) && (not htg_sys.heating_capacity_17F.nil?) # Fixed value entered; scale w/ heating_capacity in case allow_increased_fixed_capacities=true htg_cap_17f = htg_sys.heating_capacity_17F * scaling_factor if (htg_sys.heating_capacity_17F - htg_cap_17f).abs >= 1.0 - htg_sys.heating_capacity_17F = htg_cap_17f.round + htg_sys.heating_capacity_17F = Float(htg_cap_17f.round) htg_sys.heating_capacity_17F_isdefaulted = true end end @@ -2921,14 +3094,16 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) if not htg_sys.heating_detailed_performance_data.empty? # Fixed values entered; Scale w/ heating_capacity in case allow_increased_fixed_capacities=true htg_sys.heating_detailed_performance_data.each do |dp| + next if dp.capacity.nil? # using autosized values, process later + htg_cap_dp = dp.capacity * scaling_factor if (dp.capacity - htg_cap_dp).abs >= 1.0 - dp.capacity = htg_cap_dp.round + dp.capacity = Float(htg_cap_dp.round) dp.capacity_isdefaulted = true end end end - htg_sys.heating_capacity = hvac_sizing_values.Heat_Capacity.round + htg_sys.heating_capacity = Float(hvac_sizing_values.Heat_Capacity.round) htg_sys.heating_capacity_isdefaulted = true end if htg_sys.is_a? HPXML::HeatPump @@ -2936,7 +3111,7 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) htg_sys.backup_heating_capacity = 0.0 elsif htg_sys.backup_type == HPXML::HeatPumpBackupTypeIntegrated if htg_sys.backup_heating_capacity.nil? || ((htg_sys.backup_heating_capacity - hvac_sizing_values.Heat_Capacity_Supp).abs >= 1.0) - htg_sys.backup_heating_capacity = hvac_sizing_values.Heat_Capacity_Supp.round + htg_sys.backup_heating_capacity = Float(hvac_sizing_values.Heat_Capacity_Supp.round) htg_sys.backup_heating_capacity_isdefaulted = true end end @@ -2946,16 +3121,33 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) if not (htg_sys.is_a?(HPXML::HeatingSystem) && [HPXML::HVACTypeBoiler, HPXML::HVACTypeElectricResistance].include?(htg_sys.heating_system_type)) - htg_sys.heating_airflow_cfm = hvac_sizing_values.Heat_Airflow.round + htg_sys.heating_airflow_cfm = Float(hvac_sizing_values.Heat_Airflow.round) htg_sys.heating_airflow_cfm_isdefaulted = true end # Heating GSHP loop if htg_sys.is_a? HPXML::HeatPump - htg_sys.additional_properties.GSHP_Loop_flow = hvac_sizing_values.GSHP_Loop_flow - htg_sys.additional_properties.GSHP_Bore_Depth = hvac_sizing_values.GSHP_Bore_Depth - htg_sys.additional_properties.GSHP_Bore_Holes = hvac_sizing_values.GSHP_Bore_Holes htg_sys.additional_properties.GSHP_G_Functions = hvac_sizing_values.GSHP_G_Functions + + geothermal_loop = htg_sys.geothermal_loop + if not geothermal_loop.nil? + if geothermal_loop.loop_flow.nil? + geothermal_loop.loop_flow = hvac_sizing_values.GSHP_Loop_flow + geothermal_loop.loop_flow_isdefaulted = true + end + if geothermal_loop.num_bore_holes.nil? + geothermal_loop.num_bore_holes = hvac_sizing_values.GSHP_Bore_Holes + geothermal_loop.num_bore_holes_isdefaulted = true + end + if geothermal_loop.bore_length.nil? + geothermal_loop.bore_length = hvac_sizing_values.GSHP_Bore_Depth + geothermal_loop.bore_length_isdefaulted = true + end + if geothermal_loop.bore_config.nil? + geothermal_loop.bore_config = hvac_sizing_values.GSHP_Bore_Config + geothermal_loop.bore_config_isdefaulted = true + end + end end end @@ -2965,32 +3157,34 @@ def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) # Cooling capacities if clg_sys.cooling_capacity.nil? || ((clg_sys.cooling_capacity - hvac_sizing_values.Cool_Capacity).abs >= 1.0) if not clg_sys.cooling_detailed_performance_data.empty? - scaling_factor = hvac_sizing_values.Cool_Capacity.round / clg_sys.cooling_capacity unless clg_sys.cooling_capacity.nil? + scaling_factor = Float(hvac_sizing_values.Cool_Capacity.round) / clg_sys.cooling_capacity unless clg_sys.cooling_capacity.nil? # Fixed values entered; Scale w/ cooling_capacity in case allow_increased_fixed_capacities=true clg_sys.cooling_detailed_performance_data.each do |dp| + next if dp.capacity.nil? # using autosized values + clg_cap_dp = dp.capacity * scaling_factor if (dp.capacity - clg_cap_dp).abs >= 1.0 - dp.capacity = clg_cap_dp.round + dp.capacity = Float(clg_cap_dp.round) dp.capacity_isdefaulted = true end end end - clg_sys.cooling_capacity = hvac_sizing_values.Cool_Capacity.round + clg_sys.cooling_capacity = Float(hvac_sizing_values.Cool_Capacity.round) clg_sys.cooling_capacity_isdefaulted = true end # Integrated heating system capacities if (clg_sys.is_a? HPXML::CoolingSystem) && clg_sys.has_integrated_heating if clg_sys.integrated_heating_system_capacity.nil? || ((clg_sys.integrated_heating_system_capacity - hvac_sizing_values.Heat_Capacity).abs >= 1.0) - clg_sys.integrated_heating_system_capacity = hvac_sizing_values.Heat_Capacity.round + clg_sys.integrated_heating_system_capacity = Float(hvac_sizing_values.Heat_Capacity.round) clg_sys.integrated_heating_system_capacity_isdefaulted = true end - clg_sys.integrated_heating_system_airflow_cfm = hvac_sizing_values.Heat_Airflow.round + clg_sys.integrated_heating_system_airflow_cfm = Float(hvac_sizing_values.Heat_Airflow.round) clg_sys.integrated_heating_system_airflow_cfm_isdefaulted = true end - clg_sys.additional_properties.cooling_capacity_sensible = hvac_sizing_values.Cool_Capacity_Sens.round + clg_sys.additional_properties.cooling_capacity_sensible = Float(hvac_sizing_values.Cool_Capacity_Sens.round) # Cooling airflow - clg_sys.cooling_airflow_cfm = hvac_sizing_values.Cool_Airflow.round + clg_sys.cooling_airflow_cfm = Float(hvac_sizing_values.Cool_Airflow.round) clg_sys.cooling_airflow_cfm_isdefaulted = true end end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd index d39a0d587a..9eec7c6e3f 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd @@ -401,13 +401,13 @@ loads/week of actual usage by the occupants - + [lbs dry clothes/kWh] The energy performance metric for ENERGY STAR certified residential clothes dryers prior to September 13, 2013. The new metric is Combined Energy Factor. - + [lbs dry clothes/kWh] The energy performance metric for ENERGY STAR certified residential clothes dryers as of September 13, 2013, it includes the active drying cycle energy as well as energy consumed during Stand-by and Off modes. @@ -431,24 +431,24 @@ - + The energy performance metric for ENERGY STAR certified residential clothes washers prior to March 7, 2015. The new metric is Integrated Modified Energy Factor. - + The energy performance metric for ENERGY STAR certified residential clothes washers as of March 7, 2015. - + The water performance metric for ENERGY STAR certified residential clothes washers prior to March 7, 2015. The new metric is Integrated Water Factor. - + The water performance metric for ENERGY STAR certified residential clothes washers as of March 7, 2015. @@ -463,27 +463,27 @@ kWh/yr - + $/kWh - + $/therm - + $ - + loads/week per the Energy Guide label; use Usage instead for loads/week of actual usage by the occupants - + ft^3 @@ -515,22 +515,22 @@ loads/week of actual usage by the occupants; use LabelUsage instead for the loads/week on the EnergyGuide label - + $/kWh - + $/therm - + $ - + loads/week per the Energy Guide label; use Usage instead for loads/week of actual usage by the occupants @@ -2155,6 +2155,12 @@ + + + Does the system serve multiple building/dwelling units? + + + @@ -6286,6 +6292,18 @@ + + + + + + + + + + + + diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 1c262ef34a..6d8e9a6c46 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -292,9 +292,11 @@ [HVACSizingControl] - Expected 0 or 1 element(s) for xpath: AllowIncreasedFixedCapacities Expected 0 or 1 element(s) for xpath: HeatPumpSizingMethodology Expected HeatPumpSizingMethodology to be 'ACCA' or 'HERS' or 'MaxLoad' + Expected 0 or 1 element(s) for xpath: HeatPumpBackupSizingMethodology + Expected HeatPumpBackupSizingMethodology to be 'emergency' or 'supplemental' + Expected 0 or 1 element(s) for xpath: AllowIncreasedFixedCapacities Expected 0 or 1 element(s) for xpath: ManualJInputs/WinterDesignTemperature Expected 0 or 1 element(s) for xpath: ManualJInputs/SummerDesignTemperature Expected 0 or 1 element(s) for xpath: ManualJInputs/HeatingSetpoint @@ -326,11 +328,26 @@ Expected 0 or 1 element(s) for xpath: SiteType Expected 0 or 1 element(s) for xpath: ShieldingofHome Expected ShieldingofHome to be 'well-shielded' or 'normal' or 'exposed' - Expected 0 or 1 element(s) for xpath: extension/GroundConductivity - Expected extension/GroundConductivity to be greater than 0 + Expected 0 or 1 element(s) for xpath: Soil Expected 0 or 1 element(s) for xpath: extension/Neighbors extension/ShelterCoefficient has been replaced by ShieldingofHome + + extension/GroundConductivity has been replaced by Soil/Conductivity + + + + + [Soil] + + Expected 0 or 1 element(s) for xpath: SoilType + Expected SoilType to be 'sand' or 'silt' or 'clay' or 'loam' or 'gravel' or 'unknown' + Expected 0 or 1 element(s) for xpath: MoistureType + Expected MoistureType to be 'dry' or 'wet' or 'mixed' + Expected 0 or 1 element(s) for xpath: Conductivity + Expected Conductivity to be greater than 0 + Expected 0 or 1 element(s) for xpath: extension/Diffusivity + Expected extension/Diffusivity to be greater than 0 @@ -446,7 +463,7 @@ Expected InteriorFinish/Type to be 'gypsum board' or 'gypsum composite board' or 'plaster' or 'wood' or 'none' Expected 0 or 1 element(s) for xpath: InteriorFinish/Thickness Expected 1 element(s) for xpath: Pitch - Expected 0 or 1 element(s) for xpath: RadiantBarrier + Expected 0 or 1 element(s) for xpath: RadiantBarrier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue @@ -459,7 +476,7 @@ - [RadiantBarrier] + [Roof_RadiantBarrier] Expected 0 or 1 element(s) for xpath: RadiantBarrierGrade @@ -499,10 +516,18 @@ Expected 0 or 1 element(s) for xpath: InteriorFinish/Type Expected InteriorFinish/Type to be 'gypsum board' or 'gypsum composite board' or 'plaster' or 'wood' or 'none' Expected 0 or 1 element(s) for xpath: InteriorFinish/Thickness + Expected 0 or 1 element(s) for xpath: RadiantBarrier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue + + [Wall_RadiantBarrier] + + Expected 0 or 1 element(s) for xpath: RadiantBarrierGrade + + + [FoundationWall] @@ -564,12 +589,20 @@ Expected 0 or 1 element(s) for xpath: InteriorFinish/Type Expected InteriorFinish/Type to be 'gypsum board' or 'gypsum composite board' or 'plaster' or 'wood' or 'none' Expected 0 or 1 element(s) for xpath: InteriorFinish/Thickness + Expected 0 or 1 element(s) for xpath: RadiantBarrier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue extension/OtherSpaceAboveOrBelow has been replaced by FloorOrCeiling + + [Floor_RadiantBarrier] + + Expected 0 or 1 element(s) for xpath: RadiantBarrierGrade + + + [FloorType=AdjacentToOther] @@ -598,6 +631,8 @@ Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/InsulationWidth | UnderSlabInsulation/Layer/InsulationSpansEntireSlab[text()="true"] Expected 0 or 1 element(s) for xpath: extension/CarpetFraction + Expected extension/CarpetFraction to be greater than or equal to 0 + Expected extension/CarpetFraction to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/CarpetRValue Slab has zero exposed perimeter, this may indicate an input error. @@ -749,10 +784,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] @@ -765,6 +797,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. @@ -775,6 +808,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 @@ -782,6 +817,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 @@ -803,6 +839,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 @@ -821,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 @@ -830,28 +868,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. @@ -860,10 +893,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. @@ -893,6 +937,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 @@ -910,6 +955,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 @@ -928,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 Heating capacity should typically be greater than or equal to 1000 Btu/hr. @@ -946,13 +993,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 @@ -960,12 +1002,18 @@ [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 Expected 0 or 1 element(s) for xpath: CoolingDetailedPerformanceData Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM @@ -989,9 +1037,13 @@ [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 Expected 0 or 1 element(s) for xpath: IntegratedHeatingSystemFuel Expected IntegratedHeatingSystemFuel 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: extension/CrankcaseHeaterPowerWatts @@ -1003,25 +1055,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. @@ -1032,12 +1074,18 @@ [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 Expected 0 or 1 element(s) for xpath: CoolingDetailedPerformanceData Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM @@ -1066,7 +1114,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 @@ -1101,6 +1152,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 @@ -1109,18 +1163,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' @@ -1128,7 +1189,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 @@ -1137,6 +1202,9 @@ Expected CompressorType to be 'single stage' or 'two stage' or 'variable speed' 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 @@ -1166,7 +1234,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 @@ -1175,6 +1247,9 @@ Expected CompressorType to be 'variable speed' 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 @@ -1204,16 +1279,24 @@ [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 Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value + Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop Expected 0 or 1 element(s) for xpath: extension/PumpPowerWattsPerTon Expected extension/PumpPowerWattsPerTon to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM @@ -1249,6 +1332,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' @@ -1256,6 +1345,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 @@ -1264,6 +1355,9 @@ Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value 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 @@ -1278,10 +1372,22 @@ [HeatPumpCapacityRetention] Expected 1 element(s) for xpath: Fraction - Expected Fraction to be less than 1 - Expected Fraction to be greater than or equal to 0 + Expected Fraction to be less than 1 + Expected Fraction to be greater than or equal to 0 Expected 1 element(s) for xpath: Temperature - Expected Temperature to be less than or equal to 17 + Expected Temperature to be less than or equal to 17 + + + + + [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. @@ -1310,22 +1416,9 @@ - - [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] - Expected 1 element(s) for xpath: ../HeatingCapacity Expected 1 element(s) for xpath: ../CompressorType[text()="variable speed"] Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=47 and CapacityDescription="minimum"] Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=47 and CapacityDescription="maximum"] @@ -1337,7 +1430,6 @@ [CoolingDetailedPerformanceData] - Expected 1 element(s) for xpath: ../CoolingCapacity Expected 1 element(s) for xpath: ../CompressorType[text()="variable speed"] Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=95 and CapacityDescription="minimum"] Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=95 and CapacityDescription="maximum"] @@ -1345,15 +1437,59 @@ Expected 1 or more element(s) for xpath: PerformanceDataPoint[OutdoorTemperature!=95 and CapacityDescription="maximum"] + + + [HeatingDetailedPerformanceDataPointWithCapacity] + + Expected 1 element(s) for xpath: ../../../HeatingCapacity + + + + + [CoolingDetailedPerformanceDataPointWithCapacity] + + Expected 1 element(s) for xpath: ../../../CoolingCapacity + + [PerformanceDataPoint] - Expected 1 element(s) for xpath: Capacity + Expected 1 or more element(s) for xpath: Capacity | CapacityFractionOfNominal + Expected Capacity to be greater than or equal to 0 + Expected CapacityFractionOfNominal to be greater than or equal to 0 Expected 1 element(s) for xpath: Efficiency[Units="COP"]/Value + + [GeothermalLoop] + + Expected 1 element(s) for xpath: LoopConfiguration + Expected LoopConfiguration to be 'vertical' + Expected 0 or 1 element(s) for xpath: LoopFlow + Expected LoopFlow to be greater than 0 + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count + Expected BoreholesOrTrenches/Count to be greater than or equal to 1 + Expected BoreholesOrTrenches/Count to be less than or equal to 10 + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length + Expected BoreholesOrTrenches/Length to be greater than or equal to 79 + Expected BoreholesOrTrenches/Length to be less than or equal to 500 + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Spacing + Expected BoreholesOrTrenches/Spacing to be greater than 0 + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter + Expected BoreholesOrTrenches/Diameter to be greater than 0 + Expected 0 or more element(s) for xpath: Grout/Type | Grout/Conductivity + Expected 0 or more element(s) for xpath: Pipe/Type | Pipe/Conductivity + Expected 0 or 1 element(s) for xpath: Pipe/Diameter + Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 + Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing + Expected Pipe/ShankSpacing to be greater than 0 + Expected BoreholesOrTrenches/Count when extension/BorefieldConfiguration is not 'Rectangle' + Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' + + + [AirflowDefectRatio] @@ -1548,18 +1684,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 @@ -1568,16 +1728,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. @@ -1587,12 +1755,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 @@ -1682,25 +1853,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 @@ -1709,7 +1863,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 @@ -1719,12 +1877,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. @@ -1733,13 +1894,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. @@ -1747,33 +1915,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 @@ -1843,6 +2042,7 @@ Expected 0 or 1 element(s) for xpath: Count Expected 1 or more element(s) for xpath: LowFlow | FlowRate Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesUsageMultiplier + Expected ../extension/WaterFixturesUsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesWeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesWeekendScheduleFractions Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesMonthlyScheduleMultipliers @@ -1852,16 +2052,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 @@ -1878,6 +2077,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 @@ -1970,6 +2172,7 @@ 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 housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: IntegratedModifiedEnergyFactor | ModifiedEnergyFactor Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2008,6 +2211,7 @@ Expected 0 or 1 element(s) for xpath: CombinedEnergyFactor | EnergyFactor Expected 0 or 1 element(s) for xpath: Vented Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2039,6 +2243,7 @@ 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 housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: RatedAnnualkWh | EnergyFactor Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2072,6 +2277,7 @@ Expected 0 or 1 element(s) for xpath: RatedAnnualkWh Expected 0 or 1 element(s) for xpath: PrimaryIndicator Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2085,6 +2291,7 @@ 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 housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: RatedAnnualkWh Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2115,6 +2322,7 @@ 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: IsInduction Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2136,8 +2344,11 @@ Expected 0 or more element(s) for xpath: LightingGroup[Location="exterior"] Expected 0 or more element(s) for xpath: LightingGroup[Location="garage"] Expected 0 or 1 element(s) for xpath: extension/InteriorUsageMultiplier + Expected extension/InteriorUsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/GarageUsageMultiplier + Expected extension/GarageUsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/ExteriorUsageMultiplier + Expected extension/ExteriorUsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/InteriorWeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/InteriorWeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/InteriorMonthlyScheduleMultipliers @@ -2219,6 +2430,7 @@ Expected 1 element(s) for xpath: Type Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2232,6 +2444,7 @@ Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year" or Units="therm/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2253,6 +2466,7 @@ Expected 1 element(s) for xpath: Type Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2266,6 +2480,7 @@ Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year" or Units="therm/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2282,6 +2497,7 @@ Expected extension/FracLatent to be greater than or equal to 0 Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers @@ -2300,6 +2516,7 @@ Expected extension/FracLatent to be greater than or equal to 0 Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier + Expected extension/UsageMultiplier to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb index f23109904a..1fe42b14b3 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb @@ -256,8 +256,8 @@ def self.apply_evaporative_cooler(model, cooling_system, sequential_cool_load_fr def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - control_zone, ground_conductivity, hvac_unavailable_periods, - unit_multiplier) + control_zone, ground_conductivity, ground_diffusivity, + hvac_unavailable_periods, unit_multiplier) if unit_multiplier > 1 # FUTURE: Figure out how to allow this. If we allow it, update docs and hpxml_translator_test.rb too. @@ -267,7 +267,9 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, obj_name = Constants.ObjectNameGroundSourceHeatPump + geothermal_loop = heat_pump.geothermal_loop hp_ap = heat_pump.additional_properties + htg_cfm = heat_pump.heating_airflow_cfm clg_cfm = heat_pump.cooling_airflow_cfm htg_cfm_rated = heat_pump.airflow_defect_ratio.nil? ? htg_cfm : (htg_cfm / (1.0 + heat_pump.airflow_defect_ratio)) @@ -279,8 +281,8 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, end # Apply unit multiplier - hp_ap.GSHP_Loop_flow *= unit_multiplier - hp_ap.GSHP_Bore_Holes = hp_ap.GSHP_Bore_Holes.to_i * unit_multiplier + geothermal_loop.loop_flow *= unit_multiplier + geothermal_loop.num_bore_holes *= unit_multiplier # Cooling Coil clg_total_cap_curve = create_curve_quad_linear(model, hp_ap.cool_cap_curve_spec[0], obj_name + ' clg total cap curve') @@ -292,7 +294,10 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, clg_coil.setNominalTimeforCondensateRemovaltoBegin(1000) clg_coil.setRatioofInitialMoistureEvaporationRateandSteadyStateLatentCapacity(1.5) clg_coil.setRatedAirFlowRate(UnitConversions.convert(clg_cfm_rated, 'cfm', 'm^3/s')) - clg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + clg_coil.setRatedWaterFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) + clg_coil.setRatedEnteringWaterTemperature(UnitConversions.convert(80, 'F', 'C')) + clg_coil.setRatedEnteringAirDryBulbTemperature(UnitConversions.convert(80, 'F', 'C')) + clg_coil.setRatedEnteringAirWetBulbTemperature(UnitConversions.convert(67, 'F', 'C')) clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W')) clg_coil.setRatedSensibleCoolingCapacity(UnitConversions.convert(hp_ap.cooling_capacity_sensible, 'Btu/hr', 'W')) clg_coil.additionalProperties.setFeature('HPXML_ID', heat_pump.id) # Used by reporting measure @@ -304,7 +309,9 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, htg_coil.setName(obj_name + ' htg coil') htg_coil.setRatedHeatingCoefficientofPerformance(hp_ap.heat_rated_cops[0]) htg_coil.setRatedAirFlowRate(UnitConversions.convert(htg_cfm_rated, 'cfm', 'm^3/s')) - htg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + htg_coil.setRatedWaterFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) + htg_coil.setRatedEnteringWaterTemperature(UnitConversions.convert(60, 'F', 'C')) + htg_coil.setRatedEnteringAirDryBulbTemperature(UnitConversions.convert(70, 'F', 'C')) htg_coil.setRatedHeatingCapacity(UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W')) htg_coil.additionalProperties.setFeature('HPXML_ID', heat_pump.id) # Used by reporting measure @@ -321,20 +328,20 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, # Ground Heat Exchanger ground_heat_exch_vert = OpenStudio::Model::GroundHeatExchangerVertical.new(model, xing) ground_heat_exch_vert.setName(obj_name + ' exchanger') - ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(hp_ap.bore_diameter / 2.0, 'in', 'm')) + ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(geothermal_loop.bore_diameter / 2.0, 'in', 'm')) ground_heat_exch_vert.setGroundThermalConductivity(UnitConversions.convert(ground_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / hp_ap.ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) + ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.DeepGroundAnnualTemp, 'F', 'C')) - ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(hp_ap.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(hp_ap.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(geothermal_loop.pipe_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) - ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(hp_ap.shank_spacing, 'in', 'm')) + ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(geothermal_loop.shank_spacing, 'in', 'm')) ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) ground_heat_exch_vert.setMaximumLengthofSimulation(1) - ground_heat_exch_vert.setGFunctionReferenceRatio(0.0005) - ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - ground_heat_exch_vert.setNumberofBoreHoles(hp_ap.GSHP_Bore_Holes) - ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(hp_ap.GSHP_Bore_Depth, 'ft', 'm')) + ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) + ground_heat_exch_vert.setNumberofBoreHoles(geothermal_loop.num_bore_holes) + ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(geothermal_loop.bore_length, 'ft', 'm')) + ground_heat_exch_vert.setGFunctionReferenceRatio(ground_heat_exch_vert.boreHoleRadius.get / ground_heat_exch_vert.boreHoleLength.get) # ensure this ratio is consistent with rb/H so that g values will be taken as-is ground_heat_exch_vert.removeAllGFunctions for i in 0..(hp_ap.GSHP_G_Functions[0].size - 1) ground_heat_exch_vert.addGFunction(hp_ap.GSHP_G_Functions[0][i], hp_ap.GSHP_G_Functions[1][i]) @@ -360,7 +367,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, plant_loop.addSupplyBranchForComponent(ground_heat_exch_vert) plant_loop.addDemandBranchForComponent(htg_coil) plant_loop.addDemandBranchForComponent(clg_coil) - plant_loop.setMaximumLoopFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + plant_loop.setMaximumLoopFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) sizing_plant = plant_loop.sizingPlant sizing_plant.setLoopType('Condenser') @@ -1223,13 +1230,13 @@ def self.get_cool_capacity_ratios(hvac_system) def self.set_heat_curves_central_air_source(heating_system, use_cop = false) htg_ap = heating_system.additional_properties htg_ap.heat_rated_cfm_per_ton = get_default_heat_cfm_per_ton(heating_system.compressor_type, use_cop) - heating_capacity_retention_temp, heating_capacity_retention_fraction = get_heating_capacity_retention(heating_system) htg_ap.heat_cap_fflow_spec, htg_ap.heat_eir_fflow_spec = get_heat_cap_eir_fflow_spec(heating_system.compressor_type) htg_ap.heat_capacity_ratios = get_heat_capacity_ratios(heating_system) set_heat_c_d(heating_system) hspf = heating_system.heating_efficiency_hspf if heating_system.compressor_type == HPXML::HVACCompressorTypeSingleStage + heating_capacity_retention_temp, heating_capacity_retention_fraction = get_heating_capacity_retention(heating_system) htg_ap.heat_cap_ft_spec, htg_ap.heat_eir_ft_spec = get_heat_cap_eir_ft_spec(heating_system.compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) if not use_cop htg_ap.heat_rated_cops = [0.0353 * hspf**2 + 0.0331 * hspf + 0.9447] # Regression based on inverse model @@ -1240,6 +1247,7 @@ def self.set_heat_curves_central_air_source(heating_system, use_cop = false) end elsif heating_system.compressor_type == HPXML::HVACCompressorTypeTwoStage + heating_capacity_retention_temp, heating_capacity_retention_fraction = get_heating_capacity_retention(heating_system) htg_ap.heat_cap_ft_spec, htg_ap.heat_eir_ft_spec = get_heat_cap_eir_ft_spec(heating_system.compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) htg_ap.heat_rated_airflow_rate = htg_ap.heat_rated_cfm_per_ton[-1] htg_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(htg_ap.heat_capacity_ratios, htg_ap.heat_rated_cfm_per_ton, htg_ap.heat_rated_airflow_rate) @@ -1442,20 +1450,27 @@ def self.set_curves_gshp(heat_pump) hp_ap = heat_pump.additional_properties # E+ equation fit coil coefficients generated following approach in Tang's thesis: - # See Appendix B of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf + # See Appendix B of https://shareok.org/bitstream/handle/11244/10075/Tang_okstate_0664M_1318.pdf?sequence=1&isAllowed=y # Coefficients generated by catalog data: https://files.climatemaster.com/Genesis-GS-Series-Product-Catalog.pdf, p180 # Data point taken as rated condition: # EWT: 80F EAT:80/67F, AFR: 1200cfm, WFR: 4.5gpm - hp_ap.cool_cap_curve_spec = [[-1.57177156131221, 4.60343712716819, -2.15976622898044, 0.0590964827802021, 0.0194696644460315]] - hp_ap.cool_power_curve_spec = [[-4.42471086639888, 0.658017281046304, 4.37331801294626, 0.174096187531254, -0.0526514790164159]] - hp_ap.cool_sh_curve_spec = [[4.54172823345154, 14.7653304889134, -18.3541272090485, -0.74401391092935, 0.545560799548833, 0.0182620032235494]] + + # Cooling Curves + hp_ap.cool_cap_curve_spec = [[-5.45013866666657, 7.42301402824225, -1.43760846638838, 0.249103937703341, 0.0378875477019811]] + hp_ap.cool_power_curve_spec = [[-4.21572180554818, 0.322682268675807, 4.56870615863483, 0.154605773589744, -0.167531037948482]] + hp_ap.cool_sh_curve_spec = [[0.56143829895505, 18.7079597251858, -19.1482655264078, -0.138154731772664, 0.4823357726442, -0.00164644360129174]] + hp_ap.cool_rated_shrs_gross = [heat_pump.cooling_shr] - # E+ equation fit coil coefficients from Tang's thesis: - # See Appendix B Figure B.3 of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf - # Coefficients generated by catalog data - hp_ap.heat_cap_curve_spec = [[-5.12650150, -0.93997630, 7.21443206, 0.121065721, 0.051809805]] - hp_ap.heat_power_curve_spec = [[-7.73235249, 6.43390775, 2.29152262, -0.175598629, 0.005888871]] + # E+ equation fit coil coefficients following approach from Tang's thesis: + # See Appendix B Figure B.3 of https://shareok.org/bitstream/handle/11244/10075/Tang_okstate_0664M_1318.pdf?sequence=1&isAllowed=y + # Coefficients generated by catalog data: https://www.climatemaster.com/download/18.274be999165850ccd5b5b73/1535543867815/lc377-climatemaster-commercial-tranquility-20-single-stage-ts-series-water-source-heat-pump-submittal-set.pdf + # Data point taken as rated condition: + # EWT: 60F EAT: 70F AFR: 1200 cfm, WFR: 4.5 gpm + + # Heating Curves + hp_ap.heat_cap_curve_spec = [[-3.75031847962047, -2.18062040443483, 6.8363364819032, 0.188376814356582, 0.0869274802923634]] + hp_ap.heat_power_curve_spec = [[-8.4754723813072, 8.10952801956388, 1.38771494628738, -0.33766445915032, 0.0223085217874051]] # Fan/pump adjustments calculations power_f = heat_pump.fan_watts_per_cfm * 400.0 / UnitConversions.convert(1.0, 'ton', 'Btu/hr') * UnitConversions.convert(1.0, 'W', 'kW') # 400 cfm/ton, result is in kW per Btu/hr of capacity @@ -2812,33 +2827,32 @@ def self.get_unitary_system_from_air_loop_hvac(air_loop) def self.set_gshp_assumptions(heat_pump, weather) hp_ap = heat_pump.additional_properties + geothermal_loop = heat_pump.geothermal_loop hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.DeepGroundAnnualTemp + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound hp_ap.design_delta_t = 10.0 hp_ap.fluid_type = Constants.FluidPropyleneGlycol - hp_ap.frac_glycol = 0.3 + hp_ap.frac_glycol = 0.2 # This was changed from 0.3 to 0.2 -- more typical based on experts/spec sheets if hp_ap.fluid_type == Constants.FluidWater hp_ap.design_hw = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.DeepGroundAnnualTemp - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water else hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.DeepGroundAnnualTemp - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound end - hp_ap.ground_diffusivity = 0.0208 - hp_ap.grout_conductivity = 0.4 # Btu/h-ft-R - hp_ap.bore_diameter = 5.0 # in - hp_ap.pipe_size = 0.75 # in + pipe_diameter = geothermal_loop.pipe_diameter # Pipe nominal size conversion to pipe outside diameter and inside diameter, # only pipe sizes <= 2" are used here with DR11 (dimension ratio), - if hp_ap.pipe_size == 0.75 # 3/4" pipe + if pipe_diameter == 0.75 # 3/4" pipe hp_ap.pipe_od = 1.050 # in hp_ap.pipe_id = 0.859 # in - elsif hp_ap.pipe_size == 1.0 # 1" pipe + elsif pipe_diameter == 1.0 # 1" pipe hp_ap.pipe_od = 1.315 # in hp_ap.pipe_id = 1.076 # in - elsif hp_ap.pipe_size == 1.25 # 1-1/4" pipe + elsif pipe_diameter == 1.25 # 1-1/4" pipe hp_ap.pipe_od = 1.660 # in hp_ap.pipe_id = 1.358 # in + else + fail "Unexpected pipe size: #{pipe_diameter}" end - hp_ap.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene hp_ap.u_tube_spacing_type = 'b' # Calculate distance between pipes if hp_ap.u_tube_spacing_type == 'as' @@ -2849,9 +2863,8 @@ def self.set_gshp_assumptions(heat_pump, weather) hp_ap.u_tube_spacing = 0.9661 elsif hp_ap.u_tube_spacing_type == 'c' # Both tubes placed against outer edge of borehole - hp_ap.u_tube_spacing = hp_ap.bore_diameter - 2 * hp_ap.pipe_od + hp_ap.u_tube_spacing = geothermal_loop.bore_diameter - 2 * hp_ap.pipe_od end - hp_ap.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe end def self.calc_sequential_load_fractions(load_fraction, remaining_fraction, availability_days) @@ -3491,6 +3504,7 @@ def self.get_hpxml_hvac_systems(hpxml_bldg) end hpxml_bldg.heating_systems.each do |heating_system| + next if heating_system.is_heat_pump_backup_system # Will be processed later if is_attached_heating_and_cooling_systems(hpxml_bldg, heating_system, heating_system.attached_cooling_system) next # Already processed with cooling end @@ -3507,6 +3521,13 @@ def self.get_hpxml_hvac_systems(hpxml_bldg) heating: heat_pump } end + hpxml_bldg.heating_systems.each do |heating_system| + next unless heating_system.is_heat_pump_backup_system + + hvac_systems << { cooling: nil, + heating: heating_system } + end + return hvac_systems end @@ -3537,13 +3558,17 @@ def self.ensure_nonzero_sizing_values(hpxml_bldg) hp_sys.backup_heating_capacity = [hp_sys.backup_heating_capacity, min_capacity].max unless hp_sys.backup_heating_capacity.nil? if not hp_sys.heating_detailed_performance_data.empty? hp_sys.heating_detailed_performance_data.each do |dp| + next if dp.capacity.nil? + speed = dp.capacity_description == HPXML::CapacityDescriptionMinimum ? 1 : 2 dp.capacity = [dp.capacity, min_capacity * speed].max end end - next unless not hp_sys.cooling_detailed_performance_data.empty? + next if hp_sys.cooling_detailed_performance_data.empty? hp_sys.cooling_detailed_performance_data.each do |dp| + next if dp.capacity.nil? + speed = dp.capacity_description == HPXML::CapacityDescriptionMinimum ? 1 : 2 dp.capacity = [dp.capacity, min_capacity * speed].max end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 4e1529427f..3422a50b5a 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class HVACSizing - def self.calculate(weather, hpxml_bldg, cfa, hvac_systems) + def self.calculate(runner, weather, hpxml_bldg, cfa, hvac_systems) # Calculates heating/cooling design loads, and selects equipment # values (e.g., capacities, airflows) specific to each HVAC system. # Calculations generally follow ACCA Manual J/S. @@ -9,25 +9,26 @@ def self.calculate(weather, hpxml_bldg, cfa, hvac_systems) @hpxml_bldg = hpxml_bldg @cfa = cfa - process_site_calcs_and_design_temps(weather) + mj = MJ.new + process_site_calcs_and_design_temps(mj, weather) # Calculate loads for the conditioned thermal zone bldg_design_loads = DesignLoads.new - process_load_windows_skylights(bldg_design_loads, weather) - process_load_doors(bldg_design_loads) - process_load_walls(bldg_design_loads) - process_load_roofs(bldg_design_loads) - process_load_ceilings(bldg_design_loads) - process_load_floors(bldg_design_loads) - process_load_slabs(bldg_design_loads) - process_load_infiltration_ventilation(bldg_design_loads, weather) + process_load_windows_skylights(mj, bldg_design_loads, weather) + process_load_doors(mj, bldg_design_loads) + process_load_walls(mj, bldg_design_loads) + process_load_roofs(mj, bldg_design_loads) + process_load_ceilings(mj, bldg_design_loads) + process_load_floors(mj, bldg_design_loads) + process_load_slabs(mj, bldg_design_loads) + process_load_infiltration_ventilation(mj, bldg_design_loads, weather) process_load_internal_gains(bldg_design_loads) # Aggregate zone loads into initial loads aggregate_loads(bldg_design_loads) # Loop through each HVAC system and calculate equipment values. - all_hvac_sizing_values = {} + @all_hvac_sizing_values = {} system_design_loads = bldg_design_loads.dup hvac_systems.each do |hvac_system| hvac_heating, hvac_cooling = hvac_system[:heating], hvac_system[:cooling] @@ -36,25 +37,25 @@ def self.calculate(weather, hpxml_bldg, cfa, hvac_systems) # Apply duct loads as needed set_fractions_load_served(hvac_heating, hvac_cooling) - apply_hvac_temperatures(system_design_loads, hvac_heating, hvac_cooling) - ducts_heat_load = calculate_load_ducts_heating(system_design_loads, hvac_heating) - ducts_cool_load_sens, ducts_cool_load_lat = calculate_load_ducts_cooling(system_design_loads, weather, hvac_cooling) + apply_hvac_temperatures(mj, system_design_loads, hvac_heating, hvac_cooling) + ducts_heat_load = calculate_load_ducts_heating(mj, system_design_loads, hvac_heating) + ducts_cool_load_sens, ducts_cool_load_lat = calculate_load_ducts_cooling(mj, system_design_loads, weather, hvac_cooling) apply_load_ducts(bldg_design_loads, ducts_heat_load, ducts_cool_load_sens, ducts_cool_load_lat) # Update duct loads in reported building design loads hvac_sizing_values = HVACSizingValues.new apply_hvac_loads(hvac_heating, hvac_sizing_values, system_design_loads, ducts_heat_load, ducts_cool_load_sens, ducts_cool_load_lat) apply_hvac_size_limits(hvac_cooling) apply_hvac_heat_pump_logic(hvac_sizing_values, hvac_cooling) - apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) - apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_cooling) + apply_hvac_equipment_adjustments(mj, runner, hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) + apply_hvac_installation_quality(mj, hvac_sizing_values, hvac_heating, hvac_cooling) apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cooling) - apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) + apply_hvac_ground_loop(mj, runner, hvac_sizing_values, weather, hvac_cooling) apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_cooling) - all_hvac_sizing_values[hvac_system] = hvac_sizing_values + @all_hvac_sizing_values[hvac_system] = hvac_sizing_values end - return bldg_design_loads, all_hvac_sizing_values + return bldg_design_loads, @all_hvac_sizing_values end private @@ -74,33 +75,33 @@ def self.is_system_to_skip(hvac_heating) return false end - def self.process_site_calcs_and_design_temps(weather) + def self.process_site_calcs_and_design_temps(mj, weather) ''' Site Calculations and Design Temperatures ''' # CLTD adjustments based on daily temperature range - @daily_range_temp_adjust = [4, 0, -5] + mj.daily_range_temp_adjust = [4, 0, -5] # Manual J inside conditions - @cool_setpoint = @hpxml_bldg.header.manualj_cooling_setpoint - @heat_setpoint = @hpxml_bldg.header.manualj_heating_setpoint + mj.cool_setpoint = @hpxml_bldg.header.manualj_cooling_setpoint + mj.heat_setpoint = @hpxml_bldg.header.manualj_heating_setpoint - @cool_design_grains = UnitConversions.convert(weather.design.CoolingHumidityRatio, 'lbm/lbm', 'grains') + mj.cool_design_grains = UnitConversions.convert(weather.design.CoolingHumidityRatio, 'lbm/lbm', 'grains') # Calculate the design temperature differences - @ctd = [@hpxml_bldg.header.manualj_cooling_design_temp - @cool_setpoint, 0.0].max - @htd = [@heat_setpoint - @hpxml_bldg.header.manualj_heating_design_temp, 0.0].max + mj.ctd = [@hpxml_bldg.header.manualj_cooling_design_temp - mj.cool_setpoint, 0.0].max + mj.htd = [mj.heat_setpoint - @hpxml_bldg.header.manualj_heating_design_temp, 0.0].max # Calculate the average Daily Temperature Range (DTR) to determine the class (low, medium, high) dtr = weather.design.DailyTemperatureRange if dtr < 16.0 - @daily_range_num = 0.0 # Low + mj.daily_range_num = 0.0 # Low elsif dtr > 25.0 - @daily_range_num = 2.0 # High + mj.daily_range_num = 2.0 # High else - @daily_range_num = 1.0 # Medium + mj.daily_range_num = 1.0 # Medium end # Altitude Correction Factors (ACF) taken from Table 10A (sea level - 12,000 ft) @@ -108,28 +109,28 @@ def self.process_site_calcs_and_design_temps(weather) # Calculate the altitude correction factor (ACF) for the site alt_cnt = (weather.header.Altitude / 1000.0).to_i - @acf = MathTools.interp2(weather.header.Altitude, alt_cnt * 1000.0, (alt_cnt + 1.0) * 1000.0, acfs[alt_cnt], acfs[alt_cnt + 1]) + mj.acf = MathTools.interp2(weather.header.Altitude, alt_cnt * 1000.0, (alt_cnt + 1.0) * 1000.0, acfs[alt_cnt], acfs[alt_cnt + 1]) # Calculate the interior humidity in Grains and enthalpy in Btu/lb for cooling - cool_setpoint_c = UnitConversions.convert(@cool_setpoint, 'F', 'C') + cool_setpoint_c = UnitConversions.convert(mj.cool_setpoint, 'F', 'C') pwsat = 6.11 * 10**(7.5 * cool_setpoint_c / (237.3 + cool_setpoint_c)) / 10.0 # kPa, using https://www.weather.gov/media/epz/wxcalc/vaporPressure.pdf rh_indoor_cooling = 0.5 # Manual J is vague on the indoor RH but uses 50% in its examples hr_indoor_cooling = (0.62198 * rh_indoor_cooling * pwsat) / (UnitConversions.convert(weather.header.LocalPressure, 'atm', 'kPa') - rh_indoor_cooling * pwsat) - @cool_indoor_grains = UnitConversions.convert(hr_indoor_cooling, 'lbm/lbm', 'grains') - @wetbulb_indoor_cooling = Psychrometrics.Twb_fT_R_P(nil, @cool_setpoint, rh_indoor_cooling, UnitConversions.convert(weather.header.LocalPressure, 'atm', 'psi')) + mj.cool_indoor_grains = UnitConversions.convert(hr_indoor_cooling, 'lbm/lbm', 'grains') + mj.cool_indoor_wetbulb = Psychrometrics.Twb_fT_R_P(nil, mj.cool_setpoint, rh_indoor_cooling, UnitConversions.convert(weather.header.LocalPressure, 'atm', 'psi')) - db_indoor_degC = UnitConversions.convert(@cool_setpoint, 'F', 'C') - @enthalpy_indoor_cooling = (1.006 * db_indoor_degC + hr_indoor_cooling * (2501.0 + 1.86 * db_indoor_degC)) * UnitConversions.convert(1.0, 'kJ', 'Btu') * UnitConversions.convert(1.0, 'lbm', 'kg') - @wetbulb_outdoor_cooling = weather.design.CoolingWetbulb + db_indoor_degC = UnitConversions.convert(mj.cool_setpoint, 'F', 'C') + mj.cool_indoor_enthalpy = (1.006 * db_indoor_degC + hr_indoor_cooling * (2501.0 + 1.86 * db_indoor_degC)) * UnitConversions.convert(1.0, 'kJ', 'Btu') * UnitConversions.convert(1.0, 'lbm', 'kg') + mj.cool_outdoor_wetbulb = weather.design.CoolingWetbulb # Inside air density - avg_setpoint = (@cool_setpoint + @heat_setpoint) / 2.0 - @inside_air_dens = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * UnitConversions.convert(avg_setpoint, 'F', 'R')) + avg_setpoint = (mj.cool_setpoint + mj.heat_setpoint) / 2.0 + mj.inside_air_dens = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * UnitConversions.convert(avg_setpoint, 'F', 'R')) # Design Temperatures - @cool_design_temps = {} - @heat_design_temps = {} + mj.cool_design_temps = {} + mj.heat_design_temps = {} locations = [] (@hpxml_bldg.roofs + @hpxml_bldg.rim_joists + @hpxml_bldg.walls + @hpxml_bldg.foundation_walls + @hpxml_bldg.floors + @hpxml_bldg.slabs).each do |surface| @@ -148,24 +149,24 @@ def self.process_site_calcs_and_design_temps(weather) if [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab, HPXML::LocationManufacturedHomeBelly].include? location - @cool_design_temps[location] = calculate_scheduled_space_design_temps(location, @cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max) - @heat_design_temps[location] = calculate_scheduled_space_design_temps(location, @heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) + mj.cool_design_temps[location] = calculate_scheduled_space_design_temps(location, mj.cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max) + mj.heat_design_temps[location] = calculate_scheduled_space_design_temps(location, mj.heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) elsif [HPXML::LocationOutside, HPXML::LocationRoofDeck, HPXML::LocationManufacturedHomeUnderBelly].include? location - @cool_design_temps[location] = @hpxml_bldg.header.manualj_cooling_design_temp - @heat_design_temps[location] = @hpxml_bldg.header.manualj_heating_design_temp + mj.cool_design_temps[location] = @hpxml_bldg.header.manualj_cooling_design_temp + mj.heat_design_temps[location] = @hpxml_bldg.header.manualj_heating_design_temp elsif HPXML::conditioned_locations.include? location - @cool_design_temps[location] = process_design_temp_cooling(weather, HPXML::LocationConditionedSpace) - @heat_design_temps[location] = process_design_temp_heating(weather, HPXML::LocationConditionedSpace) + mj.cool_design_temps[location] = process_design_temp_cooling(mj, weather, HPXML::LocationConditionedSpace) + mj.heat_design_temps[location] = process_design_temp_heating(mj, weather, HPXML::LocationConditionedSpace) else - @cool_design_temps[location] = process_design_temp_cooling(weather, location) - @heat_design_temps[location] = process_design_temp_heating(weather, location) + mj.cool_design_temps[location] = process_design_temp_cooling(mj, weather, location) + mj.heat_design_temps[location] = process_design_temp_heating(mj, weather, location) end end end - def self.process_design_temp_heating(weather, location) + def self.process_design_temp_heating(mj, weather, location) if location == HPXML::LocationConditionedSpace - heat_temp = @heat_setpoint + heat_temp = mj.heat_setpoint elsif location == HPXML::LocationGarage heat_temp = @hpxml_bldg.header.manualj_heating_design_temp + 13.0 @@ -184,14 +185,14 @@ def self.process_design_temp_heating(weather, location) if location == HPXML::LocationAtticVented heat_temp = @hpxml_bldg.header.manualj_heating_design_temp else - heat_temp = calculate_space_design_temps(location, weather, @heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) + heat_temp = calculate_space_design_temps(mj, location, weather, mj.heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) end else heat_temp = @hpxml_bldg.header.manualj_heating_design_temp end elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? location - heat_temp = calculate_space_design_temps(location, weather, @heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) + heat_temp = calculate_space_design_temps(mj, location, weather, mj.heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) end @@ -200,9 +201,9 @@ def self.process_design_temp_heating(weather, location) return heat_temp end - def self.process_design_temp_cooling(weather, location) + def self.process_design_temp_cooling(mj, weather, location) if location == HPXML::LocationConditionedSpace - cool_temp = @cool_setpoint + cool_temp = mj.cool_setpoint elsif location == HPXML::LocationGarage # Calculate fraction of garage under conditioned space @@ -227,15 +228,15 @@ def self.process_design_temp_cooling(weather, location) # Calculate the garage cooling design temperature based on Table 4C # Linearly interpolate between having conditioned space over the garage and not having conditioned space above the garage - if @daily_range_num == 0.0 + if mj.daily_range_num == 0.0 cool_temp = (@hpxml_bldg.header.manualj_cooling_design_temp + (11.0 * garage_frac_under_conditioned) + (22.0 * (1.0 - garage_frac_under_conditioned))) - elsif @daily_range_num == 1.0 + elsif mj.daily_range_num == 1.0 cool_temp = (@hpxml_bldg.header.manualj_cooling_design_temp + (6.0 * garage_frac_under_conditioned) + (17.0 * (1.0 - garage_frac_under_conditioned))) - elsif @daily_range_num == 2.0 + elsif mj.daily_range_num == 2.0 cool_temp = (@hpxml_bldg.header.manualj_cooling_design_temp + (1.0 * garage_frac_under_conditioned) + (12.0 * (1.0 - garage_frac_under_conditioned))) @@ -255,7 +256,7 @@ def self.process_design_temp_cooling(weather, location) if location == HPXML::LocationAtticVented cool_temp = @hpxml_bldg.header.manualj_cooling_design_temp + 40.0 # This is the number from a California study with dark shingle roof and similar ventilation. else - cool_temp = calculate_space_design_temps(location, weather, @cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max, true) + cool_temp = calculate_space_design_temps(mj, location, weather, mj.cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max, true) end else @@ -271,9 +272,9 @@ def self.process_design_temp_cooling(weather, location) if location == HPXML::LocationAtticUnvented if not roof.radiant_barrier - cool_temp += (150.0 + (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num]) * roof.net_area + cool_temp += (150.0 + (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + mj.daily_range_temp_adjust[mj.daily_range_num]) * roof.net_area else - cool_temp += (130.0 + (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num]) * roof.net_area + cool_temp += (130.0 + (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + mj.daily_range_temp_adjust[mj.daily_range_num]) * roof.net_area end else if not roof.radiant_barrier @@ -335,11 +336,11 @@ def self.process_design_temp_cooling(weather, location) cool_temp /= tot_roof_area # Adjust base CLTD for cooling design temperature and daily range - cool_temp += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num] + cool_temp += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + mj.daily_range_temp_adjust[mj.daily_range_num] end elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? location - cool_temp = calculate_space_design_temps(location, weather, @cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max) + cool_temp = calculate_space_design_temps(mj, location, weather, mj.cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max) end @@ -348,7 +349,7 @@ def self.process_design_temp_cooling(weather, location) return cool_temp end - def self.process_load_windows_skylights(bldg_design_loads, weather) + def self.process_load_windows_skylights(mj, bldg_design_loads, weather) ''' Heating and Cooling Loads: Windows & Skylights ''' @@ -491,7 +492,7 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) window_ufactor, window_shgc = Constructions.get_ufactor_shgc_adjusted_by_storms(window.storm_type, window.ufactor, window.shgc) - bldg_design_loads.Heat_Windows += window_ufactor * window.area * @htd + bldg_design_loads.Heat_Windows += window_ufactor * window.area * mj.htd for hr in -1..11 @@ -518,10 +519,10 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) end end - ctd_adj = @ctd + ctd_adj = mj.ctd if hr > -1 # Calculate hourly CTD adjusted value for mid-summer - ctd_adj += hta[@daily_range_num][hr] + ctd_adj += hta[mj.daily_range_num][hr] end # Hourly Heat Transfer Multiplier for the given window Direction @@ -624,7 +625,7 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) skylight_ufactor, skylight_shgc = Constructions.get_ufactor_shgc_adjusted_by_storms(skylight.storm_type, skylight.ufactor, skylight.shgc) - bldg_design_loads.Heat_Skylights += skylight_ufactor * skylight.area * @htd + bldg_design_loads.Heat_Skylights += skylight_ufactor * skylight.area * mj.htd for hr in -1..11 @@ -654,10 +655,10 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) sol_h = Math::cos(inclination_angle.deg2rad) * (psf_lat_horiz * clf_horiz) sol_v = Math::sin(inclination_angle.deg2rad) * (psf_lat[cnt225] * clf_d) - ctd_adj = @ctd + ctd_adj = mj.ctd if hr > -1 # Calculate hourly CTD adjusted value for mid-summer - ctd_adj += hta[@daily_range_num][hr] + ctd_adj += hta[mj.daily_range_num][hr] end # Hourly Heat Transfer Multiplier for the given skylight Direction @@ -690,17 +691,17 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) bldg_design_loads.Cool_Skylights = alp_load + eal end - def self.process_load_doors(bldg_design_loads) + def self.process_load_doors(mj, bldg_design_loads) ''' Heating and Cooling Loads: Doors ''' - if @daily_range_num == 0.0 - cltd = @ctd + 15.0 - elsif @daily_range_num == 1.0 - cltd = @ctd + 11.0 - elsif @daily_range_num == 2.0 - cltd = @ctd + 6.0 + if mj.daily_range_num == 0.0 + cltd = mj.ctd + 15.0 + elsif mj.daily_range_num == 1.0 + cltd = mj.ctd + 11.0 + elsif mj.daily_range_num == 2.0 + cltd = mj.ctd + 6.0 end bldg_design_loads.Heat_Doors = 0.0 @@ -710,17 +711,17 @@ def self.process_load_doors(bldg_design_loads) next unless door.is_thermal_boundary if door.wall.is_exterior - bldg_design_loads.Heat_Doors += (1.0 / door.r_value) * door.area * @htd + bldg_design_loads.Heat_Doors += (1.0 / door.r_value) * door.area * mj.htd bldg_design_loads.Cool_Doors += (1.0 / door.r_value) * door.area * cltd else # Partition door adjacent_space = door.wall.exterior_adjacent_to - bldg_design_loads.Cool_Doors += (1.0 / door.r_value) * door.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) - bldg_design_loads.Heat_Doors += (1.0 / door.r_value) * door.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + bldg_design_loads.Cool_Doors += (1.0 / door.r_value) * door.area * (mj.cool_design_temps[adjacent_space] - mj.cool_setpoint) + bldg_design_loads.Heat_Doors += (1.0 / door.r_value) * door.area * (mj.heat_setpoint - mj.heat_design_temps[adjacent_space]) end end end - def self.process_load_walls(bldg_design_loads) + def self.process_load_walls(mj, bldg_design_loads) ''' Heating and Cooling Loads: Walls ''' @@ -773,23 +774,23 @@ def self.process_load_walls(bldg_design_loads) cltd = cltd_base_sun[wall_group - 1] * colorMultiplier end - if @ctd >= 10.0 + if mj.ctd >= 10.0 # Adjust the CLTD for different cooling design temperatures cltd += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) # Adjust the CLTD for daily temperature range - cltd += @daily_range_temp_adjust[@daily_range_num] + cltd += mj.daily_range_temp_adjust[mj.daily_range_num] else # Handling cases ctd < 10 is based on A12-18 in MJ8 - cltd_corr = @ctd - 20.0 - @daily_range_temp_adjust[@daily_range_num] + cltd_corr = mj.ctd - 20.0 - mj.daily_range_temp_adjust[mj.daily_range_num] cltd = [cltd + cltd_corr, 0.0].max # Assume zero cooling load for negative CLTD's end bldg_design_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * cltd - bldg_design_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * @htd + bldg_design_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * mj.htd else # Partition wall adjacent_space = wall.exterior_adjacent_to - bldg_design_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (@cool_design_temps[adjacent_space] - @cool_setpoint) - bldg_design_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (@heat_setpoint - @heat_design_temps[adjacent_space]) + bldg_design_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (mj.cool_design_temps[adjacent_space] - mj.cool_setpoint) + bldg_design_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (mj.heat_setpoint - mj.heat_design_temps[adjacent_space]) end end end @@ -799,11 +800,11 @@ def self.process_load_walls(bldg_design_loads) next unless foundation_wall.is_exterior_thermal_boundary u_wall_with_soil, _u_wall_without_soil = get_foundation_wall_properties(foundation_wall) - bldg_design_loads.Heat_Walls += u_wall_with_soil * foundation_wall.net_area * @htd + bldg_design_loads.Heat_Walls += u_wall_with_soil * foundation_wall.net_area * mj.htd end end - def self.process_load_roofs(bldg_design_loads) + def self.process_load_roofs(mj, bldg_design_loads) ''' Heating and Cooling Loads: Roofs ''' @@ -850,14 +851,14 @@ def self.process_load_roofs(bldg_design_loads) end # Adjust base CLTD for different CTD or DR - cltd += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num] + cltd += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + mj.daily_range_temp_adjust[mj.daily_range_num] bldg_design_loads.Cool_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * cltd - bldg_design_loads.Heat_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * @htd + bldg_design_loads.Heat_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * mj.htd end end - def self.process_load_ceilings(bldg_design_loads) + def self.process_load_ceilings(mj, bldg_design_loads) ''' Heating and Cooling Loads: Ceilings ''' @@ -870,17 +871,17 @@ def self.process_load_ceilings(bldg_design_loads) next unless floor.is_thermal_boundary if floor.is_exterior - bldg_design_loads.Cool_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * (@ctd - 5.0 + @daily_range_temp_adjust[@daily_range_num]) - bldg_design_loads.Heat_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * @htd + bldg_design_loads.Cool_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * (mj.ctd - 5.0 + mj.daily_range_temp_adjust[mj.daily_range_num]) + bldg_design_loads.Heat_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * mj.htd else adjacent_space = floor.exterior_adjacent_to - bldg_design_loads.Cool_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) - bldg_design_loads.Heat_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + bldg_design_loads.Cool_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * (mj.cool_design_temps[adjacent_space] - mj.cool_setpoint) + bldg_design_loads.Heat_Ceilings += (1.0 / floor.insulation_assembly_r_value) * floor.area * (mj.heat_setpoint - mj.heat_design_temps[adjacent_space]) end end end - def self.process_load_floors(bldg_design_loads) + def self.process_load_floors(mj, bldg_design_loads) ''' Heating and Cooling Loads: Floors ''' @@ -893,8 +894,8 @@ def self.process_load_floors(bldg_design_loads) next unless floor.is_thermal_boundary if floor.is_exterior - bldg_design_loads.Cool_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * (@ctd - 5.0 + @daily_range_temp_adjust[@daily_range_num]) - bldg_design_loads.Heat_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * @htd + bldg_design_loads.Cool_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * (mj.ctd - 5.0 + mj.daily_range_temp_adjust[mj.daily_range_num]) + bldg_design_loads.Heat_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * mj.htd else # Partition floor adjacent_space = floor.exterior_adjacent_to if floor.is_floor && [HPXML::LocationCrawlspaceVented, HPXML::LocationCrawlspaceUnvented, HPXML::LocationBasementUnconditioned].include?(adjacent_space) @@ -924,25 +925,25 @@ def self.process_load_floors(bldg_design_loads) # Calculate partition temperature different heating (PTDH) per Manual J Figure A12-6 if [HPXML::LocationCrawlspaceVented].include? adjacent_space # Vented or Leaky - ptdc_floor = @ctd / (1.0 + (4.0 * u_floor) / (u_wall + 0.11)) - ptdh_floor = @htd / (1.0 + (4.0 * u_floor) / (u_wall + 0.11)) + ptdc_floor = mj.ctd / (1.0 + (4.0 * u_floor) / (u_wall + 0.11)) + ptdh_floor = mj.htd / (1.0 + (4.0 * u_floor) / (u_wall + 0.11)) elsif [HPXML::LocationCrawlspaceUnvented, HPXML::LocationBasementUnconditioned].include? adjacent_space # Sealed Tight - ptdc_floor = u_wall * @ctd / (4.0 * u_floor + u_wall) - ptdh_floor = u_wall * @htd / (4.0 * u_floor + u_wall) + ptdc_floor = u_wall * mj.ctd / (4.0 * u_floor + u_wall) + ptdh_floor = u_wall * mj.htd / (4.0 * u_floor + u_wall) end bldg_design_loads.Cool_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * ptdc_floor bldg_design_loads.Heat_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * ptdh_floor else # E.g., floor over garage - bldg_design_loads.Cool_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) - bldg_design_loads.Heat_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + bldg_design_loads.Cool_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * (mj.cool_design_temps[adjacent_space] - mj.cool_setpoint) + bldg_design_loads.Heat_Floors += (1.0 / floor.insulation_assembly_r_value) * floor.area * (mj.heat_setpoint - mj.heat_design_temps[adjacent_space]) end end end end - def self.process_load_slabs(bldg_design_loads) + def self.process_load_slabs(mj, bldg_design_loads) ''' Heating and Cooling Loads: Floors ''' @@ -954,7 +955,7 @@ def self.process_load_slabs(bldg_design_loads) if slab.interior_adjacent_to == HPXML::LocationConditionedSpace # Slab-on-grade f_value = calc_slab_f_value(slab, @hpxml_bldg.site.ground_conductivity) - bldg_design_loads.Heat_Slabs += f_value * slab.exposed_perimeter * @htd + bldg_design_loads.Heat_Slabs += f_value * slab.exposed_perimeter * mj.htd elsif HPXML::conditioned_below_grade_locations.include? slab.interior_adjacent_to # Based on MJ 8th Ed. A12-7 and ASHRAE HoF 2013 pg 18.31 Eq 40 slab_is_insulated = false @@ -979,12 +980,12 @@ def self.process_load_slabs(bldg_design_loads) if slab_is_insulated u_value *= 0.7 # U-values are multiplied y 0.70 to produce U-values for insulated floors end - bldg_design_loads.Heat_Slabs += u_value * slab.area * @htd + bldg_design_loads.Heat_Slabs += u_value * slab.area * mj.htd end end end - def self.process_load_infiltration_ventilation(bldg_design_loads, weather) + def self.process_load_infiltration_ventilation(mj, bldg_design_loads, weather) ''' Heating and Cooling Loads: Infiltration & Ventilation ''' @@ -1004,8 +1005,8 @@ def self.process_load_infiltration_ventilation(bldg_design_loads, weather) windspeed_cooling_mph = 7.5 # Table 5D/5E Wind Velocity Value footnote windspeed_heating_mph = 15.0 # Table 5D/5E Wind Velocity Value footnote - icfm_Cooling = ela_in2 * (c_s * @ctd + c_w * windspeed_cooling_mph**2)**0.5 - icfm_Heating = ela_in2 * (c_s * @htd + c_w * windspeed_heating_mph**2)**0.5 + icfm_Cooling = ela_in2 * (c_s * mj.ctd + c_w * windspeed_cooling_mph**2)**0.5 + icfm_Heating = ela_in2 * (c_s * mj.htd + c_w * windspeed_heating_mph**2)**0.5 q_unb_cfm, q_preheat, q_precool, q_recirc, q_bal_Sens, q_bal_Lat = get_ventilation_rates() @@ -1014,10 +1015,10 @@ def self.process_load_infiltration_ventilation(bldg_design_loads, weather) cfm_cool_load_sens = q_bal_Sens + (icfm_Cooling**2.0 + q_unb_cfm**2.0)**0.5 - q_precool - q_recirc cfm_cool_load_lat = q_bal_Lat + (icfm_Cooling**2.0 + q_unb_cfm**2.0)**0.5 - q_recirc - bldg_design_loads.Heat_InfilVent = 1.1 * @acf * cfm_Heating * @htd + bldg_design_loads.Heat_InfilVent = 1.1 * mj.acf * cfm_Heating * mj.htd - bldg_design_loads.Cool_InfilVent_Sens = 1.1 * @acf * cfm_cool_load_sens * @ctd - bldg_design_loads.Cool_InfilVent_Lat = 0.68 * @acf * cfm_cool_load_lat * (@cool_design_grains - @cool_indoor_grains) + bldg_design_loads.Cool_InfilVent_Sens = 1.1 * mj.acf * cfm_cool_load_sens * mj.ctd + bldg_design_loads.Cool_InfilVent_Lat = 0.68 * mj.acf * cfm_cool_load_lat * (mj.cool_design_grains - mj.cool_indoor_grains) end def self.process_load_internal_gains(bldg_design_loads) @@ -1061,15 +1062,15 @@ def self.aggregate_loads(bldg_design_loads) bldg_design_loads.Cool_Ducts_Lat = 0.0 end - def self.apply_hvac_temperatures(system_design_loads, hvac_heating, hvac_cooling) + def self.apply_hvac_temperatures(mj, system_design_loads, hvac_heating, hvac_cooling) ''' HVAC Temperatures ''' # Evaporative cooler temperature calculation based on Manual S Figure 4-7 if @cooling_type == HPXML::HVACTypeEvaporativeCooler - td_potential = @cool_design_temps[HPXML::LocationOutside] - @wetbulb_outdoor_cooling + td_potential = mj.cool_design_temps[HPXML::LocationOutside] - mj.cool_outdoor_wetbulb td = td_potential * hvac_cooling.additional_properties.effectiveness - @leaving_air_temp = @cool_design_temps[HPXML::LocationOutside] - td + @leaving_air_temp = mj.cool_design_temps[HPXML::LocationOutside] - td else # Calculate Leaving Air Temperature shr = [system_design_loads.Cool_Sens / system_design_loads.Cool_Tot, 1.0].min @@ -1104,7 +1105,7 @@ def self.apply_hvac_loads(hvac_heating, system_design_loads, bldg_design_loads, # This ensures, e.g., that an appropriate heating airflow is used for duct losses. system_design_loads.Heat_Load = system_design_loads.Heat_Load / (1.0 / hvac_heating.heating_efficiency_cop) end - system_design_loads.Heat_Load_Supp = system_design_loads.Heat_Load + system_design_loads.Heat_Load_Supp = system_design_loads.Heat_Load * @fraction_heat_load_served # Cooling system_design_loads.Cool_Load_Tot = bldg_design_loads.Cool_Tot * @fraction_cool_load_served @@ -1220,7 +1221,7 @@ def self.get_duct_regain_factor(duct) return dse_Fregain end - def self.calculate_load_ducts_heating(system_design_loads, hvac_heating) + def self.calculate_load_ducts_heating(mj, system_design_loads, hvac_heating) ''' Heating Duct Loads ''' @@ -1232,7 +1233,7 @@ def self.calculate_load_ducts_heating(system_design_loads, hvac_heating) # Distribution system efficiency (DSE) calculations based on ASHRAE Standard 152 - duct_values = calc_duct_conduction_values(hvac_heating.distribution_system, @heat_design_temps) + duct_values = calc_duct_conduction_values(hvac_heating.distribution_system, mj.heat_design_temps) dse_As, dse_Ar, supply_r, return_r, dse_Tamb_s, dse_Tamb_r, dse_Fregain_s, dse_Fregain_r = duct_values # Initialize for the iteration @@ -1245,11 +1246,11 @@ def self.calculate_load_ducts_heating(system_design_loads, hvac_heating) heat_load_prev = heat_load_next # Calculate the new heating air flow rate - heat_cfm = calc_airflow_rate_manual_s(heat_load_next, (@supply_air_temp - @heat_setpoint)) + heat_cfm = calc_airflow_rate_manual_s(mj, heat_load_next, (@supply_air_temp - mj.heat_setpoint)) dse_Qs, dse_Qr = calc_duct_leakages_cfm25(hvac_heating.distribution_system, heat_cfm) - dse_DE = calc_delivery_effectiveness_heating(dse_Qs, dse_Qr, heat_cfm, heat_load_next, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, @heat_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r) + dse_DE = calc_delivery_effectiveness_heating(mj, dse_Qs, dse_Qr, heat_cfm, heat_load_next, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, mj.heat_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r) # Calculate the increase in heating load due to ducts (Approach: DE = Qload/Qequip -> Qducts = Qequip-Qload) heat_load_next = init_heat_load / dse_DE @@ -1262,7 +1263,7 @@ def self.calculate_load_ducts_heating(system_design_loads, hvac_heating) return ducts_heat_load end - def self.calculate_load_ducts_cooling(system_design_loads, weather, hvac_cooling) + def self.calculate_load_ducts_cooling(mj, system_design_loads, weather, hvac_cooling) ''' Cooling Duct Loads ''' @@ -1275,7 +1276,7 @@ def self.calculate_load_ducts_cooling(system_design_loads, weather, hvac_cooling # Distribution system efficiency (DSE) calculations based on ASHRAE Standard 152 - duct_values = calc_duct_conduction_values(hvac_cooling.distribution_system, @cool_design_temps) + duct_values = calc_duct_conduction_values(hvac_cooling.distribution_system, mj.cool_design_temps) dse_As, dse_Ar, supply_r, return_r, dse_Tamb_s, dse_Tamb_r, dse_Fregain_s, dse_Fregain_r = duct_values # Calculate the air enthalpy in the return duct location for DSE calculations @@ -1285,7 +1286,7 @@ def self.calculate_load_ducts_cooling(system_design_loads, weather, hvac_cooling delta = 1 cool_load_tot_next = init_cool_load_sens + init_cool_load_lat - cool_cfm = calc_airflow_rate_manual_s(init_cool_load_sens, (@cool_setpoint - @leaving_air_temp)) + cool_cfm = calc_airflow_rate_manual_s(mj, init_cool_load_sens, (mj.cool_setpoint - @leaving_air_temp)) _dse_Qs, dse_Qr = calc_duct_leakages_cfm25(hvac_cooling.distribution_system, cool_cfm) for _iter in 1..50 @@ -1293,15 +1294,15 @@ def self.calculate_load_ducts_cooling(system_design_loads, weather, hvac_cooling cool_load_tot_prev = cool_load_tot_next - cool_load_lat, cool_load_sens = calculate_sensible_latent_split(dse_Qr, cool_load_tot_next, init_cool_load_lat) + cool_load_lat, cool_load_sens = calculate_sensible_latent_split(mj, dse_Qr, cool_load_tot_next, init_cool_load_lat) cool_load_tot = cool_load_lat + cool_load_sens # Calculate the new cooling air flow rate - cool_cfm = calc_airflow_rate_manual_s(cool_load_sens, (@cool_setpoint - @leaving_air_temp)) + cool_cfm = calc_airflow_rate_manual_s(mj, cool_load_sens, (mj.cool_setpoint - @leaving_air_temp)) dse_Qs, dse_Qr = calc_duct_leakages_cfm25(hvac_cooling.distribution_system, cool_cfm) - dse_DE, _dse_dTe_cooling, _cool_duct_sens = calc_delivery_effectiveness_cooling(dse_Qs, dse_Qr, @leaving_air_temp, cool_cfm, cool_load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, @cool_setpoint, dse_Fregain_s, dse_Fregain_r, cool_load_tot, dse_h_r, supply_r, return_r) + dse_DE, _dse_dTe_cooling, _cool_duct_sens = calc_delivery_effectiveness_cooling(mj, dse_Qs, dse_Qr, @leaving_air_temp, cool_cfm, cool_load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, mj.cool_setpoint, dse_Fregain_s, dse_Fregain_r, cool_load_tot, dse_h_r, supply_r, return_r) cool_load_tot_next = (init_cool_load_sens + init_cool_load_lat) / dse_DE @@ -1324,7 +1325,7 @@ def self.apply_load_ducts(bldg_design_loads, total_ducts_heat_load, total_ducts_ bldg_design_loads.Cool_Tot += total_ducts_cool_load_sens.to_f + total_ducts_cool_load_lat.to_f end - def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) + def self.apply_hvac_equipment_adjustments(mj, runner, hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) ''' Equipment Adjustments ''' @@ -1353,12 +1354,12 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat entering_temp = @hpxml_bldg.header.manualj_cooling_design_temp hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) if hvac_cooling.compressor_type == HPXML::HVACCompressorTypeVariableSpeed - idb_adj = adjust_indoor_condition_var_speed(entering_temp, @wetbulb_indoor_cooling, :clg) + idb_adj = adjust_indoor_condition_var_speed(entering_temp, mj.cool_indoor_wetbulb, :clg) odb_adj = adjust_outdoor_condition_var_speed(hvac_cooling.cooling_detailed_performance_data, entering_temp, hvac_cooling, :clg) total_cap_curve_value = odb_adj * idb_adj else coefficients = hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed] - total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, coefficients) + total_cap_curve_value = MathTools.biquadratic(mj.cool_indoor_wetbulb, entering_temp, coefficients) end cool_cap_rated = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value @@ -1367,7 +1368,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat sens_cap_rated = cool_cap_rated * hvac_cooling_shr # Calculate the air flow rate required for design conditions - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - @leaving_air_temp), cool_cap_rated) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Cool_Load_Sens, (mj.cool_setpoint - @leaving_air_temp), cool_cap_rated) sensible_cap_curve_value = process_curve_fit(hvac_sizing_values.Cool_Airflow, hvac_sizing_values.Cool_Load_Tot, entering_temp) sens_cap_design = sens_cap_rated * sensible_cap_curve_value @@ -1396,7 +1397,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat cool_load_sens_cap_design = hvac_sizing_values.Cool_Load_Lat / ((total_cap_curve_value / hvac_cooling_shr - \ (b_sens + d_sens * entering_temp) / \ - (1.1 * @acf * (@cool_setpoint - @leaving_air_temp))) / \ + (1.1 * mj.acf * (mj.cool_setpoint - @leaving_air_temp))) / \ (a_sens + c_sens * entering_temp) - 1.0) # Ensure equipment is not being undersized @@ -1456,7 +1457,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat end # Calculate the final air flow rate using final sensible capacity at design - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(mj, cool_load_sens_cap_design, (mj.cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) elsif [HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeMiniSplitAirConditioner].include?(@cooling_type) && !is_ducted @@ -1469,7 +1470,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr else entering_temp = @hpxml_bldg.header.manualj_cooling_design_temp - idb_adj = adjust_indoor_condition_var_speed(entering_temp, @wetbulb_indoor_cooling, :clg) + idb_adj = adjust_indoor_condition_var_speed(entering_temp, mj.cool_indoor_wetbulb, :clg) odb_adj = adjust_outdoor_condition_var_speed(hvac_cooling.cooling_detailed_performance_data, entering_temp, hvac_cooling, :clg) total_cap_curve_value = odb_adj * idb_adj @@ -1492,7 +1493,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr else entering_temp = @hpxml_bldg.header.manualj_cooling_design_temp - total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed]) + total_cap_curve_value = MathTools.biquadratic(mj.cool_indoor_wetbulb, entering_temp, hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed]) hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr @@ -1507,11 +1508,11 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) # Calculate the air flow rate required for design conditions - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - @leaving_air_temp)) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Cool_Load_Sens, (mj.cool_setpoint - @leaving_air_temp)) # Neglecting the water flow rate for now because it's not available yet. Air flow rate is pre-adjusted values. - design_wb_temp = UnitConversions.convert(@wetbulb_indoor_cooling, 'f', 'k') - design_db_temp = UnitConversions.convert(@cool_setpoint, 'f', 'k') + design_wb_temp = UnitConversions.convert(mj.cool_indoor_wetbulb, 'f', 'k') + design_db_temp = UnitConversions.convert(mj.cool_setpoint, 'f', 'k') design_w_temp = UnitConversions.convert(entering_temp, 'f', 'k') design_vfr_air = UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'cfm', 'm^3/s') @@ -1519,7 +1520,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat cool_sh_curve_spec = hvac_cooling_ap.cool_sh_curve_spec[hvac_cooling_speed] total_cap_curve_value, sensible_cap_curve_value = calc_gshp_clg_curve_value(cool_cap_curve_spec, cool_sh_curve_spec, design_wb_temp, design_db_temp, design_w_temp, design_vfr_air, nil) - bypass_factor_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, @cool_setpoint, gshp_coil_bf_ft_spec) + bypass_factor_curve_value = MathTools.biquadratic(mj.cool_indoor_wetbulb, mj.cool_setpoint, gshp_coil_bf_ft_spec) hvac_cooling_shr = hvac_cooling_ap.cool_rated_shrs_gross[hvac_cooling_speed] if @hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS @@ -1531,7 +1532,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / (1.0 + (1.0 - coil_bf * bypass_factor_curve_value) * - (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) + (80.0 - mj.cool_setpoint) / (mj.cool_setpoint - @leaving_air_temp))) cool_load_lat_cap_design = hvac_sizing_values.Cool_Load_Tot - cool_load_sens_cap_design # Adjust Sizing so that coil sensible at design >= CoolingLoad_Sens, and coil latent at design >= CoolingLoad_Lat, and equipment SHRRated is maintained. @@ -1548,15 +1549,15 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat # Recalculate the air flow rate in case the oversizing limit has been used cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / (1.0 + (1.0 - coil_bf * bypass_factor_curve_value) * - (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) + (80.0 - mj.cool_setpoint) / (mj.cool_setpoint - @leaving_air_temp))) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(mj, cool_load_sens_cap_design, (mj.cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) elsif HPXML::HVACTypeEvaporativeCooler == @cooling_type hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Load_Sens - if @cool_setpoint - @leaving_air_temp > 0 - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - @leaving_air_temp)) + if mj.cool_setpoint - @leaving_air_temp > 0 + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Cool_Load_Sens, (mj.cool_setpoint - @leaving_air_temp)) else hvac_sizing_values.Cool_Airflow = @cfa * 2.0 # Use industry rule of thumb sizing method adopted by HEScore end @@ -1585,6 +1586,18 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat if not hvac_heating.nil? hvac_heating_ap = hvac_heating.additional_properties is_ducted = !hvac_heating.distribution_system.nil? + + if hvac_heating.is_a?(HPXML::HeatingSystem) && hvac_heating.is_heat_pump_backup_system + # Adjust heating load using the HP backup calculation + hvac_hp = hvac_heating.primary_heat_pump + hp_sizing_values = @all_hvac_sizing_values[{ heating: hvac_hp, cooling: hvac_hp }] + if hp_sizing_values.nil? + fail 'Primary heat pump should have been sized first.' + end + + hp_heating_speed = get_sizing_speed(hvac_hp.additional_properties, false) + hvac_sizing_values.Heat_Load = calculate_heat_pump_backup_load(mj, hvac_hp, hvac_sizing_values.Heat_Load, hp_sizing_values.Heat_Capacity, hp_heating_speed) + end end if hvac_sizing_values.Heat_Load <= 0 @@ -1602,12 +1615,12 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat if hvac_heating.is_a?(HPXML::HeatPump) && (@hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS) hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load else - process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system, hvac_heating_speed) + process_heat_pump_adjustment(mj, runner, hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system, hvac_heating_speed) end - hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp + hvac_sizing_values.Heat_Capacity_Supp = calculate_heat_pump_backup_load(mj, hvac_heating, hvac_sizing_values.Heat_Load_Supp, hvac_sizing_values.Heat_Capacity, hvac_heating_speed) if (@heating_type == HPXML::HVACTypeHeatPumpAirToAir) || (@heating_type == HPXML::HVACTypeHeatPumpMiniSplit && is_ducted) - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Heat_Capacity, (@supply_air_temp - mj.heat_setpoint), hvac_sizing_values.Heat_Capacity) else hvac_sizing_values.Heat_Airflow = calc_airflow_rate_user(hvac_sizing_values.Heat_Capacity, hvac_heating_ap.heat_rated_cfm_per_ton[hvac_heating_speed], hvac_heating_ap.heat_capacity_ratios[hvac_heating_speed]) end @@ -1633,27 +1646,27 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / (1.0 + (1.0 - gshp_coil_bf * bypass_factor_curve_value) * - (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) + (80.0 - mj.cool_setpoint) / (mj.cool_setpoint - @leaving_air_temp))) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(mj, cool_load_sens_cap_design, (mj.cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) else hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp end - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Heat_Capacity, (@supply_air_temp - mj.heat_setpoint)) elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? @heating_type hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Heat_Capacity, (@supply_air_temp - mj.heat_setpoint), hvac_sizing_values.Heat_Capacity) elsif (@heating_type == HPXML::HVACTypeFurnace) || ((not hvac_cooling.nil?) && hvac_cooling.has_integrated_heating) hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = 0.0 - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Heat_Capacity, (@supply_air_temp - mj.heat_setpoint), hvac_sizing_values.Heat_Capacity) elsif [HPXML::HVACTypeStove, HPXML::HVACTypeSpaceHeater, @@ -1669,7 +1682,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Heat_Airflow = UnitConversions.convert(hvac_sizing_values.Heat_Capacity, 'Btu/hr', 'ton') * hvac_heating_ap.heat_rated_cfm_per_ton[0] else # Autosized airflow rate - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(mj, hvac_sizing_values.Heat_Capacity, (@supply_air_temp - mj.heat_setpoint), hvac_sizing_values.Heat_Capacity) end elsif [HPXML::HVACTypeBoiler, @@ -1715,15 +1728,21 @@ def self.adjust_outdoor_condition_var_speed(detailed_performance_data, adjusted_ capacity_retention_temperature, capacity_retention_fraction = HVAC.get_heating_capacity_retention(hvac_sys) end odb_adj = (1.0 - capacity_retention_fraction) / (rated_odb - capacity_retention_temperature) * (adjusted_outdoor_temp - rated_odb) + 1.0 - else + else # there are detailed performance data # Based on detailed performance data - capacity_max = detailed_performance_data.find { |dp| dp.outdoor_temperature == rated_odb && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity - odb_adj = HVAC.interpolate_to_odb_table_point(detailed_performance_data, HPXML::CapacityDescriptionMaximum, adjusted_outdoor_temp, :capacity) / capacity_max + max_rated_dp = detailed_performance_data.find { |dp| dp.outdoor_temperature == rated_odb && dp.capacity_description == HPXML::CapacityDescriptionMaximum } + if max_rated_dp.capacity.nil? + property = :capacity_fraction_of_nominal + else + property = :capacity + end + capacity_max = detailed_performance_data.find { |dp| dp.outdoor_temperature == rated_odb && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.send(property) + odb_adj = HVAC.interpolate_to_odb_table_point(detailed_performance_data, HPXML::CapacityDescriptionMaximum, adjusted_outdoor_temp, property) / capacity_max end return odb_adj end - def self.apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_cooling) + def self.apply_hvac_installation_quality(mj, hvac_sizing_values, hvac_heating, hvac_cooling) # Increases the autosized heating/cooling capacities to account for any reduction # in capacity due to HVAC installation quality. This is done to prevent causing # unmet loads. @@ -1784,7 +1803,7 @@ def self.apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_ a4_CH_Qgr_c = qgr_values[3] q0_CH = a1_CH_Qgr_c - q1_CH = a2_CH_Qgr_c * UnitConversions.convert(@cool_setpoint, 'F', 'C') + q1_CH = a2_CH_Qgr_c * UnitConversions.convert(mj.cool_setpoint, 'F', 'C') q2_CH = a3_CH_Qgr_c * UnitConversions.convert(@hpxml_bldg.header.manualj_cooling_design_temp, 'F', 'C') q3_CH = a4_CH_Qgr_c * f_ch y_CH_Q_c = 1 + ((q0_CH + q1_CH + q2_CH + q3_CH) * f_ch) @@ -1922,102 +1941,138 @@ def self.apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cool end end - def self.scale_detailed_performance_data_capacities(detailed_performance_data, scaling_factor) - detailed_performance_data.each do |dp| - dp.capacity *= scaling_factor - end - end - - def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) + def self.apply_hvac_ground_loop(mj, runner, hvac_sizing_values, weather, hvac_cooling) ''' GSHP Ground Loop Sizing Calculations ''' return if @cooling_type != HPXML::HVACTypeHeatPumpGroundToAir - hvac_cooling_ap = hvac_cooling.additional_properties + geothermal_loop = hvac_cooling.geothermal_loop + bore_spacing = geothermal_loop.bore_spacing + bore_diameter = geothermal_loop.bore_diameter - # Autosize ground loop heat exchanger length - bore_spacing = 20.0 # ft, distance between bores - pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling_ap) - nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) - - bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length = [bore_length_heat, bore_length_cool].max - - loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 - - num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max - bore_depth = (bore_length / num_bore_holes).floor # ft - min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function - - for _i in 0..4 - if (bore_depth < min_bore_depth) && (num_bore_holes > 1) - num_bore_holes -= 1 - bore_depth = (bore_length / num_bore_holes).floor - elsif bore_depth > 345 - num_bore_holes += 1 - bore_depth = (bore_length / num_bore_holes).floor - end - end - - bore_depth = (bore_length / num_bore_holes).floor + 5 - - if num_bore_holes == 1 - bore_config = 'single' - elsif num_bore_holes == 2 - bore_config = 'line' - elsif num_bore_holes == 3 - bore_config = 'line' - elsif num_bore_holes == 4 - bore_config = 'rectangle' - elsif num_bore_holes == 5 - bore_config = 'u-config' - elsif num_bore_holes > 5 - bore_config = 'line' - end - - # Test for valid GSHP bore field configurations - valid_configs = { 'single' => [1], - 'line' => [2, 3, 4, 5, 6, 7, 8, 9, 10], - 'l-config' => [3, 4, 5, 6], - 'rectangle' => [2, 4, 6, 8], - 'u-config' => [5, 7, 9], - 'l2-config' => [8], - 'open-rectangle' => [8] } - valid_num_bores = valid_configs[bore_config] - max_valid_configs = { 'line' => 10, 'l-config' => 6 } - unless valid_num_bores.include? num_bore_holes - # Any configuration with a max_valid_configs value can accept any number of bores up to the maximum - if max_valid_configs.keys.include? bore_config - max_num_bore_holes = max_valid_configs[bore_config] - num_bore_holes = max_num_bore_holes - else - # Search for first valid bore field - new_bore_config = nil - valid_configs.keys.each do |bore_config| - next unless valid_configs[bore_config].include? num_bore_holes + loop_flow = geothermal_loop.loop_flow + if loop_flow.nil? + loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 + end - new_bore_config = bore_config - break - end - if not new_bore_config.nil? - bore_config = new_bore_config - else - fail 'Could not construct a valid GSHP bore field configuration.' + num_bore_holes = geothermal_loop.num_bore_holes + bore_depth = geothermal_loop.bore_length + + min_bore_depth = UnitConversions.convert(24.0, 'm', 'ft').round # based on g-function library + # In NY the following is the depth that requires a mining permit, which has been a barrier for Dandelion Energy with installing GSHPs. + # Sounds like people are pushing ever deeper but for now we can apply this limit and add a note about where it came from. + max_bore_depth = 500 # ft + min_num_boreholes = 1 + max_num_boreholes = 10 + + if num_bore_holes.nil? || bore_depth.nil? + # Autosize ground loop heat exchanger length + hvac_cooling_ap = hvac_cooling.additional_properties + grout_conductivity = geothermal_loop.grout_conductivity + pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) + nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(mj, weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) + bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length = [bore_length_heat, bore_length_cool].max + + if num_bore_holes.nil? && bore_depth.nil? + num_bore_holes = [min_num_boreholes, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max + + # Divide length by number of boreholes for average bore depth + bore_depth = (bore_length / num_bore_holes).floor # ft + + # Adjust number of boreholes and bore depth to get within min/max constraints + for _i in 0..50 + if ((bore_depth < min_bore_depth) || (num_bore_holes > max_num_boreholes)) && (num_bore_holes > min_num_boreholes) + num_bore_holes -= 1 + bore_depth = (bore_length / num_bore_holes).floor + elsif ((bore_depth > max_bore_depth) || (num_bore_holes < min_num_boreholes)) && (num_bore_holes < max_num_boreholes) + num_bore_holes += 1 + bore_depth = (bore_length / num_bore_holes).floor + end + + if ((num_bore_holes == min_num_boreholes) && (bore_depth < min_bore_depth)) || ((num_bore_holes == max_num_boreholes) && (bore_depth > max_bore_depth)) + break # we can't do any better + end end + elsif num_bore_holes.nil? + # Calculate number of boreholes to achieve total autosized length + num_bore_holes = (bore_length / bore_depth).floor + num_bore_holes = [num_bore_holes, max_num_boreholes].min + num_bore_holes = [num_bore_holes, min_num_boreholes].max + elsif bore_depth.nil? + # Calculate bore depth to achieve total autosized length + bore_depth = (bore_length / num_bore_holes).floor # ft end end - spacing_to_depth_ratio = bore_spacing / bore_depth + if bore_depth < min_bore_depth + bore_depth = min_bore_depth + runner.registerWarning("Reached a minimum of #{min_num_boreholes} borehole; setting bore depth to the minimum (#{min_bore_depth} ft).") + end + + if bore_depth > max_bore_depth + bore_depth = max_bore_depth + runner.registerWarning("Reached a maximum of #{max_num_boreholes} boreholes; setting bore depth to the maximum (#{max_bore_depth} ft).") + end + + bore_config = geothermal_loop.bore_config + if bore_config.nil? + bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + end + + valid_configs = valid_bore_configs + g_functions_filename = valid_configs[bore_config] + g_functions_json = get_g_functions_json(g_functions_filename) + valid_num_bores = get_valid_num_bores(g_functions_json) - lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) + unless valid_num_bores.include? num_bore_holes + fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." + end + + lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) hvac_sizing_values.GSHP_Loop_flow = loop_flow hvac_sizing_values.GSHP_Bore_Depth = bore_depth hvac_sizing_values.GSHP_Bore_Holes = num_bore_holes hvac_sizing_values.GSHP_G_Functions = [lntts, gfnc_coeff] + hvac_sizing_values.GSHP_Bore_Config = bore_config + end + + def self.valid_bore_configs + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationC => 'C_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' } + return valid_configs + end + + def self.get_g_functions_json(g_functions_filename) + require 'json' + + g_functions_filepath = File.join(File.dirname(__FILE__), 'data/g_functions', g_functions_filename) + g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + return g_functions_json + end + + def self.get_valid_num_bores(g_functions_json) + valid_num_bores = [] + g_functions_json.each do |_key_1, values_1| + if values_1.keys.include?(:bore_locations) + valid_num_bores << values_1[:bore_locations].size + else + values_1.each do |_key_2, values_2| + if values_2.keys.include?(:bore_locations) + valid_num_bores << values_2[:bore_locations].size + end + end + end + end + + return valid_num_bores end def self.apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_cooling) @@ -2038,27 +2093,61 @@ def self.apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_coo end end - def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system, hvac_heating_speed) - ''' - Adjust heat pump sizing - ''' - - hvac_heating_ap = hvac_heating.additional_properties - - capacity_ratio = hvac_heating_ap.heat_capacity_ratios[hvac_heating_speed] + def self.calculate_heat_pump_adj_factor_at_outdoor_temperature(mj, hvac_heating, heating_db, hvac_heating_speed) + # FIXME: Check why this value doesn't exactly match the values in in.xml + if hvac_heating.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + idb_adj = adjust_indoor_condition_var_speed(heating_db, mj.heat_setpoint, :htg) + odb_adj = adjust_outdoor_condition_var_speed(hvac_heating.heating_detailed_performance_data, heating_db, hvac_heating, :htg) + return odb_adj * idb_adj + else + coefficients = hvac_heating.additional_properties.heat_cap_ft_spec[hvac_heating_speed] + return MathTools.biquadratic(mj.heat_setpoint, heating_db, coefficients) + end + end - if hvac_heating.is_a? HPXML::HeatPump + def self.calculate_heat_pump_backup_load(mj, hvac_heating, heating_load, hp_nominal_heating_capacity, hvac_heating_speed) + if @hpxml_bldg.header.heat_pump_backup_sizing_methodology == HPXML::HeatPumpBackupSizingEmergency + # Size backup to meet full design load in case heat pump fails + return heating_load + elsif @hpxml_bldg.header.heat_pump_backup_sizing_methodology == HPXML::HeatPumpBackupSizingSupplemental if not hvac_heating.backup_heating_switchover_temp.nil? min_compressor_temp = hvac_heating.backup_heating_switchover_temp elsif not hvac_heating.compressor_lockout_temp.nil? min_compressor_temp = hvac_heating.compressor_lockout_temp end + + if min_compressor_temp > @hpxml_bldg.header.manualj_heating_design_temp + # Heat pump not running at design temperature, size backup to meet full design load + return heating_load + end + + # Heat pump operating at design temperature, size backup to meet remaining design load + adj_factor = calculate_heat_pump_adj_factor_at_outdoor_temperature(mj, hvac_heating, @hpxml_bldg.header.manualj_heating_design_temp, hvac_heating_speed) + hp_output_at_outdoor_temperature = hp_nominal_heating_capacity * adj_factor + return [heating_load - hp_output_at_outdoor_temperature, 0.0].max + else + fail "Unexpected HP backup methodology: #{@hpxml_bldg.header.heat_pump_backup_sizing_methodology}" + end + end + + def self.process_heat_pump_adjustment(mj, runner, hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system, hvac_heating_speed) + ''' + Adjust heat pump sizing + ''' + + capacity_ratio = hvac_heating.additional_properties.heat_capacity_ratios[hvac_heating_speed] + + if not hvac_heating.backup_heating_switchover_temp.nil? + min_compressor_temp = hvac_heating.backup_heating_switchover_temp + elsif not hvac_heating.compressor_lockout_temp.nil? + min_compressor_temp = hvac_heating.compressor_lockout_temp end + if (not min_compressor_temp.nil?) && (min_compressor_temp > @hpxml_bldg.header.manualj_heating_design_temp) # Calculate the heating load at the switchover temperature to limit unutilized capacity temp_heat_design_temp = @hpxml_bldg.header.manualj_heating_design_temp @hpxml_bldg.header.manualj_heating_design_temp = min_compressor_temp - _alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(weather, @hpxml_bldg, @cfa, [hvac_system]) + _alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(runner, weather, @hpxml_bldg, @cfa, [hvac_system]) heating_load = alternate_all_hvac_sizing_values[hvac_system].Heat_Load heating_db = min_compressor_temp @hpxml_bldg.header.manualj_heating_design_temp = temp_heat_design_temp @@ -2067,14 +2156,7 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, heating_db = @hpxml_bldg.header.manualj_heating_design_temp end - if hvac_heating.compressor_type == HPXML::HVACCompressorTypeVariableSpeed - idb_adj = adjust_indoor_condition_var_speed(heating_db, @heat_setpoint, :htg) - odb_adj = adjust_outdoor_condition_var_speed(hvac_heating.heating_detailed_performance_data, heating_db, hvac_heating, :htg) - adj_factor = odb_adj * idb_adj - else - coefficients = hvac_heating_ap.heat_cap_ft_spec[hvac_heating_speed] - adj_factor = MathTools.biquadratic(@heat_setpoint, heating_db, coefficients) - end + adj_factor = calculate_heat_pump_adj_factor_at_outdoor_temperature(mj, hvac_heating, heating_db, hvac_heating_speed) heat_cap_rated = (heating_load / adj_factor) / capacity_ratio if total_cap_curve_value.nil? # Heat pump has no cooling @@ -2164,9 +2246,9 @@ def self.get_ventilation_rates() return [tot_unbal_cfm, oa_cfm_preheat, oa_cfm_precool, recirc_cfm_shared, tot_bal_cfm_sens, tot_bal_cfm_lat] end - def self.calc_airflow_rate_manual_s(sens_load_or_capacity, deltaT, rated_capacity_for_cfm_per_ton_limits = nil) + def self.calc_airflow_rate_manual_s(mj, sens_load_or_capacity, deltaT, rated_capacity_for_cfm_per_ton_limits = nil) # Airflow sizing following Manual S based on design calculation - airflow_rate = sens_load_or_capacity / (1.1 * @acf * deltaT) + airflow_rate = sens_load_or_capacity / (1.1 * mj.acf * deltaT) if not rated_capacity_for_cfm_per_ton_limits.nil? rated_capacity_tons = UnitConversions.convert(rated_capacity_for_cfm_per_ton_limits, 'Btu/hr', 'ton') @@ -2219,24 +2301,24 @@ def self.calc_gshp_clg_curve_value(cool_cap_curve_spec, cool_sh_curve_spec, wb_t return total_cap_curve_value, sensible_cap_curve_value end - def self.calc_delivery_effectiveness_heating(dse_Qs, dse_Qr, system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r, air_dens = @inside_air_dens, air_cp = Gas.Air.cp) + def self.calc_delivery_effectiveness_heating(mj, dse_Qs, dse_Qr, system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r) ''' Calculate the Delivery Effectiveness for heating (using the method of ASHRAE Standard 152). ''' - dse_Bs, dse_Br, dse_As, dse_Ar, dse_dTe, dse_dT_s, dse_dT_r = _calc_dse_init(system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Qs, dse_Qr, supply_r, return_r, air_dens, air_cp) + dse_Bs, dse_Br, dse_As, dse_Ar, dse_dTe, dse_dT_s, dse_dT_r = _calc_dse_init(system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Qs, dse_Qr, supply_r, return_r, mj.inside_air_dens, Gas.Air.cp) dse_DE = _calc_dse_DE_heating(dse_As, dse_Bs, dse_Ar, dse_Br, dse_dT_s, dse_dT_r, dse_dTe) dse_DEcorr = _calc_dse_DEcorr(dse_DE, dse_Fregain_s, dse_Fregain_r, dse_Br, dse_Ar, dse_dT_r, dse_dTe) return dse_DEcorr end - def self.calc_delivery_effectiveness_cooling(dse_Qs, dse_Qr, leaving_air_temp, system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Fregain_s, dse_Fregain_r, load_total, dse_h_r, supply_r, return_r, air_dens = @inside_air_dens, air_cp = Gas.Air.cp, h_in = @enthalpy_indoor_cooling) + def self.calc_delivery_effectiveness_cooling(mj, dse_Qs, dse_Qr, leaving_air_temp, system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Fregain_s, dse_Fregain_r, load_total, dse_h_r, supply_r, return_r) ''' Calculate the Delivery Effectiveness for cooling (using the method of ASHRAE Standard 152). ''' - dse_Bs, dse_Br, dse_As, dse_Ar, dse_dTe, _dse_dT_s, dse_dT_r = _calc_dse_init(system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Qs, dse_Qr, supply_r, return_r, air_dens, air_cp) + dse_Bs, dse_Br, dse_As, dse_Ar, dse_dTe, _dse_dT_s, dse_dT_r = _calc_dse_init(system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Qs, dse_Qr, supply_r, return_r, mj.inside_air_dens, Gas.Air.cp) dse_dTe *= -1.0 - dse_DE, cooling_load_ducts_sens = _calc_dse_DE_cooling(dse_As, system_cfm, load_total, dse_Ar, dse_h_r, dse_Br, dse_dT_r, dse_Bs, leaving_air_temp, dse_Tamb_s, load_sens, air_dens, air_cp, h_in) + dse_DE, cooling_load_ducts_sens = _calc_dse_DE_cooling(dse_As, system_cfm, load_total, dse_Ar, dse_h_r, dse_Br, dse_dT_r, dse_Bs, leaving_air_temp, dse_Tamb_s, load_sens, mj.inside_air_dens, Gas.Air.cp, mj.cool_indoor_enthalpy) dse_DEcorr = _calc_dse_DEcorr(dse_DE, dse_Fregain_s, dse_Fregain_r, dse_Br, dse_Ar, dse_dT_r, dse_dTe) return dse_DEcorr, dse_dTe, cooling_load_ducts_sens @@ -2292,9 +2374,9 @@ def self._calc_dse_DEcorr(dse_DE, dse_Fregain_s, dse_Fregain_r, dse_Br, dse_Ar, return dse_DEcorr end - def self.calculate_sensible_latent_split(return_leakage_cfm, cool_load_tot, cool_load_lat) + def self.calculate_sensible_latent_split(mj, return_leakage_cfm, cool_load_tot, cool_load_lat) # Calculate the latent duct leakage load (Manual J accounts only for return duct leakage) - dse_cool_load_latent = [0.0, 0.68 * @acf * return_leakage_cfm * (@cool_design_grains - @cool_indoor_grains)].max + dse_cool_load_latent = [0.0, 0.68 * mj.acf * return_leakage_cfm * (mj.cool_design_grains - mj.cool_indoor_grains)].max # Calculate final latent and load cool_load_lat += dse_cool_load_latent @@ -2472,7 +2554,7 @@ def self.get_space_ua_values(location, weather) return space_UAs end - def self.calculate_space_design_temps(location, weather, conditioned_design_temp, design_db, ground_db, is_cooling_for_unvented_attic_roof_insulation = false) + def self.calculate_space_design_temps(mj, location, weather, conditioned_design_temp, design_db, ground_db, is_cooling_for_unvented_attic_roof_insulation = false) space_UAs = get_space_ua_values(location, weather) # Calculate space design temp from space UAs @@ -2509,8 +2591,8 @@ def self.calculate_space_design_temps(location, weather, conditioned_design_temp # when the roof is insulated min_temp_rise = 5.0 - max_cooling_temp = @cool_setpoint + max_temp_rise - min_cooling_temp = @cool_setpoint + min_temp_rise + max_cooling_temp = mj.cool_setpoint + max_temp_rise + min_cooling_temp = mj.cool_setpoint + min_temp_rise ua_conditioned = 0.0 ua_outside = 0.0 @@ -2721,12 +2803,14 @@ def self.gshp_coil_bf_ft_spec return [1.21005458, -0.00664200, 0.00000000, 0.00348246, 0.00000000, 0.00000000] end - def self.gshp_hx_pipe_rvalue(hvac_cooling_ap) + def self.gshp_hx_pipe_rvalue(hvac_cooling) + hvac_cooling_ap = hvac_cooling.additional_properties + # Thermal Resistance of Pipe - return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling_ap.pipe_cond + return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling.geothermal_loop.pipe_conductivity end - def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) + def self.gshp_hxbore_ft_per_ton(mj, weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) if hvac_cooling_ap.u_tube_spacing_type == 'b' beta_0 = 17.4427 beta_1 = -0.6052 @@ -2738,8 +2822,8 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_v beta_1 = -0.94467 end - r_value_ground = Math.log(bore_spacing / hvac_cooling_ap.bore_diameter * 12.0) / 2.0 / Math::PI / @hpxml_bldg.site.ground_conductivity - r_value_grout = 1.0 / hvac_cooling_ap.grout_conductivity / beta_0 / ((hvac_cooling_ap.bore_diameter / hvac_cooling_ap.pipe_od)**beta_1) + r_value_ground = Math.log(bore_spacing / bore_diameter * 12.0) / 2.0 / Math::PI / @hpxml_bldg.site.ground_conductivity + r_value_grout = 1.0 / grout_conductivity / beta_0 / ((bore_diameter / hvac_cooling_ap.pipe_od)**beta_1) r_value_bore = r_value_grout + pipe_r_value / 2.0 # Note: Convection resistance is negligible when calculated against Glhepro (Jeffrey D. Spitler, 2000) is_southern_hemisphere = (weather.header.Latitude < 0) @@ -2752,8 +2836,8 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_v cooling_month = 6 # July end - rtf_DesignMon_Heat = [0.25, (71.0 - weather.data.MonthlyAvgDrybulbs[heating_month]) / @htd].max - rtf_DesignMon_Cool = [0.25, (weather.data.MonthlyAvgDrybulbs[cooling_month] - 76.0) / @ctd].max + rtf_DesignMon_Heat = [0.25, (71.0 - weather.data.MonthlyAvgDrybulbs[heating_month]) / mj.htd].max + rtf_DesignMon_Cool = [0.25, (weather.data.MonthlyAvgDrybulbs[cooling_month] - 76.0) / mj.ctd].max nom_length_heat = (1.0 - 1.0 / hvac_cooling_ap.heat_rated_cops[0]) * (r_value_bore + r_value_ground * rtf_DesignMon_Heat) / (weather.data.DeepGroundAnnualTemp - (2.0 * hvac_cooling_ap.design_hw - hvac_cooling_ap.design_delta_t) / 2.0) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') nom_length_cool = (1.0 + 1.0 / hvac_cooling_ap.cool_rated_cops[0]) * (r_value_bore + r_value_ground * rtf_DesignMon_Cool) / ((2.0 * hvac_cooling_ap.design_chw + hvac_cooling_ap.design_delta_t) / 2.0 - weather.data.DeepGroundAnnualTemp) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') @@ -2761,325 +2845,88 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_v return nom_length_heat, nom_length_cool end - def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) - # Set GFNC coefficients - gfnc_coeff = nil - if bore_config == 'single' - gfnc_coeff = 2.681, 3.024, 3.320, 3.666, 3.963, 4.306, 4.645, 4.899, 5.222, 5.405, 5.531, 5.704, 5.821, 6.082, 6.304, 6.366, 6.422, 6.477, 6.520, 6.558, 6.591, 6.619, 6.640, 6.665, 6.893, 6.694, 6.715 - elsif bore_config == 'line' - if num_bore_holes == 2 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.681, 3.043, 3.397, 3.9, 4.387, 5.005, 5.644, 6.137, 6.77, 7.131, 7.381, 7.722, 7.953, 8.462, 8.9, 9.022, 9.13, 9.238, 9.323, 9.396, 9.46, 9.515, 9.556, 9.604, 9.636, 9.652, 9.678 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.024, 3.332, 3.734, 4.143, 4.691, 5.29, 5.756, 6.383, 6.741, 6.988, 7.326, 7.557, 8.058, 8.5, 8.622, 8.731, 8.839, 8.923, 8.997, 9.061, 9.115, 9.156, 9.203, 9.236, 9.252, 9.277 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.668, 3.988, 4.416, 4.921, 5.323, 5.925, 6.27, 6.512, 6.844, 7.073, 7.574, 8.015, 8.137, 8.247, 8.354, 8.439, 8.511, 8.575, 8.629, 8.67, 8.718, 8.75, 8.765, 8.791 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.31, 4.672, 4.919, 5.406, 5.711, 5.932, 6.246, 6.465, 6.945, 7.396, 7.52, 7.636, 7.746, 7.831, 7.905, 7.969, 8.024, 8.066, 8.113, 8.146, 8.161, 8.187 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.648, 4.835, 5.232, 5.489, 5.682, 5.964, 6.166, 6.65, 7.087, 7.208, 7.32, 7.433, 7.52, 7.595, 7.661, 7.717, 7.758, 7.806, 7.839, 7.855, 7.88 - end - elsif num_bore_holes == 3 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.682, 3.05, 3.425, 3.992, 4.575, 5.366, 6.24, 6.939, 7.86, 8.39, 8.759, 9.263, 9.605, 10.358, 11.006, 11.185, 11.345, 11.503, 11.628, 11.736, 11.831, 11.911, 11.971, 12.041, 12.089, 12.112, 12.151 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.336, 3.758, 4.21, 4.855, 5.616, 6.243, 7.124, 7.639, 7.999, 8.493, 8.833, 9.568, 10.22, 10.399, 10.56, 10.718, 10.841, 10.949, 11.043, 11.122, 11.182, 11.252, 11.299, 11.322, 11.36 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.67, 3.997, 4.454, 5.029, 5.517, 6.298, 6.768, 7.106, 7.578, 7.907, 8.629, 9.274, 9.452, 9.612, 9.769, 9.893, 9.999, 10.092, 10.171, 10.231, 10.3, 10.347, 10.37, 10.407 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.681, 4.942, 5.484, 5.844, 6.116, 6.518, 6.807, 7.453, 8.091, 8.269, 8.435, 8.595, 8.719, 8.826, 8.919, 8.999, 9.06, 9.128, 9.175, 9.198, 9.235 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.836, 5.25, 5.53, 5.746, 6.076, 6.321, 6.924, 7.509, 7.678, 7.836, 7.997, 8.121, 8.229, 8.325, 8.405, 8.465, 8.535, 8.582, 8.605, 8.642 - end - elsif num_bore_holes == 4 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.682, 3.054, 3.438, 4.039, 4.676, 5.575, 6.619, 7.487, 8.662, 9.35, 9.832, 10.492, 10.943, 11.935, 12.787, 13.022, 13.232, 13.44, 13.604, 13.745, 13.869, 13.975, 14.054, 14.145, 14.208, 14.238, 14.289 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.339, 3.77, 4.244, 4.941, 5.798, 6.539, 7.622, 8.273, 8.734, 9.373, 9.814, 10.777, 11.63, 11.864, 12.074, 12.282, 12.443, 12.584, 12.706, 12.81, 12.888, 12.979, 13.041, 13.071, 13.12 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.001, 4.474, 5.086, 5.62, 6.514, 7.075, 7.487, 8.075, 8.49, 9.418, 10.253, 10.484, 10.692, 10.897, 11.057, 11.195, 11.316, 11.419, 11.497, 11.587, 11.647, 11.677, 11.726 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.686, 4.953, 5.523, 5.913, 6.214, 6.67, 7.005, 7.78, 8.574, 8.798, 9.011, 9.215, 9.373, 9.512, 9.632, 9.735, 9.814, 9.903, 9.963, 9.993, 10.041 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.837, 5.259, 5.55, 5.779, 6.133, 6.402, 7.084, 7.777, 7.983, 8.178, 8.379, 8.536, 8.672, 8.795, 8.898, 8.975, 9.064, 9.125, 9.155, 9.203 - end - elsif num_bore_holes == 5 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.056, 3.446, 4.067, 4.737, 5.709, 6.877, 7.879, 9.272, 10.103, 10.69, 11.499, 12.053, 13.278, 14.329, 14.618, 14.878, 15.134, 15.336, 15.51, 15.663, 15.792, 15.89, 16.002, 16.079, 16.117, 16.179 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.34, 3.777, 4.265, 4.993, 5.913, 6.735, 7.974, 8.737, 9.285, 10.054, 10.591, 11.768, 12.815, 13.103, 13.361, 13.616, 13.814, 13.987, 14.137, 14.264, 14.36, 14.471, 14.548, 14.584, 14.645 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.004, 4.485, 5.12, 5.683, 6.653, 7.279, 7.747, 8.427, 8.914, 10.024, 11.035, 11.316, 11.571, 11.82, 12.016, 12.185, 12.332, 12.458, 12.553, 12.663, 12.737, 12.773, 12.833 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.688, 4.96, 5.547, 5.955, 6.274, 6.764, 7.132, 8.002, 8.921, 9.186, 9.439, 9.683, 9.873, 10.041, 10.186, 10.311, 10.406, 10.514, 10.588, 10.624, 10.683 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.837, 5.264, 5.562, 5.798, 6.168, 6.452, 7.186, 7.956, 8.191, 8.415, 8.649, 8.834, 8.995, 9.141, 9.265, 9.357, 9.465, 9.539, 9.575, 9.634 - end - elsif num_bore_holes == 6 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.057, 3.452, 4.086, 4.779, 5.8, 7.06, 8.162, 9.74, 10.701, 11.385, 12.334, 12.987, 14.439, 15.684, 16.027, 16.335, 16.638, 16.877, 17.083, 17.264, 17.417, 17.532, 17.665, 17.756, 17.801, 17.874 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.341, 3.782, 4.278, 5.029, 5.992, 6.87, 8.226, 9.081, 9.704, 10.59, 11.212, 12.596, 13.828, 14.168, 14.473, 14.773, 15.007, 15.211, 15.388, 15.538, 15.652, 15.783, 15.872, 15.916, 15.987 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.005, 4.493, 5.143, 5.726, 6.747, 7.42, 7.93, 8.681, 9.227, 10.5, 11.672, 12.001, 12.299, 12.591, 12.821, 13.019, 13.192, 13.34, 13.452, 13.581, 13.668, 13.71, 13.78 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.69, 4.964, 5.563, 5.983, 6.314, 6.828, 7.218, 8.159, 9.179, 9.479, 9.766, 10.045, 10.265, 10.458, 10.627, 10.773, 10.883, 11.01, 11.096, 11.138, 11.207 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.268, 5.57, 5.811, 6.191, 6.485, 7.256, 8.082, 8.339, 8.586, 8.848, 9.055, 9.238, 9.404, 9.546, 9.653, 9.778, 9.864, 9.907, 9.976 - end - elsif num_bore_holes == 7 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.058, 3.456, 4.1, 4.809, 5.867, 7.195, 8.38, 10.114, 11.189, 11.961, 13.04, 13.786, 15.456, 16.89, 17.286, 17.64, 17.989, 18.264, 18.501, 18.709, 18.886, 19.019, 19.172, 19.276, 19.328, 19.412 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.785, 4.288, 5.054, 6.05, 6.969, 8.418, 9.349, 10.036, 11.023, 11.724, 13.296, 14.706, 15.096, 15.446, 15.791, 16.059, 16.293, 16.497, 16.668, 16.799, 16.949, 17.052, 17.102, 17.183 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.007, 4.499, 5.159, 5.756, 6.816, 7.524, 8.066, 8.874, 9.469, 10.881, 12.2, 12.573, 12.912, 13.245, 13.508, 13.734, 13.932, 14.1, 14.228, 14.376, 14.475, 14.524, 14.604 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.691, 4.967, 5.574, 6.003, 6.343, 6.874, 7.28, 8.276, 9.377, 9.706, 10.022, 10.333, 10.578, 10.795, 10.985, 11.15, 11.276, 11.419, 11.518, 11.565, 11.644 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.576, 5.821, 6.208, 6.509, 7.307, 8.175, 8.449, 8.715, 8.998, 9.224, 9.426, 9.61, 9.768, 9.887, 10.028, 10.126, 10.174, 10.252 - end - elsif num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.059, 3.459, 4.11, 4.832, 5.918, 7.3, 8.55, 10.416, 11.59, 12.442, 13.641, 14.475, 16.351, 17.97, 18.417, 18.817, 19.211, 19.522, 19.789, 20.024, 20.223, 20.373, 20.546, 20.664, 20.721, 20.816 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.788, 4.295, 5.073, 6.093, 7.045, 8.567, 9.56, 10.301, 11.376, 12.147, 13.892, 15.472, 15.911, 16.304, 16.692, 16.993, 17.257, 17.486, 17.679, 17.826, 17.995, 18.111, 18.167, 18.259 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.008, 4.503, 5.171, 5.779, 6.868, 7.603, 8.17, 9.024, 9.659, 11.187, 12.64, 13.055, 13.432, 13.804, 14.098, 14.351, 14.573, 14.762, 14.905, 15.07, 15.182, 15.237, 15.326 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.692, 4.97, 5.583, 6.018, 6.364, 6.909, 7.327, 8.366, 9.531, 9.883, 10.225, 10.562, 10.83, 11.069, 11.28, 11.463, 11.602, 11.762, 11.872, 11.925, 12.013 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.272, 5.58, 5.828, 6.22, 6.527, 7.345, 8.246, 8.533, 8.814, 9.114, 9.356, 9.573, 9.772, 9.944, 10.076, 10.231, 10.34, 10.393, 10.481 - end - elsif num_bore_holes == 9 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.06, 3.461, 4.118, 4.849, 5.958, 7.383, 8.687, 10.665, 11.927, 12.851, 14.159, 15.075, 17.149, 18.947, 19.443, 19.888, 20.326, 20.672, 20.969, 21.23, 21.452, 21.618, 21.81, 21.941, 22.005, 22.11 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.79, 4.301, 5.088, 6.127, 7.105, 8.686, 9.732, 10.519, 11.671, 12.504, 14.408, 16.149, 16.633, 17.069, 17.499, 17.833, 18.125, 18.379, 18.593, 18.756, 18.943, 19.071, 19.133, 19.235 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.008, 4.506, 5.181, 5.797, 6.909, 7.665, 8.253, 9.144, 9.813, 11.441, 13.015, 13.468, 13.881, 14.29, 14.613, 14.892, 15.136, 15.345, 15.503, 15.686, 15.809, 15.87, 15.969 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.693, 4.972, 5.589, 6.03, 6.381, 6.936, 7.364, 8.436, 9.655, 10.027, 10.391, 10.751, 11.04, 11.298, 11.527, 11.726, 11.879, 12.054, 12.175, 12.234, 12.331 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.273, 5.584, 5.833, 6.23, 6.541, 7.375, 8.302, 8.6, 8.892, 9.208, 9.463, 9.692, 9.905, 10.089, 10.231, 10.4, 10.518, 10.576, 10.673 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.06, 3.463, 4.125, 4.863, 5.99, 7.45, 8.799, 10.872, 12.211, 13.197, 14.605, 15.598, 17.863, 19.834, 20.379, 20.867, 21.348, 21.728, 22.055, 22.342, 22.585, 22.767, 22.978, 23.122, 23.192, 23.307 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.343, 3.792, 4.306, 5.1, 6.154, 7.153, 8.784, 9.873, 10.699, 11.918, 12.805, 14.857, 16.749, 17.278, 17.755, 18.225, 18.591, 18.91, 19.189, 19.423, 19.601, 19.807, 19.947, 20.015, 20.126 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.009, 4.509, 5.189, 5.812, 6.942, 7.716, 8.32, 9.242, 9.939, 11.654, 13.336, 13.824, 14.271, 14.714, 15.065, 15.368, 15.635, 15.863, 16.036, 16.235, 16.37, 16.435, 16.544 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.694, 4.973, 5.595, 6.039, 6.395, 6.958, 7.394, 8.493, 9.757, 10.146, 10.528, 10.909, 11.215, 11.491, 11.736, 11.951, 12.116, 12.306, 12.437, 12.501, 12.607 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.275, 5.587, 5.837, 6.238, 6.552, 7.399, 8.347, 8.654, 8.956, 9.283, 9.549, 9.79, 10.014, 10.209, 10.36, 10.541, 10.669, 10.732, 10.837 - end - end - elsif bore_config == 'l-config' - if num_bore_holes == 3 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.682, 3.052, 3.435, 4.036, 4.668, 5.519, 6.435, 7.155, 8.091, 8.626, 8.997, 9.504, 9.847, 10.605, 11.256, 11.434, 11.596, 11.755, 11.88, 11.988, 12.083, 12.163, 12.224, 12.294, 12.342, 12.365, 12.405 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.337, 3.767, 4.242, 4.937, 5.754, 6.419, 7.33, 7.856, 8.221, 8.721, 9.063, 9.818, 10.463, 10.641, 10.801, 10.959, 11.084, 11.191, 11.285, 11.365, 11.425, 11.495, 11.542, 11.565, 11.603 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.67, 3.999, 4.472, 5.089, 5.615, 6.449, 6.942, 7.292, 7.777, 8.111, 8.847, 9.497, 9.674, 9.836, 9.993, 10.117, 10.224, 10.317, 10.397, 10.457, 10.525, 10.573, 10.595, 10.633 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.684, 4.95, 5.525, 5.915, 6.209, 6.64, 6.946, 7.645, 8.289, 8.466, 8.63, 8.787, 8.912, 9.018, 9.112, 9.192, 9.251, 9.32, 9.367, 9.39, 9.427 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.836, 5.255, 5.547, 5.777, 6.132, 6.397, 7.069, 7.673, 7.848, 8.005, 8.161, 8.29, 8.397, 8.492, 8.571, 8.631, 8.7, 8.748, 8.771, 8.808 - end - elsif num_bore_holes == 4 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.055, 3.446, 4.075, 4.759, 5.729, 6.841, 7.753, 8.96, 9.659, 10.147, 10.813, 11.266, 12.265, 13.122, 13.356, 13.569, 13.778, 13.942, 14.084, 14.208, 14.314, 14.393, 14.485, 14.548, 14.579, 14.63 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.339, 3.777, 4.27, 5.015, 5.945, 6.739, 7.875, 8.547, 9.018, 9.668, 10.116, 11.107, 11.953, 12.186, 12.395, 12.603, 12.766, 12.906, 13.029, 13.133, 13.212, 13.303, 13.365, 13.395, 13.445 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.003, 4.488, 5.137, 5.713, 6.678, 7.274, 7.707, 8.319, 8.747, 9.698, 10.543, 10.774, 10.984, 11.19, 11.351, 11.49, 11.612, 11.715, 11.793, 11.882, 11.944, 11.974, 12.022 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.688, 4.959, 5.558, 5.976, 6.302, 6.794, 7.155, 8.008, 8.819, 9.044, 9.255, 9.456, 9.618, 9.755, 9.877, 9.98, 10.057, 10.146, 10.207, 10.236, 10.285 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.837, 5.263, 5.563, 5.804, 6.183, 6.473, 7.243, 7.969, 8.185, 8.382, 8.58, 8.743, 8.88, 9.001, 9.104, 9.181, 9.27, 9.332, 9.361, 9.409 - end - elsif num_bore_holes == 5 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.057, 3.453, 4.097, 4.806, 5.842, 7.083, 8.14, 9.579, 10.427, 11.023, 11.841, 12.399, 13.633, 14.691, 14.98, 15.242, 15.499, 15.701, 15.877, 16.03, 16.159, 16.257, 16.37, 16.448, 16.485, 16.549 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.34, 3.783, 4.285, 5.054, 6.038, 6.915, 8.219, 9.012, 9.576, 10.362, 10.907, 12.121, 13.161, 13.448, 13.705, 13.96, 14.16, 14.332, 14.483, 14.61, 14.707, 14.819, 14.895, 14.932, 14.993 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.005, 4.497, 5.162, 5.76, 6.796, 7.461, 7.954, 8.665, 9.17, 10.31, 11.338, 11.62, 11.877, 12.127, 12.324, 12.494, 12.643, 12.77, 12.865, 12.974, 13.049, 13.085, 13.145 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.69, 4.964, 5.575, 6.006, 6.347, 6.871, 7.263, 8.219, 9.164, 9.432, 9.684, 9.926, 10.121, 10.287, 10.434, 10.56, 10.654, 10.762, 10.836, 10.872, 10.93 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.837, 5.267, 5.573, 5.819, 6.208, 6.51, 7.33, 8.136, 8.384, 8.613, 8.844, 9.037, 9.2, 9.345, 9.468, 9.562, 9.67, 9.744, 9.78, 9.839 - end - elsif num_bore_holes == 6 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.058, 3.457, 4.111, 4.837, 5.916, 7.247, 8.41, 10.042, 11.024, 11.72, 12.681, 13.339, 14.799, 16.054, 16.396, 16.706, 17.011, 17.25, 17.458, 17.639, 17.792, 17.907, 18.041, 18.133, 18.177, 18.253 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.341, 3.786, 4.296, 5.08, 6.099, 7.031, 8.456, 9.346, 9.988, 10.894, 11.528, 12.951, 14.177, 14.516, 14.819, 15.12, 15.357, 15.56, 15.737, 15.888, 16.002, 16.134, 16.223, 16.267, 16.338 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.007, 4.503, 5.178, 5.791, 6.872, 7.583, 8.119, 8.905, 9.472, 10.774, 11.969, 12.3, 12.6, 12.895, 13.126, 13.326, 13.501, 13.649, 13.761, 13.89, 13.977, 14.02, 14.09 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.691, 4.968, 5.586, 6.026, 6.375, 6.919, 7.331, 8.357, 9.407, 9.71, 9.997, 10.275, 10.501, 10.694, 10.865, 11.011, 11.121, 11.247, 11.334, 11.376, 11.445 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.579, 5.828, 6.225, 6.535, 7.384, 8.244, 8.515, 8.768, 9.026, 9.244, 9.428, 9.595, 9.737, 9.845, 9.97, 10.057, 10.099, 10.168 - end - end - elsif bore_config == 'l2-config' - if num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.078, 3.547, 4.438, 5.521, 7.194, 9.237, 10.973, 13.311, 14.677, 15.634, 16.942, 17.831, 19.791, 21.462, 21.917, 22.329, 22.734, 23.052, 23.328, 23.568, 23.772, 23.925, 24.102, 24.224, 24.283, 24.384 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.354, 3.866, 4.534, 5.682, 7.271, 8.709, 10.845, 12.134, 13.046, 14.308, 15.177, 17.106, 18.741, 19.19, 19.592, 19.989, 20.303, 20.57, 20.805, 21.004, 21.155, 21.328, 21.446, 21.504, 21.598 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.034, 4.639, 5.587, 6.514, 8.195, 9.283, 10.09, 11.244, 12.058, 13.88, 15.491, 15.931, 16.328, 16.716, 17.02, 17.282, 17.511, 17.706, 17.852, 18.019, 18.134, 18.19, 18.281 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.72, 5.041, 5.874, 6.525, 7.06, 7.904, 8.541, 10.093, 11.598, 12.018, 12.41, 12.784, 13.084, 13.338, 13.562, 13.753, 13.895, 14.058, 14.169, 14.223, 14.312 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.325, 5.717, 6.058, 6.635, 7.104, 8.419, 9.714, 10.108, 10.471, 10.834, 11.135, 11.387, 11.61, 11.798, 11.94, 12.103, 12.215, 12.268, 12.356 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.08, 3.556, 4.475, 5.611, 7.422, 9.726, 11.745, 14.538, 16.199, 17.369, 18.975, 20.071, 22.489, 24.551, 25.111, 25.619, 26.118, 26.509, 26.848, 27.143, 27.393, 27.582, 27.8, 27.949, 28.022, 28.146 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.356, 3.874, 4.559, 5.758, 7.466, 9.07, 11.535, 13.06, 14.153, 15.679, 16.739, 19.101, 21.106, 21.657, 22.15, 22.637, 23.021, 23.348, 23.635, 23.879, 24.063, 24.275, 24.42, 24.49, 24.605 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.037, 4.653, 5.634, 6.61, 8.44, 9.664, 10.589, 11.936, 12.899, 15.086, 17.041, 17.575, 18.058, 18.53, 18.9, 19.218, 19.496, 19.733, 19.91, 20.113, 20.252, 20.32, 20.431 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.723, 5.048, 5.904, 6.584, 7.151, 8.062, 8.764, 10.521, 12.281, 12.779, 13.246, 13.694, 14.054, 14.36, 14.629, 14.859, 15.03, 15.226, 15.36, 15.425, 15.531 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.331, 5.731, 6.083, 6.683, 7.178, 8.6, 10.054, 10.508, 10.929, 11.356, 11.711, 12.009, 12.275, 12.5, 12.671, 12.866, 13, 13.064, 13.17 - end - end - elsif bore_config == 'u-config' - if num_bore_holes == 5 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.057, 3.46, 4.134, 4.902, 6.038, 7.383, 8.503, 9.995, 10.861, 11.467, 12.294, 12.857, 14.098, 15.16, 15.449, 15.712, 15.97, 16.173, 16.349, 16.503, 16.633, 16.731, 16.844, 16.922, 16.96, 17.024 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.341, 3.789, 4.31, 5.136, 6.219, 7.172, 8.56, 9.387, 9.97, 10.774, 11.328, 12.556, 13.601, 13.889, 14.147, 14.403, 14.604, 14.777, 14.927, 15.056, 15.153, 15.265, 15.341, 15.378, 15.439 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.007, 4.51, 5.213, 5.864, 6.998, 7.717, 8.244, 8.993, 9.518, 10.69, 11.73, 12.015, 12.273, 12.525, 12.723, 12.893, 13.043, 13.17, 13.265, 13.374, 13.449, 13.486, 13.546 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.692, 4.969, 5.607, 6.072, 6.444, 7.018, 7.446, 8.474, 9.462, 9.737, 9.995, 10.241, 10.438, 10.606, 10.754, 10.88, 10.975, 11.083, 11.157, 11.193, 11.252 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.585, 5.843, 6.26, 6.588, 7.486, 8.353, 8.614, 8.854, 9.095, 9.294, 9.46, 9.608, 9.733, 9.828, 9.936, 10.011, 10.047, 10.106 - end - elsif num_bore_holes == 7 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.059, 3.467, 4.164, 4.994, 6.319, 8.011, 9.482, 11.494, 12.679, 13.511, 14.651, 15.427, 17.139, 18.601, 18.999, 19.359, 19.714, 19.992, 20.233, 20.443, 20.621, 20.755, 20.91, 21.017, 21.069, 21.156 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.795, 4.329, 5.214, 6.465, 7.635, 9.435, 10.54, 11.327, 12.421, 13.178, 14.861, 16.292, 16.685, 17.038, 17.386, 17.661, 17.896, 18.101, 18.276, 18.408, 18.56, 18.663, 18.714, 18.797 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.009, 4.519, 5.253, 5.965, 7.304, 8.204, 8.882, 9.866, 10.566, 12.145, 13.555, 13.941, 14.29, 14.631, 14.899, 15.129, 15.331, 15.502, 15.631, 15.778, 15.879, 15.928, 16.009 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.694, 4.975, 5.629, 6.127, 6.54, 7.207, 7.723, 9.019, 10.314, 10.68, 11.023, 11.352, 11.617, 11.842, 12.04, 12.209, 12.335, 12.48, 12.579, 12.627, 12.705 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.275, 5.595, 5.861, 6.304, 6.665, 7.709, 8.785, 9.121, 9.434, 9.749, 10.013, 10.233, 10.43, 10.597, 10.723, 10.868, 10.967, 11.015, 11.094 - end - elsif num_bore_holes == 9 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.061, 3.47, 4.178, 5.039, 6.472, 8.405, 10.147, 12.609, 14.086, 15.131, 16.568, 17.55, 19.72, 21.571, 22.073, 22.529, 22.976, 23.327, 23.632, 23.896, 24.121, 24.29, 24.485, 24.619, 24.684, 24.795 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.343, 3.798, 4.338, 5.248, 6.588, 7.902, 10.018, 11.355, 12.321, 13.679, 14.625, 16.74, 18.541, 19.036, 19.478, 19.916, 20.261, 20.555, 20.812, 21.031, 21.197, 21.387, 21.517, 21.58, 21.683 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.01, 4.524, 5.27, 6.01, 7.467, 8.489, 9.281, 10.452, 11.299, 13.241, 14.995, 15.476, 15.912, 16.337, 16.67, 16.957, 17.208, 17.421, 17.581, 17.764, 17.889, 17.95, 18.05 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.695, 4.977, 5.639, 6.15, 6.583, 7.298, 7.869, 9.356, 10.902, 11.347, 11.766, 12.169, 12.495, 12.772, 13.017, 13.225, 13.381, 13.559, 13.681, 13.74, 13.837 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.277, 5.6, 5.87, 6.322, 6.698, 7.823, 9.044, 9.438, 9.809, 10.188, 10.506, 10.774, 11.015, 11.219, 11.374, 11.552, 11.674, 11.733, 11.83 - end - end - elsif bore_config == 'open-rectangle' - if num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.066, 3.497, 4.275, 5.229, 6.767, 8.724, 10.417, 12.723, 14.079, 15.03, 16.332, 17.217, 19.17, 20.835, 21.288, 21.698, 22.101, 22.417, 22.692, 22.931, 23.133, 23.286, 23.462, 23.583, 23.642, 23.742 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.347, 3.821, 4.409, 5.418, 6.87, 8.226, 10.299, 11.565, 12.466, 13.716, 14.58, 16.498, 18.125, 18.572, 18.972, 19.368, 19.679, 19.946, 20.179, 20.376, 20.527, 20.699, 20.816, 20.874, 20.967 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.673, 4.018, 4.564, 5.389, 6.21, 7.763, 8.801, 9.582, 10.709, 11.51, 13.311, 14.912, 15.349, 15.744, 16.13, 16.432, 16.693, 16.921, 17.114, 17.259, 17.426, 17.54, 17.595, 17.686 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.313, 4.704, 4.999, 5.725, 6.294, 6.771, 7.543, 8.14, 9.629, 11.105, 11.52, 11.908, 12.28, 12.578, 12.831, 13.054, 13.244, 13.386, 13.548, 13.659, 13.712, 13.8 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.293, 5.641, 5.938, 6.44, 6.856, 8.062, 9.297, 9.681, 10.036, 10.394, 10.692, 10.941, 11.163, 11.35, 11.492, 11.654, 11.766, 11.819, 11.907 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.066, 3.494, 4.262, 5.213, 6.81, 8.965, 10.906, 13.643, 15.283, 16.443, 18.038, 19.126, 21.532, 23.581, 24.138, 24.642, 25.137, 25.525, 25.862, 26.155, 26.403, 26.59, 26.806, 26.955, 27.027, 27.149 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.346, 3.818, 4.399, 5.4, 6.889, 8.358, 10.713, 12.198, 13.27, 14.776, 15.824, 18.167, 20.158, 20.704, 21.194, 21.677, 22.057, 22.382, 22.666, 22.907, 23.09, 23.3, 23.443, 23.513, 23.627 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.673, 4.018, 4.559, 5.374, 6.193, 7.814, 8.951, 9.831, 11.13, 12.069, 14.219, 16.154, 16.684, 17.164, 17.631, 17.998, 18.314, 18.59, 18.824, 19, 19.201, 19.338, 19.405, 19.515 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.313, 4.703, 4.996, 5.712, 6.275, 6.755, 7.549, 8.183, 9.832, 11.54, 12.029, 12.49, 12.933, 13.29, 13.594, 13.862, 14.09, 14.26, 14.455, 14.588, 14.652, 14.758 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.292, 5.636, 5.928, 6.425, 6.841, 8.089, 9.44, 9.875, 10.284, 10.7, 11.05, 11.344, 11.608, 11.831, 12.001, 12.196, 12.329, 12.393, 12.499 - end + def self.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + actuals = { 'b' => UnitConversions.convert(bore_spacing, 'ft', 'm'), + 'h' => UnitConversions.convert(bore_depth, 'ft', 'm'), + 'rb' => UnitConversions.convert(bore_diameter / 2.0, 'in', 'm') } + actuals['b_over_h'] = actuals['b'] / actuals['h'] + + g_library = { 24 => { 'b' => 5, 'd' => 2, 'rb' => 0.075 }, + 48 => { 'b' => 5, 'd' => 2, 'rb' => 0.075 }, + 96 => { 'b' => 5, 'd' => 2, 'rb' => 0.075 }, + 192 => { 'b' => 5, 'd' => 2, 'rb' => 0.08 }, + 384 => { 'b' => 5, 'd' => 2, 'rb' => 0.0875 } } + g_library.each do |h, b_d_rb| + g_library[h]['b_over_h'] = Float(b_d_rb['b']) / h + g_library[h]['rb_over_h'] = Float(b_d_rb['rb']) / h + end + + [[24, 48], [48, 96], [96, 192], [192, 384]].each do |h1, h2| + next unless actuals['h'] >= h1 && actuals['h'] < h2 + + pt1 = g_library[h1] + pt2 = g_library[h2] + + # linear interpolation on "g" values + logtimes = [] + gs = [] + [h1, h2].each do |h| + b_d_rb = g_library[h] + b = b_d_rb['b'] + rb = b_d_rb['rb'] + b_h_rb = "#{b}._#{h}._#{rb}" + + logtime, g = get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) + logtimes << logtime + gs << g end - elsif bore_config == 'rectangle' - if num_bore_holes == 4 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.066, 3.493, 4.223, 5.025, 6.131, 7.338, 8.291, 9.533, 10.244, 10.737, 11.409, 11.865, 12.869, 13.73, 13.965, 14.178, 14.388, 14.553, 14.696, 14.821, 14.927, 15.007, 15.099, 15.162, 15.193, 15.245 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.347, 3.818, 4.383, 5.255, 6.314, 7.188, 8.392, 9.087, 9.571, 10.233, 10.686, 11.685, 12.536, 12.77, 12.98, 13.189, 13.353, 13.494, 13.617, 13.721, 13.801, 13.892, 13.955, 13.985, 14.035 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.673, 4.018, 4.555, 5.313, 5.984, 7.069, 7.717, 8.177, 8.817, 9.258, 10.229, 11.083, 11.316, 11.527, 11.733, 11.895, 12.035, 12.157, 12.261, 12.339, 12.429, 12.491, 12.521, 12.57 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.313, 4.703, 4.998, 5.69, 6.18, 6.557, 7.115, 7.514, 8.428, 9.27, 9.501, 9.715, 9.92, 10.083, 10.221, 10.343, 10.447, 10.525, 10.614, 10.675, 10.704, 10.753 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.293, 5.633, 5.913, 6.355, 6.693, 7.559, 8.343, 8.57, 8.776, 8.979, 9.147, 9.286, 9.409, 9.512, 9.59, 9.68, 9.741, 9.771, 9.819 - end - elsif num_bore_holes == 6 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.074, 3.526, 4.349, 5.308, 6.719, 8.363, 9.72, 11.52, 12.562, 13.289, 14.282, 14.956, 16.441, 17.711, 18.057, 18.371, 18.679, 18.921, 19.132, 19.315, 19.47, 19.587, 19.722, 19.815, 19.861, 19.937 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.351, 3.847, 4.472, 5.499, 6.844, 8.016, 9.702, 10.701, 11.403, 12.369, 13.032, 14.502, 15.749, 16.093, 16.4, 16.705, 16.945, 17.15, 17.329, 17.482, 17.598, 17.731, 17.822, 17.866, 17.938 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.675, 4.028, 4.605, 5.471, 6.283, 7.688, 8.567, 9.207, 10.112, 10.744, 12.149, 13.389, 13.727, 14.033, 14.332, 14.567, 14.769, 14.946, 15.096, 15.21, 15.339, 15.428, 15.471, 15.542 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.314, 4.714, 5.024, 5.798, 6.378, 6.841, 7.553, 8.079, 9.327, 10.512, 10.84, 11.145, 11.437, 11.671, 11.869, 12.044, 12.192, 12.303, 12.431, 12.518, 12.56, 12.629 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.652, 4.841, 5.313, 5.684, 5.999, 6.517, 6.927, 8.034, 9.087, 9.401, 9.688, 9.974, 10.21, 10.408, 10.583, 10.73, 10.841, 10.969, 11.056, 11.098, 11.167 - end - elsif num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.078, 3.543, 4.414, 5.459, 7.06, 9.021, 10.701, 12.991, 14.34, 15.287, 16.586, 17.471, 19.423, 21.091, 21.545, 21.956, 22.36, 22.677, 22.953, 23.192, 23.395, 23.548, 23.725, 23.847, 23.906, 24.006 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.354, 3.862, 4.517, 5.627, 7.142, 8.525, 10.589, 11.846, 12.741, 13.986, 14.847, 16.762, 18.391, 18.839, 19.24, 19.637, 19.95, 20.217, 20.45, 20.649, 20.8, 20.973, 21.091, 21.148, 21.242 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.675, 4.033, 4.63, 5.553, 6.444, 8.051, 9.096, 9.874, 10.995, 11.79, 13.583, 15.182, 15.619, 16.016, 16.402, 16.705, 16.967, 17.195, 17.389, 17.535, 17.702, 17.817, 17.873, 17.964 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.719, 5.038, 5.852, 6.48, 6.993, 7.799, 8.409, 9.902, 11.371, 11.784, 12.17, 12.541, 12.839, 13.092, 13.315, 13.505, 13.647, 13.81, 13.921, 13.975, 14.063 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.323, 5.71, 6.042, 6.6, 7.05, 8.306, 9.552, 9.935, 10.288, 10.644, 10.94, 11.188, 11.409, 11.596, 11.738, 11.9, 12.011, 12.065, 12.153 - end - elsif num_bore_holes == 9 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.082, 3.561, 4.49, 5.635, 7.436, 9.672, 11.59, 14.193, 15.721, 16.791, 18.256, 19.252, 21.447, 23.318, 23.826, 24.287, 24.74, 25.095, 25.404, 25.672, 25.899, 26.071, 26.269, 26.405, 26.471, 26.583 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.357, 3.879, 4.57, 5.781, 7.488, 9.052, 11.408, 12.84, 13.855, 15.263, 16.235, 18.39, 20.216, 20.717, 21.166, 21.61, 21.959, 22.257, 22.519, 22.74, 22.909, 23.102, 23.234, 23.298, 23.403 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.039, 4.659, 5.65, 6.633, 8.447, 9.638, 10.525, 11.802, 12.705, 14.731, 16.525, 17.014, 17.456, 17.887, 18.225, 18.516, 18.77, 18.986, 19.148, 19.334, 19.461, 19.523, 19.625 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.316, 4.725, 5.052, 5.917, 6.603, 7.173, 8.08, 8.772, 10.47, 12.131, 12.596, 13.029, 13.443, 13.775, 14.057, 14.304, 14.515, 14.673, 14.852, 14.975, 15.035, 15.132 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.334, 5.739, 6.094, 6.7, 7.198, 8.611, 10.023, 10.456, 10.855, 11.256, 11.588, 11.866, 12.112, 12.32, 12.477, 12.656, 12.779, 12.839, 12.935 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.08, 3.553, 4.453, 5.552, 7.282, 9.472, 11.405, 14.111, 15.737, 16.888, 18.476, 19.562, 21.966, 24.021, 24.579, 25.086, 25.583, 25.973, 26.311, 26.606, 26.855, 27.043, 27.26, 27.409, 27.482, 27.605 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.355, 3.871, 4.545, 5.706, 7.332, 8.863, 11.218, 12.688, 13.749, 15.242, 16.284, 18.618, 20.613, 21.161, 21.652, 22.138, 22.521, 22.847, 23.133, 23.376, 23.56, 23.771, 23.915, 23.985, 24.1 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.036, 4.645, 5.603, 6.543, 8.285, 9.449, 10.332, 11.623, 12.553, 14.682, 16.613, 17.143, 17.624, 18.094, 18.462, 18.78, 19.057, 19.293, 19.47, 19.673, 19.811, 19.879, 19.989 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.722, 5.045, 5.885, 6.543, 7.086, 7.954, 8.621, 10.291, 11.988, 12.473, 12.931, 13.371, 13.727, 14.03, 14.299, 14.527, 14.698, 14.894, 15.027, 15.092, 15.199 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.329, 5.725, 6.069, 6.651, 7.126, 8.478, 9.863, 10.298, 10.704, 11.117, 11.463, 11.755, 12.016, 12.239, 12.407, 12.602, 12.735, 12.8, 12.906 + x = actuals['b_over_h'] + x0 = pt1['b_over_h'] + x1 = pt2['b_over_h'] + g_functions = gs[0].zip(gs[1]).map { |v| MathTools.interp2(x, x0, x1, v[0], v[1]) } + + # linear interpolation on rb/h for correction factor + x = actuals['b_over_h'] + x0 = pt1['b_over_h'] + x1 = pt2['b_over_h'] + f0 = pt1['rb_over_h'] + f1 = pt2['rb_over_h'] + actuals['rb_over_h'] = MathTools.interp2(x, x0, x1, f0, f1) + rb = actuals['rb_over_h'] * actuals['h'] + rb_actual_over_rb = actuals['rb'] / rb + correction_factor = Math.log(rb_actual_over_rb) + g_functions = g_functions.map { |v| v - correction_factor } + + return logtimes[0], g_functions + end + end + + def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) + g_functions_json.each do |_key_1, values_1| + if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, + HPXML::GeothermalLoopBorefieldConfigurationL].include?(bore_config) + bore_locations = values_1[:bore_locations] + next if bore_locations.size != num_bore_holes + + logtime = values_1[:logtime].map { |v| Float(v) } + g = values_1[:g][b_h_rb.to_sym].map { |v| Float(v) } + + return logtime, g + elsif [HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle, + HPXML::GeothermalLoopBorefieldConfigurationC, + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU, + HPXML::GeothermalLoopBorefieldConfigurationU].include?(bore_config) + values_1.each do |_key_2, values_2| + bore_locations = values_2[:bore_locations] + next if bore_locations.size != num_bore_holes + + logtime = values_2[:logtime].map { |v| Float(v) } + g = values_2[:g][b_h_rb.to_sym].map { |v| Float(v) } + + return logtime, g end end end - return gfnc_coeff end def self.calculate_average_r_value(surfaces) @@ -3248,6 +3095,14 @@ def self.set_fractions_load_served(hvac_heating, hvac_cooling) end end +class MJ + def initialize + end + attr_accessor(:daily_range_temp_adjust, :cool_setpoint, :heat_setpoint, :cool_design_grains, :ctd, :htd, + :daily_range_num, :acf, :cool_indoor_grains, :cool_indoor_wetbulb, :cool_indoor_enthalpy, + :cool_outdoor_wetbulb, :inside_air_dens, :cool_design_temps, :heat_design_temps) +end + class DesignLoads def initialize end @@ -3263,7 +3118,7 @@ def initialize end attr_accessor(:Cool_Load_Sens, :Cool_Load_Lat, :Cool_Load_Tot, :Cool_Capacity, :Cool_Capacity_Sens, :Cool_Airflow, :Heat_Load, :Heat_Load_Supp, :Heat_Capacity, :Heat_Capacity_Supp, :Heat_Airflow, - :GSHP_Loop_flow, :GSHP_Bore_Holes, :GSHP_Bore_Depth, :GSHP_G_Functions) + :GSHP_Loop_flow, :GSHP_Bore_Holes, :GSHP_Bore_Depth, :GSHP_G_Functions, :GSHP_Bore_Config) end class Numeric diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb index 21482cca63..59dc9699ce 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb @@ -74,7 +74,7 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v interior_sch = MonthWeekdayWeekendSchedule.new(model, interior_obj_name + ' schedule', lighting.interior_weekday_fractions, lighting.interior_weekend_fractions, lighting.interior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: interior_unavailable_periods) else lighting_sch = get_schedule(epw_file) - interior_sch = HourlyByMonthSchedule.new(model, 'lighting schedule', lighting_sch, lighting_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: interior_unavailable_periods) + interior_sch = HourlyByMonthSchedule.new(model, interior_obj_name + ' schedule', lighting_sch, lighting_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: interior_unavailable_periods) end if lighting.interior_weekday_fractions.nil? @@ -365,7 +365,7 @@ def self.get_schedule(epw_file) end june_kws = [0.060, 0.040, 0.035, 0.025, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.020, 0.025, 0.030, 0.030, 0.025, 0.020, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.020, 0.020, 0.020, 0.025, 0.025, 0.030, 0.030, 0.035, 0.045, 0.060, 0.085, 0.125, 0.145, 0.130, 0.105, 0.080] - lighting_seasonal_multiplier = [1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905] + lighting_seasonal_multiplier = Schedule.LightingInteriorMonthlyMultipliers.split(',').map { |v| v.to_f } amplConst1 = 0.929707907917098 sunsetLag1 = 2.45016230615269 stdDevCons1 = 1.58679810983444 diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb index 012f0d774e..fda906b362 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb @@ -297,7 +297,7 @@ def self.OSBSheathing(thick_in) return new(name: "osb sheathing #{thick_in} in.", thick_in: thick_in, mat_base: BaseMaterial.Wood) end - def self.RadiantBarrier(grade) + def self.RadiantBarrier(grade, is_attic_floor) # FUTURE: Merge w/ Constructions.get_gap_factor if grade == 1 gap_frac = 0.0 @@ -306,7 +306,13 @@ def self.RadiantBarrier(grade) elsif grade == 3 gap_frac = 0.05 end - rb_emittance = 0.05 + if is_attic_floor + # Assume reduced effectiveness due to accumulation of dust per https://web.ornl.gov/sci/buildings/tools/radiant/rb2/ + rb_emittance = 0.5 + else + # ASTM C1313 3.2.1 defines a radiant barrier as <= 0.1 + rb_emittance = 0.05 + end non_rb_emittance = 0.90 emittance = rb_emittance * (1.0 - gap_frac) + non_rb_emittance * gap_frac return new(name: 'radiant barrier', thick_in: 0.0084, k_in: 1629.6, rho: 168.6, cp: 0.22, tAbs: emittance, sAbs: 0.05) diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb index 772eb03c43..8d92e5a0ad 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb @@ -510,6 +510,7 @@ def report_os_warnings(os_log, rundir) next if s.logMessage.include? 'xsdValidate' next if s.logMessage.include? 'xsltValidate' next if s.logLevel == 0 && s.logMessage.include?('not within the expected limits') # Ignore EpwFile warnings + next if s.logMessage.include? 'Error removing temporary directory at /tmp/xmlvalidation' f << "OS Message: #{s.logMessage}\n" end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb index c736b3bc40..cee42494c7 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb @@ -3,6 +3,7 @@ called_from_cli = true begin OpenStudio.getOpenStudioCLI + OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) rescue called_from_cli = false end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index ec2a5d10c9..bc403c81e3 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -596,6 +596,11 @@ def self.annual_equivalent_full_load_hrs(modelYear, schedule) return annual_flh end + if schedule.to_ScheduleConstant.is_initialized + annual_flh = schedule.to_ScheduleConstant.get.value * Constants.NumHoursInYear(modelYear) + return annual_flh + end + if not schedule.to_ScheduleRuleset.is_initialized return end @@ -613,8 +618,7 @@ def self.annual_equivalent_full_load_hrs(modelYear, schedule) # Get a 365-value array of which schedule is used on each day of the year, day_schs_used_each_day = schedule.getActiveRuleIndices(year_start_date, year_end_date) if !day_schs_used_each_day.length == 365 - OpenStudio::logFree(OpenStudio::Error, 'openstudio.standards.ScheduleRuleset', "#{schedule.name} does not have 365 daily schedules accounted for, cannot accurately calculate annual EFLH.") - return 0 + fail "#{schedule.name} does not have 365 daily schedules accounted for, cannot accurately calculate annual EFLH." end # Create a map that shows how many days each schedule is used @@ -667,11 +671,11 @@ def self.annual_equivalent_full_load_hrs(modelYear, schedule) annual_flh += daily_flh * number_of_days_sch_used end - # Warn if the max daily EFLH is more than 24, + # Check if the max daily EFLH is more than 24, # which would indicate that this isn't a # fractional schedule. if max_daily_flh > 24 - OpenStudio::logFree(OpenStudio::Warn, 'openstudio.standards.ScheduleRuleset', "#{schedule.name} has more than 24 EFLH in one day schedule, indicating that it is not a fractional schedule.") + fail "#{schedule.name} has more than 24 EFLH in one day schedule, indicating that it is not a fractional schedule." end return annual_flh @@ -833,6 +837,10 @@ def self.OccupantsMonthlyMultipliers return '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' end + def self.LightingInteriorMonthlyMultipliers + return '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905' + end + def self.LightingExteriorWeekdayFractions # Schedules from T24 2016 Residential ACM Appendix C Table 8 Exterior Lighting Hourly Multiplier (Weekdays and weekends) return '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' @@ -1362,24 +1370,12 @@ def initialize(runner: nil, battery_schedules expand_schedules @tmp_schedules = Marshal.load(Marshal.dump(@schedules)) - normalize_zero_to_one_scale set_unavailable_periods(runner, unavailable_periods) convert_setpoints @output_schedules_path = output_path export() end - def normalize_zero_to_one_scale - range_max_value = @tmp_schedules['cooking_range'].max - @tmp_schedules['cooking_range'] = @tmp_schedules['cooking_range'].map { |power| power / range_max_value } - dishwasher_max_value = @tmp_schedules['dishwasher'].max - @tmp_schedules['dishwasher'] = @tmp_schedules['dishwasher'].map { |power| power / dishwasher_max_value } - washer_max_value = @tmp_schedules['clothes_washer'].max - @tmp_schedules['clothes_washer'] = @tmp_schedules['clothes_washer'].map { |power| power / washer_max_value } - dryer_max_value = @tmp_schedules['clothes_dryer'].max - @tmp_schedules['clothes_dryer'] = @tmp_schedules['clothes_dryer'].map { |power| power / dryer_max_value } - end - def nil? if @schedules.nil? return true @@ -1416,11 +1412,11 @@ def import(schedules_paths) fail "Schedule column name '#{col_name}' is duplicated. [context: #{schedules_path}]" end - #if max_value_one[col_name] - #if values.max > 1 - #fail "Schedule max value for column '#{col_name}' must be 1. [context: #{schedules_path}]" - #end - #end + if max_value_one[col_name] + if values.max > 1.01 || values.max < 0.99 # Allow some imprecision + fail "Schedule max value for column '#{col_name}' must be 1. [context: #{schedules_path}]" + end + end if min_value_zero[col_name] if values.min < 0 @@ -1428,9 +1424,12 @@ def import(schedules_paths) end end - if min_value_neg_one[col_name] + if value_neg_one_to_one[col_name] if values.min < -1 - fail "Schedule min value for column '#{col_name}' must be -1. [context: #{schedules_path}]" + fail "Schedule value for column '#{col_name}' must be greater than or equal to -1. [context: #{schedules_path}]" + end + if values.max > 1 + fail "Schedule value for column '#{col_name}' must be less than or equal to 1. [context: #{schedules_path}]" end end @@ -1518,8 +1517,18 @@ def create_schedule_file(model, col_name:, rows_to_skip: 1, # the equivalent number of hours in the year, if the schedule was at full load (1.0) def annual_equivalent_full_load_hrs(col_name:, schedules: nil) + + ann_equiv_full_load_hrs = period_equivalent_full_load_hrs(col_name: col_name, schedules: schedules) + + return ann_equiv_full_load_hrs + end + + # the equivalent number of hours in the period, if the schedule was at full load (1.0) + def period_equivalent_full_load_hrs(col_name:, + schedules: nil, + period: nil) if schedules.nil? - schedules = @tmp_schedules # the schedules before vacancy is applied + schedules = @schedules # the schedules before unavailable periods are applied end if schedules[col_name].nil? @@ -1529,9 +1538,41 @@ def annual_equivalent_full_load_hrs(col_name:, num_hrs_in_year = Constants.NumHoursInYear(@year) schedule_length = schedules[col_name].length min_per_item = 60.0 / (schedule_length / num_hrs_in_year) - ann_equiv_full_load_hrs = schedules[col_name].reduce(:+) / (60.0 / min_per_item) - return ann_equiv_full_load_hrs + equiv_full_load_hrs = 0.0 + if not period.nil? + n_steps = schedules[schedules.keys[0]].length + num_days_in_year = Constants.NumDaysInYear(@year) + steps_in_day = n_steps / num_days_in_year + steps_in_hour = steps_in_day / 24 + + begin_day_num = Schedule.get_day_num_from_month_day(@year, period.begin_month, period.begin_day) + end_day_num = Schedule.get_day_num_from_month_day(@year, period.end_month, period.end_day) + + begin_hour = 0 + end_hour = 24 + + begin_hour = period.begin_hour if not period.begin_hour.nil? + end_hour = period.end_hour if not period.end_hour.nil? + + if end_day_num >= begin_day_num + start_ix = (begin_day_num - 1) * steps_in_day + (begin_hour * steps_in_hour) + end_ix = (end_day_num - begin_day_num + 1) * steps_in_day - ((24 - end_hour + begin_hour) * steps_in_hour) + equiv_full_load_hrs += schedules[col_name][start_ix..end_ix].sum / (60.0 / min_per_item) + else # Wrap around year + start_ix = (begin_day_num - 1) * steps_in_day + (begin_hour * steps_in_hour) + end_ix = -1 + equiv_full_load_hrs += schedules[col_name][start_ix..end_ix].sum / (60.0 / min_per_item) + + start_ix = 0 + end_ix = (end_day_num - 1) * steps_in_day + (end_hour * steps_in_hour) + equiv_full_load_hrs += schedules[col_name][start_ix..end_ix].sum / (60.0 / min_per_item) + end + else # Annual + equiv_full_load_hrs += schedules[col_name].sum / (60.0 / min_per_item) + end + + return equiv_full_load_hrs end # the power in watts the equipment needs to consume so that, if it were to run annual_equivalent_full_load_hrs hours, @@ -1551,16 +1592,6 @@ def calc_design_level_from_annual_kwh(col_name:, return design_level end - def calc_design_level_from_schedule_max(col_name:) - if @schedules[col_name].nil? - return - end - - design_level = @schedules[col_name].max * 1000 # W - - return design_level - end - # Similar to ann_equiv_full_load_hrs, but for thermal energy def calc_design_level_from_annual_therm(col_name:, annual_therm:) @@ -1796,7 +1827,7 @@ def max_value_one column_names = SchedulesFile.ColumnNames column_names.each do |column_name| max_value_one[column_name] = true - if SchedulesFile.SetpointColumnNames.include?(column_name) || SchedulesFile.OperatingModeColumnNames.include?(column_name) + if SchedulesFile.SetpointColumnNames.include?(column_name) || SchedulesFile.OperatingModeColumnNames.include?(column_name) || SchedulesFile.BatteryColumnNames.include?(column_name) max_value_one[column_name] = false end end @@ -1815,16 +1846,16 @@ def min_value_zero return min_value_zero end - def min_value_neg_one - min_value_neg_one = {} + def value_neg_one_to_one + value_neg_one_to_one = {} column_names = SchedulesFile.ColumnNames column_names.each do |column_name| - min_value_neg_one[column_name] = false + value_neg_one_to_one[column_name] = false if column_name == SchedulesFile::ColumnBattery - min_value_neg_one[column_name] = true + value_neg_one_to_one[column_name] = true end end - return min_value_neg_one + return value_neg_one_to_one end def only_zeros_and_ones diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb index 7c72624a58..6dbe3c7d10 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb @@ -133,6 +133,9 @@ class UnitConversions ['btu/(hr*ft*r)', 'w/(m*k)'] => 1.731, ['btu*in/(hr*ft^2*r)', 'w/(m*k)'] => 0.14425, + # Thermal Diffusivity + ['m^2/s', 'ft^2/hr'] => 38750.1, + # Infiltration ['ft^2/(s^2*r)', 'l^2/(s^2*cm^4*k)'] => 0.001672, ['inh2o/mph^2', 'pa*s^2/m^2'] => 1246.0, diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb index 87b53e4561..1a2e8a3f27 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb @@ -1444,12 +1444,12 @@ def self.get_default_performance_adjustment(water_heating_system) def self.get_default_location(hpxml_bldg, climate_zone_iecc) iecc_zone = (climate_zone_iecc.nil? ? nil : climate_zone_iecc.zone) - if ['1A', '1B', '1C', '2A', '2B', '2C', '3B', '3C'].include? iecc_zone + if ['1A', '1B', '1C', '2A', '2B', '2C', '3A', '3B', '3C'].include? iecc_zone location_hierarchy = [HPXML::LocationGarage, HPXML::LocationConditionedSpace] - elsif ['3A', '4A', '4B', '4C', '5A', '5B', '5C', '6A', '6B', '6C', '7', '8'].include? iecc_zone - location_hierarchy = [HPXML::LocationBasementConditioned, - HPXML::LocationBasementUnconditioned, + elsif ['4A', '4B', '4C', '5A', '5B', '5C', '6A', '6B', '6C', '7', '8'].include? iecc_zone + location_hierarchy = [HPXML::LocationBasementUnconditioned, + HPXML::LocationBasementConditioned, HPXML::LocationConditionedSpace] elsif iecc_zone.nil? location_hierarchy = [HPXML::LocationBasementConditioned, diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb index e1c6a28dcb..8cc7d8b0d9 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb @@ -386,6 +386,7 @@ def calc_mains_temperatures(n_days) for d in 1..n_days data.MainsDailyTemps << data.AnnualAvgDrybulb + 6 + tmains_ratio * maxDiffMonthlyAvgOAT / 2 * Math.sin(deg_rad * (0.986 * (d - 15 - tmains_lag) + sign * 90)) end + data.MainsDailyTemps.map! { |temp| [32.0, temp].max } # ensure mains never gets below freezing. Algorithm will never provide water over boiling without a check data.MainsAnnualTemp = data.MainsDailyTemps.sum / n_days # Calculate monthly @@ -393,5 +394,6 @@ def calc_mains_temperatures(n_days) for m in 1..12 data.MainsMonthlyTemps << data.AnnualAvgDrybulb + 6 + tmains_ratio * maxDiffMonthlyAvgOAT / 2 * Math.sin(deg_rad * (0.986 * ((m * 30 - 15) - 15 - tmains_lag) + sign * 90)) end + data.MainsMonthlyTemps.map! { |temp| [32.0, temp].max } # ensure mains never gets below freezing. Algorithm will never provide water over boiling without a check end end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb index 2a20985c0d..d338709818 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +++ b/resources/hpxml-measures/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/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb index b016ecdfae..c825aec1e5 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -232,6 +232,7 @@ def test_building hpxml_bldg.time_zone_utc_offset = -8 hpxml_bldg.header.natvent_days_per_week = 7 hpxml_bldg.header.heat_pump_sizing_methodology = HPXML::HeatPumpSizingMaxLoad + hpxml_bldg.header.heat_pump_backup_sizing_methodology = HPXML::HeatPumpBackupSizingSupplemental hpxml_bldg.header.allow_increased_fixed_capacities = true hpxml_bldg.header.shading_summer_begin_month = 2 hpxml_bldg.header.shading_summer_begin_day = 3 @@ -248,7 +249,7 @@ def test_building XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_building_values(default_hpxml_bldg, false, 3, 3, 10, 10, 'CA', -8, 7, HPXML::HeatPumpSizingMaxLoad, true, - 2, 3, 4, 5, 0.0, 100.0, 68.0, 78.0, 0.44, 1600.0, 60.0, 8) + 2, 3, 4, 5, 0.0, 100.0, 68.0, 78.0, 0.44, 1600.0, 60.0, 8, HPXML::HeatPumpBackupSizingSupplemental) # Test defaults - DST not in weather file hpxml_bldg.dst_enabled = nil @@ -260,6 +261,7 @@ def test_building hpxml_bldg.time_zone_utc_offset = nil hpxml_bldg.header.natvent_days_per_week = nil hpxml_bldg.header.heat_pump_sizing_methodology = nil + hpxml_bldg.header.heat_pump_backup_sizing_methodology = nil hpxml_bldg.header.allow_increased_fixed_capacities = nil hpxml_bldg.header.shading_summer_begin_month = nil hpxml_bldg.header.shading_summer_begin_day = nil @@ -276,7 +278,7 @@ def test_building XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_building_values(default_hpxml_bldg, true, 3, 12, 11, 5, 'CO', -7, 3, HPXML::HeatPumpSizingHERS, false, - 5, 1, 10, 31, 6.8, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + 5, 1, 10, 31, 6.8, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4, HPXML::HeatPumpBackupSizingEmergency) # Test defaults - DST in weather file hpxml, hpxml_bldg = _create_hpxml('base-location-AMY-2012.xml') @@ -290,7 +292,7 @@ def test_building XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_building_values(default_hpxml_bldg, true, 3, 11, 11, 4, 'CO', -7, 3, nil, false, - 5, 1, 9, 30, 10.2, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + 5, 1, 9, 30, 10.2, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4, nil) # Test defaults - southern hemisphere, invalid state code hpxml, hpxml_bldg = _create_hpxml('base-location-capetown-zaf.xml') @@ -304,7 +306,7 @@ def test_building XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_building_values(default_hpxml_bldg, true, 3, 12, 11, 5, nil, 2, 3, nil, false, - 12, 1, 4, 30, 41.0, 84.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + 12, 1, 4, 30, 41.0, 84.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4, nil) end def test_site @@ -313,17 +315,45 @@ def test_site hpxml_bldg.site.site_type = HPXML::SiteTypeRural hpxml_bldg.site.shielding_of_home = HPXML::ShieldingExposed hpxml_bldg.site.ground_conductivity = 0.8 + hpxml_bldg.site.ground_diffusivity = 0.9 + hpxml_bldg.site.soil_type = HPXML::SiteSoilTypeClay + hpxml_bldg.site.moisture_type = HPXML::SiteSoilMoistureTypeDry XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8) + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8, 0.9, HPXML::SiteSoilTypeClay, HPXML::SiteSoilMoistureTypeDry) # Test defaults hpxml_bldg.site.site_type = nil hpxml_bldg.site.shielding_of_home = nil hpxml_bldg.site.ground_conductivity = nil + hpxml_bldg.site.ground_diffusivity = nil + hpxml_bldg.site.soil_type = nil + hpxml_bldg.site.moisture_type = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0) + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208, HPXML::SiteSoilTypeUnknown, HPXML::SiteSoilMoistureTypeMixed) + + # Test defaults w/ gravel soil type + hpxml_bldg.site.soil_type = HPXML::SiteSoilTypeGravel + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.6355, 0.0194, HPXML::SiteSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) + + # Test defaults w/ conductivity but no diffusivity + hpxml_bldg.site.ground_conductivity = 2.0 + hpxml_bldg.site.ground_diffusivity = nil + hpxml_bldg.site.soil_type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 2.0, 0.0416, nil, nil) + + # Test defaults w/ diffusivity but no conductivity + hpxml_bldg.site.ground_conductivity = nil + hpxml_bldg.site.ground_diffusivity = 0.025 + hpxml_bldg.site.soil_type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.201923076923077, 0.025, nil, nil) end def test_neighbor_buildings @@ -1509,6 +1539,35 @@ def test_air_source_heat_pumps XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, 9876, nil, 14.0, 8.0, nil, nil, 40.0) + + # Test w/ detailed performance data and autosizing + heating_capacity_fractions = [0.35, 1.0, 0.2, 0.75, 0.1, 0.65] + cooling_capacity_fractions = [0.2, 1.0, 0.45, 1] + heating_capacities = [] + cooling_capacities = [] + hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.each_with_index do |dp, idx| + dp.capacity_fraction_of_nominal = heating_capacity_fractions[idx] + heating_capacities << dp.capacity + end + hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data.each_with_index do |dp, idx| + dp.capacity_fraction_of_nominal = cooling_capacity_fractions[idx] + cooling_capacities << dp.capacity + end + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + # Test that fractions are not used when capacities are provided + _test_default_detailed_performance_capacities(default_hpxml_bldg.heat_pumps[0], 36000, 36000, heating_capacities, cooling_capacities) + + hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.each_with_index do |dp, idx| + dp.capacity = nil + heating_capacities << 36000 * heating_capacity_fractions[idx] + end + hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data.each_with_index do |dp, idx| + dp.capacity = nil + cooling_capacities << 36000 * cooling_capacity_fractions[idx] + end + # Test that fractions are used when capacities are missing + _test_default_detailed_performance_capacities(default_hpxml_bldg.heat_pumps[0], 36000, 36000, heating_capacities, cooling_capacities) end def test_pthp @@ -1697,6 +1756,111 @@ def test_ground_source_heat_pumps _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 30.0, 0.375, 0, nil, nil, nil) end + def test_geothermal_loops + # Test inputs not overridden by defaults + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical + hpxml_bldg.geothermal_loops[0].loop_flow = 1 + hpxml_bldg.geothermal_loops[0].num_bore_holes = 2 + hpxml_bldg.geothermal_loops[0].bore_spacing = 3 + hpxml_bldg.geothermal_loops[0].bore_length = 100 + hpxml_bldg.geothermal_loops[0].bore_diameter = 5 + hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + hpxml_bldg.geothermal_loops[0].grout_conductivity = 6 + hpxml_bldg.geothermal_loops[0].pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + hpxml_bldg.geothermal_loops[0].pipe_conductivity = 7 + hpxml_bldg.geothermal_loops[0].pipe_diameter = 1.0 + hpxml_bldg.geothermal_loops[0].shank_spacing = 9 + hpxml_bldg.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults + hpxml_bldg.geothermal_loops[0].loop_flow = nil # autosized + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil # autosized + hpxml_bldg.geothermal_loops[0].bore_spacing = nil # 16.4 + hpxml_bldg.geothermal_loops[0].bore_length = nil # autosized + hpxml_bldg.geothermal_loops[0].bore_diameter = nil # 5.0 + hpxml_bldg.geothermal_loops[0].grout_type = nil # standard + hpxml_bldg.geothermal_loops[0].grout_conductivity = nil # 0.4 + hpxml_bldg.geothermal_loops[0].pipe_type = nil # standard + hpxml_bldg.geothermal_loops[0].pipe_conductivity = nil # 0.23 + hpxml_bldg.geothermal_loops[0].pipe_diameter = nil # 1.25 + hpxml_bldg.geothermal_loops[0].shank_spacing = nil # 2.6261 + hpxml_bldg.geothermal_loops[0].bore_config = nil # rectangle + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified loop flow + hpxml_bldg.geothermal_loops[0].loop_flow = 1 + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_length = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified num bore holes + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = 2 + hpxml_bldg.geothermal_loops[0].bore_length = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 2, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified bore length + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_length = 300 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, 300, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified loop flow, num bore holes + hpxml_bldg.geothermal_loops[0].loop_flow = 2 + hpxml_bldg.geothermal_loops[0].num_bore_holes = 3 + hpxml_bldg.geothermal_loops[0].bore_length = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 2, 3, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified num bore holes, bore length + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = 4 + hpxml_bldg.geothermal_loops[0].bore_length = 400 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 4, 16.4, 400, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified loop flow, bore length + hpxml_bldg.geothermal_loops[0].loop_flow = 5 + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_length = 450 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 5, nil, 16.4, 450, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.75, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ thermally enhanced grout type + hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 1.2, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ thermally enhanced pipe type + hpxml_bldg.geothermal_loops[0].pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 1.2, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified rectangle bore config + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 1.2, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + end + def test_hvac_location # Test inputs not overridden by defaults hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') @@ -2678,7 +2842,7 @@ def test_pv_systems pv.year_modules_manufactured = 2010 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_pv_system_values(default_hpxml_bldg, 0.96, 0.194, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard, 135) + _test_default_pv_system_values(default_hpxml_bldg, 0.96, 0.198, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard, 135) end def test_batteries @@ -3686,7 +3850,8 @@ def _test_default_building_values(hpxml_bldg, dst_enabled, dst_begin_month, dst_ state_code, time_zone_utc_offset, natvent_days_per_week, heat_pump_sizing_methodology, allow_increased_fixed_capacities, shading_summer_begin_month, shading_summer_begin_day, shading_summer_end_month, shading_summer_end_day, manualj_heating_design_temp, manualj_cooling_design_temp, manualj_heating_setpoint, manualj_cooling_setpoint, - manualj_humidity_setpoint, manualj_internal_loads_sensible, manualj_internal_loads_latent, manualj_num_occupants) + manualj_humidity_setpoint, manualj_internal_loads_sensible, manualj_internal_loads_latent, manualj_num_occupants, + heat_pump_backup_sizing_methodology) assert_equal(dst_enabled, hpxml_bldg.dst_enabled) assert_equal(dst_begin_month, hpxml_bldg.dst_begin_month) assert_equal(dst_begin_day, hpxml_bldg.dst_begin_day) @@ -3704,6 +3869,11 @@ def _test_default_building_values(hpxml_bldg, dst_enabled, dst_begin_month, dst_ else assert_equal(heat_pump_sizing_methodology, hpxml_bldg.header.heat_pump_sizing_methodology) end + if heat_pump_backup_sizing_methodology.nil? + assert_nil(hpxml_bldg.header.heat_pump_backup_sizing_methodology) + else + assert_equal(heat_pump_backup_sizing_methodology, hpxml_bldg.header.heat_pump_backup_sizing_methodology) + end assert_equal(allow_increased_fixed_capacities, hpxml_bldg.header.allow_increased_fixed_capacities) assert_equal(shading_summer_begin_month, hpxml_bldg.header.shading_summer_begin_month) assert_equal(shading_summer_begin_day, hpxml_bldg.header.shading_summer_begin_day) @@ -3719,10 +3889,21 @@ def _test_default_building_values(hpxml_bldg, dst_enabled, dst_begin_month, dst_ assert_equal(manualj_num_occupants, hpxml_bldg.header.manualj_num_occupants) end - def _test_default_site_values(hpxml_bldg, site_type, shielding_of_home, ground_conductivity) + def _test_default_site_values(hpxml_bldg, site_type, shielding_of_home, ground_conductivity, ground_diffusivity, soil_type, moisture_type) assert_equal(site_type, hpxml_bldg.site.site_type) assert_equal(shielding_of_home, hpxml_bldg.site.shielding_of_home) assert_equal(ground_conductivity, hpxml_bldg.site.ground_conductivity) + assert_equal(ground_diffusivity, hpxml_bldg.site.ground_diffusivity) + if soil_type.nil? + assert_nil(hpxml_bldg.site.soil_type) + else + assert_equal(soil_type, hpxml_bldg.site.soil_type) + end + if moisture_type.nil? + assert_nil(hpxml_bldg.site.moisture_type) + else + assert_equal(moisture_type, hpxml_bldg.site.moisture_type) + end end def _test_default_neighbor_building_values(hpxml_bldg, azimuths) @@ -4132,6 +4313,29 @@ def _test_default_air_to_air_heat_pump_values(heat_pump, shr, compressor_type, f end end + def _test_default_detailed_performance_capacities(heat_pump, heating_nominal_capacity, cooling_nominal_capacity, heating_capacities, cooling_capacities) + if cooling_nominal_capacity.nil? + assert(heat_pump.cooling_capacity > 0) + else + assert_equal(cooling_nominal_capacity, heat_pump.cooling_capacity) + end + if heating_nominal_capacity.nil? + assert(heat_pump.heating_capacity > 0) + else + assert_equal(heating_nominal_capacity, heat_pump.heating_capacity) + end + if not heat_pump.heating_detailed_performance_data.empty? + heat_pump.heating_detailed_performance_data.each_with_index do |dp, idx| + assert_equal(heating_capacities[idx], dp.capacity) + end + end + if not heat_pump.cooling_detailed_performance_data.empty? + heat_pump.cooling_detailed_performance_data.each_with_index do |dp, idx| + assert_equal(cooling_capacities[idx], dp.capacity) + end + end + end + def _test_default_pthp_values(heat_pump, shr, cooling_capacity, heating_capacity, heating_capacity_17F, heating_capacity_retention_fraction, heating_capacity_retention_temp, crankcase_heater_watts) @@ -4260,6 +4464,38 @@ def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, end end + def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, loop_flow, + num_bore_holes, bore_spacing, bore_length, bore_diameter, + grout_type, grout_conductivity, + pipe_type, pipe_conductivity, pipe_diameter, + shank_spacing, bore_config) + assert_equal(loop_configuration, geothermal_loop.loop_configuration) + if loop_flow.nil? # nil implies an autosized value + assert(geothermal_loop.loop_flow > 0) + else + assert_equal(loop_flow, geothermal_loop.loop_flow) + end + if num_bore_holes.nil? # nil implies an autosized value + assert(geothermal_loop.num_bore_holes > 0) + else + assert_equal(num_bore_holes, geothermal_loop.num_bore_holes) + end + assert_equal(bore_spacing, geothermal_loop.bore_spacing) + if bore_length.nil? # nil implies an autosized value + assert(geothermal_loop.bore_length > 0) + else + assert_equal(bore_length, geothermal_loop.bore_length) + end + assert_equal(bore_diameter, geothermal_loop.bore_diameter) + assert_equal(grout_type, geothermal_loop.grout_type) + assert_equal(grout_conductivity, geothermal_loop.grout_conductivity) + assert_equal(pipe_type, geothermal_loop.pipe_type) + assert_equal(pipe_conductivity, geothermal_loop.pipe_conductivity) + assert_equal(pipe_diameter, geothermal_loop.pipe_diameter) + assert_equal(shank_spacing, geothermal_loop.shank_spacing) + assert_equal(bore_config, geothermal_loop.bore_config) + end + def _test_default_hvac_location_values(hvac_system, location) assert_equal(location, hvac_system.location) end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb index ae7c57f156..517c40a544 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb @@ -104,25 +104,54 @@ def test_roofs _check_surface(hpxml_bldg.roofs[i], os_surface, roof_values[:layer_names]) end end + end - # Radiant Barrier + def test_radiant_barriers + # Attic roof and gable walls args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - # Open cavity, asphalt shingles roof roofs_values = [{ assembly_r: 0.1, layer_names: ['asphalt or fiberglass shingles', 'radiant barrier'] }, { assembly_r: 5.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing', 'radiant barrier'] }, { assembly_r: 20.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing', 'radiant barrier'] }] + gablewalls_values = [{ assembly_r: 0.1, layer_names: ['wood siding', 'wall stud and cavity', 'radiant barrier'] }, + { assembly_r: 5.0, layer_names: ['wood siding', 'osb sheathing 0.5 in.', 'wall stud and cavity', 'radiant barrier'] }, + { assembly_r: 20.0, layer_names: ['wood siding', 'wall rigid ins', 'osb sheathing 0.5 in.', 'wall stud and cavity', 'radiant barrier'] }] hpxml, hpxml_bldg = _create_hpxml('base-atticroof-radiant-barrier.xml') - roofs_values.each do |roof_values| + roofs_values.each_with_index do |roof_values, idx| + gablewall_values = gablewalls_values[idx] hpxml_bldg.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] + hpxml_bldg.walls[1].insulation_assembly_r_value = gablewall_values[:assembly_r] XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) model, hpxml, hpxml_bldg = _test_measure(args_hash) - # Check properties + # Check roof properties os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.roofs[0].id}:" } - _check_surface(hpxml_bldg.roofs[0], os_surface, roof_values[:layer_names]) + _check_surface(hpxml_bldg.roofs[0], os_surface, roof_values[:layer_names], 0.05) + + # Check gable wall properties + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.walls[1].id}:" } + _check_surface(hpxml_bldg.walls[1], os_surface, gablewall_values[:layer_names], 0.05) + end + + # Attic floor + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + ceilings_values = [{ assembly_r: 0.1, layer_names: ['radiant barrier', 'ceiling stud and cavity', 'gypsum board'] }, + { assembly_r: 5.0, layer_names: ['radiant barrier', 'ceiling stud and cavity', 'gypsum board'] }, + { assembly_r: 20.0, layer_names: ['radiant barrier', 'ceiling loosefill ins', 'ceiling stud and cavity', 'gypsum board'] }] + + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-radiant-barrier-ceiling.xml') + ceilings_values.each do |ceiling_values| + hpxml_bldg.floors[0].insulation_assembly_r_value = ceiling_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) + + # Check ceiling properties + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.floors[0].id } + _check_surface(hpxml_bldg.floors[0], os_surface, ceiling_values[:layer_names], 0.5) end end @@ -1003,7 +1032,7 @@ def test_aspect_ratios assert_in_delta(0.6667, front_back_wall_length / left_right_wall_length, 0.01) end - def _check_surface(hpxml_surface, os_surface, expected_layer_names) + def _check_surface(hpxml_surface, os_surface, expected_layer_names, radiant_barrier_emittance = nil) os_construction = os_surface.construction.get.to_LayeredConstruction.get # Check exterior solar absorptance and emittance @@ -1015,12 +1044,21 @@ def _check_surface(hpxml_surface, os_surface, expected_layer_names) assert_equal(hpxml_surface.emittance, exterior_layer.thermalAbsorptance) end + # Check radiant barrier properties + has_radiant_barrier = false + expected_layer_names.each_with_index do |expected_layer_name, idx| + next if expected_layer_name != 'radiant barrier' + + has_radiant_barrier = true + layer = os_construction.getLayer(idx).to_OpaqueMaterial.get + assert(idx == 0 || idx == expected_layer_names.size - 1) # Must be the interior layer of the construction + assert_in_delta(radiant_barrier_emittance, layer.thermalAbsorptance, 0.1) + assert_equal(0.05, layer.solarAbsorptance) + end + assert(has_radiant_barrier) unless radiant_barrier_emittance.nil? + # Check interior finish solar absorptance and emittance - if expected_layer_names[-1] == 'radiant barrier' - interior_layer = os_construction.getLayer(os_construction.numLayers - 1).to_OpaqueMaterial.get - assert_operator(interior_layer.solarAbsorptance, :<, 0.1) - assert_operator(interior_layer.thermalAbsorptance, :<, 0.1) - elsif hpxml_surface.respond_to?(:interior_finish_type) && hpxml_surface.interior_finish_type != HPXML::InteriorFinishNone + if hpxml_surface.respond_to?(:interior_finish_type) && hpxml_surface.interior_finish_type != HPXML::InteriorFinishNone && !has_radiant_barrier interior_layer = os_construction.getLayer(os_construction.numLayers - 1).to_OpaqueMaterial.get assert_equal(0.6, interior_layer.solarAbsorptance) assert_equal(0.9, interior_layer.thermalAbsorptance) diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb index 8aceb4e77d..3d2cc838f6 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -798,6 +798,38 @@ def test_ground_to_air_heat_pump assert_in_epsilon(31, xing.phaseShiftofTemperatureAmplitude2, 0.01) end + def test_geothermal_loop + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + # Get HPXML values + geothermal_loop = hpxml_bldg.geothermal_loops[0] + bore_radius = UnitConversions.convert(geothermal_loop.bore_diameter / 2.0, 'in', 'm') + grout_conductivity = UnitConversions.convert(0.75, 'Btu/(hr*ft*R)', 'W/(m*K)') + pipe_conductivity = UnitConversions.convert(0.23, 'Btu/(hr*ft*R)', 'W/(m*K)') + shank_spacing = UnitConversions.convert(geothermal_loop.shank_spacing, 'in', 'm') + + # Check ghx + assert(1, model.getGroundHeatExchangerVerticals.size) + ghx = model.getGroundHeatExchangerVerticals[0] + assert_in_epsilon(bore_radius, ghx.boreHoleRadius.get, 0.01) + assert_in_epsilon(grout_conductivity, ghx.groutThermalConductivity.get, 0.01) + assert_in_epsilon(pipe_conductivity, ghx.pipeThermalConductivity.get, 0.01) + assert_in_epsilon(shank_spacing, ghx.uTubeDistance.get, 0.01) + + # Check G-Functions + # Expected values + # 4_4: 1: g: 5._96._0.075 from "LopU_configurations_5m_v1.0.json" + lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] + gfnc_coeff = [2.209271810327404, 2.5553235626058273, 2.8519138306223555, 3.2001519249819794, 3.523354932375397, 4.001549412014162, 4.669089316628495, 5.359101946268944, 6.552379489671893, 7.429815477491777, 8.121820314543074, 9.173143912712952, 9.946213029499233, 11.781039134458084, 13.403268695619028, 13.854454372473098, 14.260003929688882, 14.655669234316463, 14.962475413080817, 15.224731293240202, 15.450225154706388, 15.638568709166531, 15.778910465988814, 15.938820677805234, 16.047959625600665, 16.1015379064994, 16.188353466015815] + gFunctions = lntts.zip(gfnc_coeff) + ghx.gFunctions.each_with_index do |gFunction, i| + assert_in_epsilon(gFunction.lnValue, gFunctions[i][0], 0.01) + assert_in_epsilon(gFunction.gValue, gFunctions[i][1], 0.01) + end + end + def test_shared_chiller_baseboard args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml')) diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 48216a34c3..ad414b6d90 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -26,6 +26,11 @@ def test_hvac_configurations results_out = File.join(@results_dir, 'results_sizing.csv') File.delete(results_out) if File.exist? results_out + air_source_hp_types = [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpPTHP, + HPXML::HVACTypeHeatPumpRoom] + sizing_results = {} args_hash = { 'hpxml_path' => File.absolute_path(@tmp_hpxml_path), 'skip_validation' => true } @@ -41,28 +46,39 @@ def test_hvac_configurations hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = epw_path _remove_hardsized_capacities(hpxml_bldg) + hp_backup_sizing_methodologies = [nil] if hpxml_bldg.heat_pumps.size > 0 hp_sizing_methodologies = [HPXML::HeatPumpSizingACCA, HPXML::HeatPumpSizingHERS, HPXML::HeatPumpSizingMaxLoad] + if hpxml_bldg.heat_pumps.any? { |hp| !hp.backup_type.nil? } + hp_backup_sizing_methodologies = [HPXML::HeatPumpBackupSizingEmergency, + HPXML::HeatPumpBackupSizingSupplemental] + end else hp_sizing_methodologies = [nil] end - hp_capacity_acca, hp_capacity_maxload = nil, nil - hp_sizing_methodologies.each do |hp_sizing_methodology| + hp_capacity_acca, hp_capacity_maxload = {}, {} + hp_backup_capacity_emergency, hp_backup_capacity_supplemental = {}, {} + hp_sizing_methodologies.product(hp_backup_sizing_methodologies).each do |hp_sizing_methodology, hp_backup_sizing_methodology| test_name = hvac_hpxml.gsub('base-hvac-', "#{location}-hvac-autosize-") if not hp_sizing_methodology.nil? test_name = test_name.gsub('.xml', "-sizing-methodology-#{hp_sizing_methodology}.xml") + if not hp_backup_sizing_methodology.nil? + test_name = test_name.gsub('.xml', "-backup-#{hp_backup_sizing_methodology}.xml") + end end puts "Testing #{test_name}..." hpxml_bldg.header.heat_pump_sizing_methodology = hp_sizing_methodology + hpxml_bldg.header.heat_pump_backup_sizing_methodology = hp_backup_sizing_methodology XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _autosized_model, _autosized_hpxml, autosized_bldg = _test_measure(args_hash) + # Get values htg_cap, clg_cap, hp_backup_cap = Outputs.get_total_hvac_capacities(autosized_bldg) htg_cfm, clg_cfm = Outputs.get_total_hvac_airflows(autosized_bldg) sizing_results[test_name] = { 'HVAC Capacity: Heating (Btu/h)' => htg_cap.round(1), @@ -71,18 +87,32 @@ def test_hvac_configurations 'HVAC Airflow: Heating (cfm)' => htg_cfm.round(1), 'HVAC Airflow: Cooling (cfm)' => clg_cfm.round(1) } - next unless hpxml_bldg.heat_pumps.size == 1 + next if hpxml_bldg.heat_pumps.size != 1 + # Get more values for heat pump checks htg_load = autosized_bldg.hvac_plant.hdl_total clg_load = autosized_bldg.hvac_plant.cdl_sens_total + autosized_bldg.hvac_plant.cdl_lat_total hp = autosized_bldg.heat_pumps[0] htg_cap = hp.heating_capacity + if hp.backup_type == HPXML::HeatPumpBackupTypeIntegrated + htg_backup_cap = hp.backup_heating_capacity + elsif hp.backup_type == HPXML::HeatPumpBackupTypeSeparate + htg_backup_cap = hp.backup_system.heating_capacity + end clg_cap = hp.cooling_capacity charge_defect_ratio = hp.charge_defect_ratio.to_f airflow_defect_ratio = hp.airflow_defect_ratio.to_f + if not hp.backup_heating_switchover_temp.nil? + min_compressor_temp = hp.backup_heating_switchover_temp + elsif not hp.compressor_lockout_temp.nil? + min_compressor_temp = hp.compressor_lockout_temp + end + # Check HP capacity if hp_sizing_methodology == HPXML::HeatPumpSizingACCA - hp_capacity_acca = htg_cap + hp_capacity_acca[hp_backup_sizing_methodology] = htg_cap + elsif hp_sizing_methodology == HPXML::HeatPumpSizingMaxLoad + hp_capacity_maxload[hp_backup_sizing_methodology] = htg_cap elsif hp_sizing_methodology == HPXML::HeatPumpSizingHERS next if hp.is_dual_fuel @@ -107,15 +137,45 @@ def test_hvac_configurations assert_in_delta(clg_cap, [htg_load, clg_load].max, 1.0) end end - elsif hp_sizing_methodology == HPXML::HeatPumpSizingMaxLoad - hp_capacity_maxload = htg_cap + end + + # Check HP backup capacity + if location == 'denver' && air_source_hp_types.include?(hp.heat_pump_type) && !htg_backup_cap.nil? + if hp_backup_sizing_methodology == HPXML::HeatPumpBackupSizingEmergency + hp_backup_capacity_emergency[hp_sizing_methodology] = htg_backup_cap + if hp.fraction_heat_load_served == 0 + assert_equal(0, htg_backup_cap) + else + assert_operator(htg_backup_cap, :>, 0) + end + elsif hp_backup_sizing_methodology == HPXML::HeatPumpBackupSizingSupplemental + hp_backup_capacity_supplemental[hp_sizing_methodology] = htg_backup_cap + if hp.fraction_heat_load_served == 0 + assert_equal(0, htg_backup_cap) + elsif hp_sizing_methodology == HPXML::HeatPumpSizingMaxLoad && min_compressor_temp <= autosized_bldg.header.manualj_heating_design_temp + assert_equal(0, htg_backup_cap) + else + assert_operator(htg_backup_cap, :>, 0) + end + end end end - next unless hpxml_bldg.heat_pumps.size == 1 + next if hpxml_bldg.heat_pumps.size != 1 + + # Check that MaxLoad >= ACCA for heat pump heating capacity + hp_capacity_maxload.keys.each do |hp_backup_sizing_methodology| + cap_maxload = hp_capacity_maxload[hp_backup_sizing_methodology] + cap_acca = hp_capacity_acca[hp_backup_sizing_methodology] + assert_operator(cap_maxload, :>=, cap_acca) + end - # Check that MaxLoad >= >= ACCA for heat pump heating capacity - assert_operator(hp_capacity_maxload, :>=, hp_capacity_acca) + # Check that Emergency >= Supplemental for heat pump backup heating capacity + hp_backup_capacity_emergency.keys.each do |hp_sizing_methodology| + cap_emergency = hp_backup_capacity_emergency[hp_sizing_methodology] + cap_supplemental = hp_backup_capacity_supplemental[hp_sizing_methodology] + assert_operator(cap_emergency, :>=, cap_supplemental) + end end end @@ -468,6 +528,82 @@ def get_unins_slab() assert_in_epsilon(1.04, f_factor, 0.01) end + def test_ground_loop + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + # Base case + hpxml, _hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(3, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(558.0 / 3, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + + # Bore depth greater than the max -> increase number of boreholes + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.18 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(5, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(2120.0 / 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + + # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.07 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(500.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + + # Boreholes greater than the max -> decrease the number of boreholes until the max + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.heat_pumps[0].cooling_capacity *= 5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(2340.0 / 10, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + end + + def test_g_function_library_linear_interpolation_example + bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + num_bore_holes = 40 + bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') + bore_depth = UnitConversions.convert(150.0, 'm', 'ft') + bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 + valid_bore_configs = HVACSizing.valid_bore_configs + g_functions_filename = valid_bore_configs[bore_config] + g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) + + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + + expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] + expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] + + expected_lntts.zip(actual_lntts).each do |v1, v2| + assert_in_epsilon(v1, v2, 0.01) + end + expected_gfnc_coeff.zip(actual_gfnc_coeff).each do |v1, v2| + assert_in_epsilon(v1, v2, 0.01) + end + end + + def test_all_g_function_configs_exist + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], + HPXML::GeothermalLoopBorefieldConfigurationC => [7, 9], + HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } + + valid_configs.each do |bore_config, valid_num_bores| + g_functions_filename = HVACSizing.valid_bore_configs[bore_config] + g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) + valid_num_bores.each do |num_bore_holes| + HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary + end + end + end + def _test_measure(args_hash) # create an instance of the measure measure = HPXMLtoOpenStudio.new diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb index b115b96ca9..28cb8e6626 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb @@ -13,6 +13,9 @@ def setup @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') @tmp_schedule_file_path = File.join(@sample_files_path, 'tmp.csv') + + @year = 2007 + @tol = 0.005 end def teardown @@ -28,11 +31,21 @@ def get_annual_equivalent_full_load_hrs(model, name) (model.getScheduleConstants + model.getScheduleRulesets + model.getScheduleFixedIntervals).each do |schedule| next if schedule.name.to_s != name - return Schedule.annual_equivalent_full_load_hrs(2007, schedule) + return Schedule.annual_equivalent_full_load_hrs(@year, schedule) end flunk "Could not find schedule '#{name}'." end + def get_available_hrs_ratio(unavailable_month_hrs, mults = '1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1') + # month_idx => unavailable_hrs + mults = mults.split(',').map { |i| i.to_f } + total_unavailable_hrs = 0.0 + unavailable_month_hrs.each do |unavailable_month, unavailable_hrs| + total_unavailable_hrs += unavailable_hrs * mults[unavailable_month] + end + return 1.0 - (total_unavailable_hrs / Constants.NumHoursInYear(@year)) + end + def test_default_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) @@ -49,17 +62,18 @@ def test_default_schedules assert_equal(schedule_files, model.getScheduleFiles.size) assert_equal(model.getSchedules.size, schedule_constants + schedule_rulesets + schedule_fixed_intervals + schedule_files) - assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321, get_annual_equivalent_full_load_hrs(model, 'lighting schedule'), 0.1) - assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) - assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) - assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) - assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) - assert_in_epsilon(5468, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) - assert_in_epsilon(2256, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) + assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), @tol) + assert_in_epsilon(3321, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), @tol) + assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), @tol) + assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), @tol) + assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), @tol) + assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), @tol) + assert_in_epsilon(5468, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), @tol) + assert_in_epsilon(2256, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), @tol) + assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), @tol) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) end def test_simple_schedules @@ -78,17 +92,18 @@ def test_simple_schedules assert_equal(schedule_files, model.getScheduleFiles.size) assert_equal(model.getSchedules.size, schedule_constants + schedule_rulesets + schedule_fixed_intervals + schedule_files) - assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) - assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) - assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) - assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) - assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) - assert_in_epsilon(5468, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) - assert_in_epsilon(2956, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) + assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), @tol) + assert_in_epsilon(3405, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), @tol) + assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), @tol) + assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), @tol) + assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), @tol) + assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), @tol) + assert_in_epsilon(5468, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), @tol) + assert_in_epsilon(2956, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), @tol) + assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), @tol) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) end def test_simple_vacancy_schedules @@ -96,20 +111,20 @@ def test_simple_vacancy_schedules args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-vacancy.xml')) model, _hpxml, _hpxml_bldg = _test_measure(args_hash) - vacancy_hrs = 31.0 * 2.0 * 24.0 - occupied_ratio = (1.0 - vacancy_hrs / 8760.0) - - assert_in_epsilon(6020 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(2224 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) - assert_in_epsilon(2994 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) - assert_in_epsilon(4158 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) - assert_in_epsilon(4502 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) - assert_in_epsilon(5468 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) - assert_in_epsilon(2956 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) + unavailable_month_hrs = { 0 => 31.0 * 24.0, 11 => 31.0 * 24.0 } + + assert_in_epsilon(6020 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.OccupantsMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), @tol) + assert_in_epsilon(3405 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingInteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), @tol) + assert_in_epsilon(2763 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingExteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(2224 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.CookingRangeMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), @tol) + assert_in_epsilon(2994 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.DishwasherMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), @tol) + assert_in_epsilon(4158 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.ClothesWasherMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), @tol) + assert_in_epsilon(4502 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.ClothesDryerMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), @tol) + assert_in_epsilon(5468 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.PlugLoadsOtherMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), @tol) + assert_in_epsilon(2956 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.PlugLoadsTVMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), @tol) + assert_in_epsilon(4204 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.FixturesMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), @tol) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) end def test_simple_vacancy_year_round_schedules @@ -124,20 +139,18 @@ def test_simple_vacancy_year_round_schedules args_hash['hpxml_path'] = @tmp_hpxml_path model, _hpxml, _hpxml_bldg = _test_measure(args_hash) - vacancy_hrs = 8760.0 - occupied_ratio = (1.0 - vacancy_hrs / 8760.0) - - assert_in_epsilon(6020 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(2224 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) - assert_in_epsilon(2994 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) - assert_in_epsilon(4158 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) - assert_in_epsilon(4502 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) - assert_in_epsilon(5468 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) - assert_in_epsilon(2956 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule')) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule')) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule')) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) end def test_simple_power_outage_schedules @@ -145,52 +158,79 @@ def test_simple_power_outage_schedules args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-power-outage.xml')) model, _hpxml, _hpxml_bldg = _test_measure(args_hash) - outage_hrs = 31.0 * 1.0 * 24.0 - 15.0 - powered_ratio = (1.0 - outage_hrs / 8760.0) - - assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) - assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(2224 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) - assert_in_epsilon(2994 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) - assert_in_epsilon(4158 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) - assert_in_epsilon(4502 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) - assert_in_epsilon(5468 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) - assert_in_epsilon(2956 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) - assert_in_epsilon(8760 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), 0.1) + unavailable_month_hrs = { 6 => 31.0 * 24.0 - 15.0 } + + assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), @tol) + assert_in_epsilon(3405 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingInteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), @tol) + assert_in_epsilon(2763 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingExteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.RefrigeratorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(2224 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.CookingRangeMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), @tol) + assert_in_epsilon(2994 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.DishwasherMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), @tol) + assert_in_epsilon(4158 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.ClothesWasherMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), @tol) + assert_in_epsilon(4502 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.ClothesDryerMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), @tol) + assert_in_epsilon(5468 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.PlugLoadsOtherMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), @tol) + assert_in_epsilon(2956 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.PlugLoadsTVMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), @tol) + assert_in_epsilon(4204 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.FixturesMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), @tol) + assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) end def test_stochastic_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic.xml')) - model, _hpxml, _hpxml_bldg = _test_measure(args_hash) - - assert_equal(11, model.getScheduleFiles.size) + model, hpxml, hpxml_bldg = _test_measure(args_hash) schedule_file_names = [] model.getScheduleFiles.each do |schedule_file| schedule_file_names << "#{schedule_file.name}" end + assert_equal(11, schedule_file_names.size) + + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| + FilePath.check_path(sfp, + File.dirname(args_hash['hpxml_path']), + 'Schedules') + } + + sf = SchedulesFile.new(schedules_paths: schedules_paths, + year: @year, + unavailable_periods: hpxml.header.unavailable_periods, + output_path: @tmp_schedule_file_path) + assert(schedule_file_names.include?(SchedulesFile::ColumnOccupants)) + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnLightingInterior)) - assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingExterior)) - assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingGarage)) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingExterior)) + assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingExteriorHoliday)) assert(!schedule_file_names.include?(SchedulesFile::ColumnRefrigerator)) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnCookingRange)) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnDishwasher)) + assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnClothesWasher)) + assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnClothesDryer)) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) assert(!schedule_file_names.include?(SchedulesFile::ColumnCeilingFan)) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnPlugLoadsOther)) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnPlugLoadsTV)) - assert(schedule_file_names.include?(SchedulesFile::ColumnHotWaterClothesWasher)) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnHotWaterDishwasher)) + assert_in_epsilon(273, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert(schedule_file_names.include?(SchedulesFile::ColumnHotWaterClothesWasher)) + assert_in_epsilon(346, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) assert(schedule_file_names.include?(SchedulesFile::ColumnHotWaterFixtures)) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) + assert(!schedule_file_names.include?(SchedulesFile::ColumnSleeping)) + assert(!schedule_file_names.include?('Vacancy')) + assert(!schedule_file_names.include?('Power Outage')) end def test_stochastic_vacancy_schedules @@ -204,39 +244,40 @@ def test_stochastic_vacancy_schedules 'Schedules') } - column_name = hpxml.header.unavailable_periods[0].column_name + unavailable_period = hpxml.header.unavailable_periods[0] + column_name = unavailable_period.column_name sf = SchedulesFile.new(schedules_paths: schedules_paths, - year: 2007, + year: @year, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) - vacancy_hrs = 31.0 * 2.0 * 24.0 - occupied_ratio = (1.0 - vacancy_hrs / 8760.0) - - assert_in_epsilon(6689 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(534 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + unavailable_month_hrs = { 0 => 31.0 * 24.0, 11 => 31.0 * 24.0 } + + assert_in_epsilon(6689 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2763 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingExteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) - assert_in_epsilon(vacancy_hrs, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) end def test_stochastic_vacancy_schedules2 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-vacancy.xml')) - model, hpxml, hpxml_bldg = _test_measure(args_hash) + _model, hpxml, _hpxml_bldg = _test_measure(args_hash) column_name = hpxml.header.unavailable_periods[0].column_name @@ -248,6 +289,10 @@ def test_stochastic_vacancy_schedules2 end_day: 28, natvent_availability: HPXML::ScheduleUnavailable) + XMLHelper.write_file(hpxml.to_doc(), @tmp_hpxml_path) + args_hash['hpxml_path'] = @tmp_hpxml_path + model, hpxml, hpxml_bldg = _test_measure(args_hash) + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), @@ -255,30 +300,37 @@ def test_stochastic_vacancy_schedules2 } sf = SchedulesFile.new(schedules_paths: schedules_paths, - year: 2007, + year: @year, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) - vacancy_hrs = ((31.0 * 2.0) + (28.0 * 1.0)) * 24.0 - occupied_ratio = (1.0 - vacancy_hrs / 8760.0) - - assert_in_epsilon(6689 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(534 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + hpxml.header.unavailable_periods.add(column_name: column_name, + begin_month: 12, + begin_day: 1, + end_month: 2, + end_day: 28) + unavailable_period = hpxml.header.unavailable_periods[-1] + + unavailable_month_hrs = { 0 => 31.0 * 24.0, 1 => 28.0 * 24.0, 11 => 31.0 * 24.0 } + + assert_in_epsilon(6689 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2763 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingExteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) - assert_in_epsilon(vacancy_hrs, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) end def test_stochastic_vacancy_year_round_schedules @@ -302,30 +354,28 @@ def test_stochastic_vacancy_year_round_schedules column_name = hpxml.header.unavailable_periods[0].column_name sf = SchedulesFile.new(schedules_paths: schedules_paths, - year: 2007, + year: @year, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) - vacancy_hrs = 8760.0 - occupied_ratio = (1.0 - vacancy_hrs / 8760.0) - - assert_in_epsilon(6689 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(534 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules)) + assert_equal(0, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule')) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules)) + assert_equal(0, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules)) + assert_in_epsilon(8760, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) - assert_in_epsilon(vacancy_hrs, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(Constants.NumHoursInYear(@year), sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), @tol) end def test_stochastic_power_outage_schedules @@ -339,40 +389,40 @@ def test_stochastic_power_outage_schedules 'Schedules') } - column_name = hpxml.header.unavailable_periods[0].column_name + unavailable_period = hpxml.header.unavailable_periods[0] + column_name = unavailable_period.column_name sf = SchedulesFile.new(schedules_paths: schedules_paths, - year: 2007, + year: @year, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) - outage_hrs = 31.0 * 2.0 * 24.0 - 15.0 - powered_ratio = (1.0 - outage_hrs / 8760.0) - - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(6673 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) - assert_in_epsilon(534 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(8760 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), 0.1) + unavailable_month_hrs = { 0 => 31.0 * 24.0 - 10.0, 11 => 31.0 * 24.0 - 5.0 } + + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2763 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingExteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.RefrigeratorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) - assert_in_epsilon(outage_hrs, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) end def test_stochastic_power_outage_schedules2 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-power-outage.xml')) - model, hpxml, hpxml_bldg = _test_measure(args_hash) + _model, hpxml, _hpxml_bldg = _test_measure(args_hash) column_name = hpxml.header.unavailable_periods[0].column_name @@ -385,6 +435,10 @@ def test_stochastic_power_outage_schedules2 end_day: 27, end_hour: 24) + XMLHelper.write_file(hpxml.to_doc(), @tmp_hpxml_path) + args_hash['hpxml_path'] = @tmp_hpxml_path + model, hpxml, hpxml_bldg = _test_measure(args_hash) + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), @@ -392,31 +446,38 @@ def test_stochastic_power_outage_schedules2 } sf = SchedulesFile.new(schedules_paths: schedules_paths, - year: 2007, + year: @year, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) - outage_hrs = ((31.0 * 2.0) + (28.0 * 1.0)) * 24.0 - 5.0 - powered_ratio = (1.0 - outage_hrs / 8760.0) - - assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) - assert_in_epsilon(5743, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) # this reflects only the first outage period because we aren't applying the measure again - assert_in_epsilon(534 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(213 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(134 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(151 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(3250 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(4840 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(298 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(325 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(887 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(7286, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), 0.1) # this reflects only the first outage period because we aren't applying the measure again + hpxml.header.unavailable_periods.add(column_name: column_name, + begin_month: 12, + begin_day: 1, + end_month: 2, + end_day: 27, + end_hour: 24) + unavailable_period = hpxml.header.unavailable_periods[-1] + + unavailable_month_hrs = { 0 => 31.0 * 24.0, 1 => 28.0 * 24.0 - 24.0, 11 => 31.0 * 24.0 - 5.0 } + + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2086 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(2763 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.LightingExteriorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), @tol) + assert_in_epsilon(6673 * get_available_hrs_ratio(unavailable_month_hrs, Schedule.RefrigeratorMonthlyMultipliers), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), @tol) + assert_in_epsilon(534 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(213 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(134 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(151 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(3250 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(4840 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(273 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(346 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(887 - sf.period_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, period: unavailable_period), sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), @tol) + assert_in_epsilon(8760 * get_available_hrs_ratio(unavailable_month_hrs), get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), @tol) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) - assert_in_epsilon(outage_hrs, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(unavailable_month_hrs.values.sum, sf.annual_equivalent_full_load_hrs(col_name: column_name, schedules: sf.tmp_schedules), 0.001) end def test_set_unavailable_periods_refrigerator diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb index e987b6d31c..eeb324bc0a 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb @@ -40,9 +40,9 @@ def test_run_period_1month begin_month, begin_day, end_month, end_day = get_run_period_month_and_days(model) assert_equal(2, begin_month) - assert_equal(1, begin_day) - assert_equal(2, end_month) - assert_equal(28, end_day) + assert_equal(15, begin_day) + assert_equal(3, end_month) + assert_equal(15, end_day) end def test_timestep_1hour diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb index 2b164bdc3c..fdd7af45b0 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb @@ -11,8 +11,6 @@ class HPXMLtoOpenStudioValidationTest < Minitest::Test def setup - OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) - @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') schema_path = File.absolute_path(File.join(@root_path, 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd')) @@ -70,7 +68,6 @@ def test_role_attributes_in_schematron_doc end def test_schema_schematron_error_messages - OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) # Test case => Error message all_expected_errors = { 'boiler-invalid-afue' => ['Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1'], 'clothes-dryer-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], @@ -108,6 +105,7 @@ def test_schema_schematron_error_messages 'furnace-invalid-afue' => ['Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1'], 'generator-number-of-bedrooms-served' => ['Expected NumberofBedroomsServed to be greater than ../../../../BuildingSummary/BuildingConstruction/NumberofBedrooms [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator[IsSharedSystem="true"], id: "Generator1"]'], 'generator-output-greater-than-consumption' => ['Expected AnnualConsumptionkBtu to be greater than AnnualOutputkWh*3412 [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator, id: "Generator1"]'], + 'heat-pump-backup-sizing' => ["Expected HeatPumpBackupSizingMethodology to be 'emergency' or 'supplemental'"], 'heat-pump-capacity-17f' => ['Expected HeatingCapacity17F to be less than or equal to HeatingCapacity'], 'heat-pump-lockout-temperatures' => ['Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature'], 'heat-pump-multiple-backup-systems' => ['Expected 0 or 1 element(s) for xpath: HeatPump/BackupSystem [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]'], @@ -116,11 +114,16 @@ def test_schema_schematron_error_messages 'hvac-distribution-return-duct-leakage-missing' => ['Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="CFM50" or Units="Percent") and TotalOrToOutside="to outside"] [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution[AirDistributionType[text()="regular velocity" or text()="gravity"]], id: "HVACDistribution1"]'], 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]', 'Expected sum(FractionCoolLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]'], + 'hvac-gshp-invalid-bore-config' => ["Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], + 'hvac-gshp-invalid-bore-depth-low' => ['Expected BoreholesOrTrenches/Length to be greater than or equal to 79 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], + 'hvac-gshp-invalid-bore-depth-high' => ['Expected BoreholesOrTrenches/Length to be less than or equal to 500 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], + 'hvac-gshp-autosized-count-not-rectangle' => ["Expected BoreholesOrTrenches/Count when extension/BorefieldConfiguration is not 'Rectangle' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], 'hvac-location-heating-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-cooling-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-heat-pump' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-msac-not-var-speed' => ["Expected CompressorType to be 'variable speed'"], 'hvac-mshp-not-var-speed' => ["Expected CompressorType to be 'variable speed'"], + 'hvac-shr-low' => ['Expected SensibleHeatFraction to be greater than 0.5'], 'hvac-sizing-humidity-setpoint' => ['Expected ManualJInputs/HumiditySetpoint to be less than 1'], 'hvac-negative-crankcase-heater-watts' => ['Expected extension/CrankcaseHeaterPowerWatts to be greater than or equal to 0.0.'], 'incomplete-integrated-heating' => ['Expected 1 element(s) for xpath: IntegratedHeatingSystemFractionHeatLoadServed'], @@ -130,6 +133,9 @@ def test_schema_schematron_error_messages 'invalid-battery-capacities-kwh' => ['Expected UsableCapacity to be less than NominalCapacity'], 'invalid-calendar-year-low' => ['Expected CalendarYear to be greater than or equal to 1600'], 'invalid-calendar-year-high' => ['Expected CalendarYear to be less than or equal to 9999'], + 'invalid-clothes-dryer-cef' => ["Element 'CombinedEnergyFactor': [facet 'minExclusive'] The value '0.0' must be greater than '0'."], + 'invalid-clothes-washer-imef' => ["Element 'IntegratedModifiedEnergyFactor': [facet 'minExclusive'] The value '0.0' must be greater than '0'."], + 'invalid-dishwasher-ler' => ["Element 'LabelElectricRate': [facet 'minExclusive'] The value '0.0' must be greater than '0'."], 'invalid-duct-area-fractions' => ['Expected sum(Ducts/FractionDuctArea) for DuctType="supply" to be 1 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution, id: "HVACDistribution1"]', 'Expected sum(Ducts/FractionDuctArea) for DuctType="return" to be 1 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution, id: "HVACDistribution1"]'], 'invalid-facility-type' => ['Expected 1 element(s) for xpath: ../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true"], id: "WaterHeatingSystem1"]', @@ -141,7 +147,8 @@ def test_schema_schematron_error_messages 'invalid-foundation-wall-properties' => ['Expected DepthBelowGrade to be less than or equal to Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall, id: "FoundationWall1"]', 'Expected DistanceToBottomOfInsulation to be greater than or equal to DistanceToTopOfInsulation [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"], id: "FoundationWall1Insulation"]', 'Expected DistanceToBottomOfInsulation to be less than or equal to ../../Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"], id: "FoundationWall1Insulation"]'], - 'invalid-ground-conductivity' => ['Expected extension/GroundConductivity to be greater than 0'], + 'invalid-ground-conductivity' => ['Expected Conductivity to be greater than 0'], + 'invalid-ground-diffusivity' => ['Expected extension/Diffusivity to be greater than 0'], 'invalid-heat-pump-capacity-retention' => ['Expected Fraction to be less than 1', 'Expected Temperature to be less than or equal to 17'], 'invalid-heat-pump-capacity-retention2' => ['Expected Fraction to be greater than or equal to 0'], @@ -182,6 +189,7 @@ def test_schema_schematron_error_messages 'invalid-number-of-conditioned-floors' => ['Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]'], 'invalid-number-of-units-served' => ['Expected NumberofUnitsServed to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true"], id: "WaterHeatingSystem1"]'], 'invalid-pilot-light-heating-system' => ['Expected 1 element(s) for xpath: ../../HeatingSystemFuel[text()!="electricity"]'], + 'invalid-soil-type' => ["Expected SoilType to be 'sand' or 'silt' or 'clay' or 'loam' or 'gravel' or 'unknown' [context: /HPXML/Building/BuildingDetails/BuildingSummary/Site/Soil, id: \"MyBuilding\"]"], 'invalid-shared-vent-in-unit-flowrate' => ['Expected RatedFlowRate to be greater than extension/InUnitFlowRate [context: /HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForWholeBuildingVentilation="true" and IsSharedSystem="true"], id: "VentilationFan1"]'], 'invalid-timestep' => ['Expected Timestep to be 60, 30, 20, 15, 12, 10, 6, 5, 4, 3, 2, or 1'], 'invalid-timezone-utcoffset-low' => ["Element 'UTCOffset': [facet 'minInclusive'] The value '-13.0' is less than the minimum value allowed ('-12')."], @@ -198,8 +206,8 @@ def test_schema_schematron_error_messages "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'"], 'manufactured-home-reference-floor' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', 'There must be at least one ceiling adjacent to "crawlspace - vented".'], - 'missing-capacity-detailed-performance' => ['Expected 1 element(s) for xpath: ../CoolingCapacity', - 'Expected 1 element(s) for xpath: ../HeatingCapacity'], + 'missing-capacity-detailed-performance' => ['Expected 1 element(s) for xpath: ../../../HeatingCapacity', + 'Expected 1 element(s) for xpath: ../../../CoolingCapacity'], 'missing-cfis-supplemental-fan' => ['Expected 1 element(s) for xpath: SupplementalFan'], 'missing-distribution-cfa-served' => ['Expected 1 element(s) for xpath: ../../../ConditionedFloorAreaServed [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[not(DuctSurfaceArea)], id: "Ducts2"]'], 'missing-duct-area' => ['Expected 1 or more element(s) for xpath: FractionDuctArea | DuctSurfaceArea [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[DuctLocation], id: "Ducts2"]'], @@ -211,7 +219,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'] } @@ -349,6 +357,9 @@ def test_schema_schematron_error_messages elsif ['generator-output-greater-than-consumption'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-misc-generators.xml') hpxml_bldg.generators[0].annual_consumption_kbtu = 1500 + elsif ['heat-pump-backup-sizing'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.header.heat_pump_backup_sizing_methodology = 'foobar' elsif ['heat-pump-capacity-17f'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity + 1000.0 @@ -381,6 +392,18 @@ def test_schema_schematron_error_messages hpxml_bldg.cooling_systems[0].primary_system = true hpxml_bldg.heat_pumps[-1].primary_heating_system = false hpxml_bldg.heat_pumps[-1].primary_cooling_system = false + elsif ['hvac-gshp-invalid-bore-config'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].bore_config = 'Invalid' + elsif ['hvac-gshp-invalid-bore-depth-low'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].bore_length = 78 + elsif ['hvac-gshp-invalid-bore-depth-high'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].bore_length = 501 + elsif ['hvac-gshp-autosized-count-not-rectangle'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil 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 @@ -396,6 +419,9 @@ def test_schema_schematron_error_messages elsif ['hvac-mshp-not-var-speed'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless.xml') hpxml_bldg.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeSingleStage + elsif ['hvac-shr-low'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.cooling_systems[0].cooling_shr = 0.4 elsif ['hvac-sizing-humidity-setpoint'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.header.manualj_humidity_setpoint = 50 @@ -423,6 +449,15 @@ def test_schema_schematron_error_messages elsif ['invalid-calendar-year-high'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml.header.sim_calendar_year = 20000 + elsif ['invalid-clothes-dryer-cef'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.clothes_dryers[0].combined_energy_factor = 0 + elsif ['invalid-clothes-washer-imef'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.clothes_washers[0].integrated_modified_energy_factor = 0 + elsif ['invalid-dishwasher-ler'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.dishwashers[0].label_electric_rate = 0 elsif ['invalid-duct-area-fractions'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-ducts-area-fractions.xml') hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area = nil @@ -444,6 +479,9 @@ def test_schema_schematron_error_messages elsif ['invalid-ground-conductivity'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.site.ground_conductivity = 0.0 + elsif ['invalid-ground-diffusivity'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.site.ground_diffusivity = 0.0 elsif ['invalid-heat-pump-capacity-retention'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil @@ -523,6 +561,9 @@ def test_schema_schematron_error_messages elsif ['invalid-pilot-light-heating-system'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-floor-furnace-propane-only.xml') hpxml_bldg.heating_systems[0].heating_system_fuel = HPXML::FuelTypeElectricity + elsif ['invalid-soil-type'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.site.soil_type = HPXML::SiteSoilTypeOther elsif ['invalid-shared-vent-in-unit-flowrate'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-mechvent.xml') hpxml_bldg.ventilation_fans[0].rated_flow_rate = 80 @@ -635,7 +676,6 @@ def test_schema_schematron_error_messages end def test_schema_schematron_warning_messages - OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) # Test case => Warning message all_expected_warnings = { 'battery-pv-output-power-low' => ['Max power output should typically be greater than or equal to 500 W.', 'Max power output should typically be greater than or equal to 500 W.', @@ -877,8 +917,8 @@ def test_schema_schematron_warning_messages def test_ruby_error_messages # Test case => Error message - all_expected_errors = { 'battery-bad-values-max-not-one' => ["Schedule max value for column 'battery' must be 1."], - 'battery-bad-values-min-not-neg-one' => ["Schedule min value for column 'battery' must be -1."], + all_expected_errors = { 'battery-bad-values-max-greater-than-one' => ["Schedule value for column 'battery' must be less than or equal to 1."], + 'battery-bad-values-min-less-than-neg-one' => ["Schedule value for column 'battery' must be greater than or equal to -1."], 'cfis-with-hydronic-distribution' => ["Attached HVAC distribution system 'HVACDistribution1' cannot be hydronic for ventilation fan 'VentilationFan1'."], 'cfis-invalid-supplemental-fan' => ["CFIS supplemental fan 'VentilationFan2' must be of type 'supply only' or 'exhaust only'."], 'cfis-invalid-supplemental-fan2' => ["CFIS supplemental fan 'VentilationFan2' must be set as used for whole building ventilation."], @@ -891,6 +931,7 @@ def test_ruby_error_messages 'emissions-wrong-columns' => ['Emissions File has too few columns. Cannot find column number'], 'emissions-wrong-filename' => ["Emissions File file path 'invalid-wrong-filename.csv' does not exist."], 'emissions-wrong-rows' => ['Emissions File has invalid number of rows'], + 'geothermal-loop-multiple-attached-hps' => ["Multiple heat pumps found attached to geothermal loop 'GeothermalLoop1'."], 'heat-pump-backup-system-load-fraction' => ['Heat pump backup system cannot have a fraction heat load served specified.'], 'hvac-cooling-detailed-performance-incomplete-pair' => ['Cooling detailed performance data for outdoor temperature = 82.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.', 'Cooling detailed performance data for outdoor temperature = 81.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.'], @@ -902,6 +943,7 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], + 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported."], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], @@ -911,11 +953,12 @@ def test_ruby_error_messages 'invalid-battery-capacity-units2' => ["UsableCapacity and NominalCapacity for Battery 'Battery1' must be in the same units."], 'invalid-datatype-boolean' => ["Element 'RadiantBarrier': 'FOOBAR' is not a valid value of the atomic type 'xs:boolean'"], 'invalid-datatype-integer' => ["Element 'NumberofBedrooms': '2.5' is not a valid value of the atomic type 'IntegerGreaterThanOrEqualToZero_simple'."], - 'invalid-datatype-float' => ["Cannot convert 'FOOBAR' to float for Slab/extension/CarpetFraction."], + 'invalid-datatype-float' => ["Cannot convert 'FOOBAR' to float for EmissionsScenario/EmissionsFactor[FuelType='electricity']/Value."], 'invalid-daylight-saving' => ['Daylight Saving End Day of Month (31) must be one of: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30.'], 'invalid-distribution-cfa-served' => ['The total conditioned floor area served by the HVAC distribution system(s) for heating is larger than the conditioned floor area of the building.', 'The total conditioned floor area served by the HVAC distribution system(s) for cooling is larger than the conditioned floor area of the building.'], 'invalid-epw-filepath' => ["foo.epw' could not be found."], + 'invalid-holiday-lighting-dates' => ['Exterior Holiday Lighting Begin Day of Month (31) must be one of: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30.'], 'invalid-id' => ["Element 'SystemIdentifier', attribute 'id': '' is not a valid value of the atomic type 'xs:ID'."], 'invalid-neighbor-shading-azimuth' => ['A neighbor building has an azimuth (145) not equal to the azimuth of any wall.'], 'invalid-relatedhvac-dhw-indirect' => ["RelatedHVACSystem 'HeatingSystem_bad' not found for water heating system 'WaterHeatingSystem1'"], @@ -930,6 +973,7 @@ def test_ruby_error_messages 'leap-year-TMY' => ['Specified a leap year (2008) but weather data has 8760 hours.'], 'net-area-negative-wall' => ["Calculated a negative net surface area for surface 'Wall1'."], 'net-area-negative-roof' => ["Calculated a negative net surface area for surface 'Roof1'."], + 'orphaned-geothermal-loop' => ["Geothermal loop 'GeothermalLoop1' found but no heat pump attached to it."], 'orphaned-hvac-distribution' => ["Distribution system 'HVACDistribution1' found but no HVAC system attached to it."], 'refrigerators-multiple-primary' => ['More than one refrigerator designated as the primary.'], 'refrigerators-no-primary' => ['Could not find a primary refrigerator.'], @@ -948,6 +992,7 @@ def test_ruby_error_messages 'storm-windows-unexpected-window-ufactor' => ['Unexpected base window U-Factor (0.33) for a storm window.'], 'unattached-cfis' => ["Attached HVAC distribution system 'foobar' not found for ventilation fan 'VentilationFan1'."], 'unattached-door' => ["Attached wall 'foobar' not found for door 'Door1'."], + 'unattached-gshp' => ["Attached geothermal loop 'foobar' not found for heat pump 'HeatPump1'."], 'unattached-hvac-distribution' => ["Attached HVAC distribution system 'foobar' not found for HVAC system 'HeatingSystem1'."], 'unattached-pv-system' => ["Attached inverter 'foobar' not found for pv system 'PVSystem1'."], 'unattached-skylight' => ["Attached roof 'foobar' not found for skylight 'Skylight1'."], @@ -969,13 +1014,13 @@ def test_ruby_error_messages puts "[#{i + 1}/#{all_expected_errors.size}] Testing #{error_case}..." building_id = nil # Create HPXML object - if ['battery-bad-values-max-not-one'].include? error_case + if ['battery-bad-values-max-greater-than-one'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-battery-scheduled.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][0] = 1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] - elsif ['battery-bad-values-min-not-neg-one'].include? error_case + elsif ['battery-bad-values-min-less-than-neg-one'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-battery-scheduled.xml') csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][0] = -1.1 @@ -1035,6 +1080,19 @@ def test_ruby_error_messages csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), scenario.elec_schedule_filepath)) File.write(@tmp_csv_path, csv_data[0..-2].map(&:to_csv).join) hpxml.header.emissions_scenarios[1].elec_schedule_filepath = @tmp_csv_path + elsif ['geothermal-loop-multiple-attached-hps'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.heat_pumps[0].fraction_cool_load_served = 0.5 + hpxml_bldg.heat_pumps[0].fraction_heat_load_served = 0.5 + hpxml_bldg.heat_pumps << hpxml_bldg.heat_pumps[0].dup + hpxml_bldg.heat_pumps[1].id = "HeatPump#{hpxml_bldg.heat_pumps.size}" + hpxml_bldg.heat_pumps[0].primary_heating_system = false + hpxml_bldg.heat_pumps[0].primary_cooling_system = false + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_cooling_dse: 1.0, + annual_heating_dse: 1.0) + hpxml_bldg.heat_pumps[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id elsif ['heat-pump-backup-system-load-fraction'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml') hpxml_bldg.heating_systems[0].fraction_heat_load_served = 0.5 @@ -1076,6 +1134,16 @@ def test_ruby_error_messages hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" hpxml_bldg.heating_systems[0].primary_system = false + elsif ['hvac-gshp-invalid-bore-depth-autosized'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.1 + elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].num_bore_holes = 5 + elsif ['hvac-gshp-invalid-num-bore-holes-autosized'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.heat_pumps[0].cooling_capacity *= 2 + hpxml_bldg.site.ground_conductivity = 0.08 elsif ['hvac-inconsistent-fan-powers'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.cooling_systems[0].fan_watts_per_cfm = 0.55 @@ -1112,11 +1180,12 @@ def test_ruby_error_messages hpxml_bldg.batteries[0].usable_capacity_kwh = 10.0 hpxml_bldg.batteries[0].usable_capacity_ah = nil elsif ['invalid-datatype-boolean'].include? error_case - hpxml, _hpxml_bldg = _create_hpxml('base.xml') + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.roofs[0].radiant_barrier = false elsif ['invalid-datatype-integer'].include? error_case hpxml, _hpxml_bldg = _create_hpxml('base.xml') elsif ['invalid-datatype-float'].include? error_case - hpxml, _hpxml_bldg = _create_hpxml('base.xml') + hpxml, _hpxml_bldg = _create_hpxml('base-misc-emissions.xml') elsif ['invalid-daylight-saving'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-simcontrol-daylight-saving-custom.xml') hpxml_bldg.dst_begin_month = 3 @@ -1129,6 +1198,12 @@ def test_ruby_error_messages elsif ['invalid-epw-filepath'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'foo.epw' + elsif ['invalid-holiday-lighting-dates'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-lighting-holiday.xml') + hpxml_bldg.lighting.holiday_period_begin_month = 11 + hpxml_bldg.lighting.holiday_period_begin_day = 31 + hpxml_bldg.lighting.holiday_period_end_month = 1 + hpxml_bldg.lighting.holiday_period_end_day = 15 elsif ['invalid-id'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') hpxml_bldg.skylights[0].id = '' @@ -1183,6 +1258,9 @@ def test_ruby_error_messages elsif ['net-area-negative-wall'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.windows[0].area = 1000 + elsif ['orphaned-geothermal-loop'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.heat_pumps[0].geothermal_loop_idref = nil elsif ['orphaned-hvac-distribution'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-furnace-gas-room-ac.xml') hpxml_bldg.heating_systems[0].delete @@ -1293,6 +1371,10 @@ def test_ruby_error_messages elsif ['unattached-door'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.doors[0].wall_idref = 'foobar' + elsif ['unattached-gshp'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.heat_pumps[0].geothermal_loop_idref = 'foobar' + hpxml_bldg.geothermal_loops[0].delete elsif ['unattached-hvac-distribution'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.heating_systems[0].distribution_system_idref = 'foobar' @@ -1326,25 +1408,21 @@ def test_ruby_error_messages hpxml, _hpxml_bldg = _create_hpxml('base-schedules-simple-vacancy.xml') hpxml.header.unavailable_periods[0].column_name = 'foobar' elsif ['unique-objects-vary-across-units-epw'].include? error_case - building_id = 'ALL' - hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-whole-building.xml', building_id: building_id) hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw' elsif ['unique-objects-vary-across-units-dst'].include? error_case - building_id = 'ALL' - hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-whole-building.xml', building_id: building_id) hpxml_bldg.dst_begin_month = 3 hpxml_bldg.dst_begin_day = 15 hpxml_bldg.dst_end_month = 10 hpxml_bldg.dst_end_day = 15 elsif ['unique-objects-vary-across-units-tmains'].include? error_case - building_id = 'ALL' - hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-whole-building.xml', building_id: building_id) hpxml_bldg.hot_water_distributions[0].dwhr_facilities_connected = HPXML::DWHRFacilitiesConnectedOne hpxml_bldg.hot_water_distributions[0].dwhr_equal_flow = true hpxml_bldg.hot_water_distributions[0].dwhr_efficiency = 0.55 elsif ['whole-mf-building-batteries'].include? error_case - building_id = 'ALL' - hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-whole-building.xml', building_id: building_id) hpxml_bldg.batteries.add(id: 'Battery1', type: HPXML::BatteryTypeLithiumIon) elsif ['whole-mf-building-dehumidifiers-unit-multiplier'].include? error_case @@ -1365,7 +1443,7 @@ def test_ruby_error_messages elsif ['invalid-datatype-integer'].include? error_case XMLHelper.get_element(hpxml_doc, '/HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction/NumberofBedrooms').inner_text = '2.5' elsif ['invalid-datatype-float'].include? error_case - XMLHelper.get_element(hpxml_doc, '/HPXML/Building/BuildingDetails/Enclosure/Slabs/Slab/extension/CarpetFraction').inner_text = 'FOOBAR' + XMLHelper.get_element(hpxml_doc, '/HPXML/SoftwareInfo/extension/EmissionsScenarios/EmissionsScenario/EmissionsFactor/Value').inner_text = 'FOOBAR' elsif ['invalid-schema-version'].include? error_case root = XMLHelper.get_element(hpxml_doc, '/HPXML') XMLHelper.add_attribute(root, 'schemaVersion', '2.3') @@ -1382,6 +1460,7 @@ def test_ruby_warning_messages 'duct-lto-cfm25' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], 'duct-lto-cfm50' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], 'duct-lto-percent' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], + 'hvac-gshp-bore-depth-autosized-high' => ['Reached a maximum of 10 boreholes; setting bore depth to the maximum (500 ft).'], 'hvac-setpoint-adjustments' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-setbacks' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-schedules' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], @@ -1499,6 +1578,9 @@ def test_ruby_warning_messages duct.duct_surface_area = nil duct.duct_location = nil end + elsif ['hvac-gshp-bore-depth-autosized-high'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.07 elsif ['hvac-setpoint-adjustments'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 76.0 diff --git a/resources/hpxml-measures/ReportSimulationOutput/measure.rb b/resources/hpxml-measures/ReportSimulationOutput/measure.rb index 0efbc0ce7b..b699eaa4ca 100644 --- a/resources/hpxml-measures/ReportSimulationOutput/measure.rb +++ b/resources/hpxml-measures/ReportSimulationOutput/measure.rb @@ -605,7 +605,7 @@ def run(runner, user_arguments) end # Retrieve outputs - outputs = get_outputs(runner, args, building_id) + outputs = get_outputs(runner, args) if not check_for_errors(runner, outputs) return false @@ -679,9 +679,9 @@ def get_timestamps(msgpackData, hpxml_header, hpxml_bldgs, args) return timestamps, timestamps_dst, timestamps_utc end - def get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_day_of_year, year) + def get_n_hours_per_period(timeseries_frequency, sim_start_day, sim_end_day, year) if timeseries_frequency == 'daily' - n_hours_per_period = [24] * (sim_end_day_of_year - sim_start_day_of_year + 1) + n_hours_per_period = [24] * (sim_end_day - sim_start_day + 1) elsif timeseries_frequency == 'monthly' n_days_per_month = Constants.NumDaysInMonths(year) n_days_per_period = n_days_per_month[@hpxml_header.sim_begin_month - 1..@hpxml_header.sim_end_month - 1] @@ -694,8 +694,8 @@ def get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_ def rollup_timeseries_output_to_daily_or_monthly(timeseries_output, timeseries_frequency, average = false) year = @hpxml_header.sim_calendar_year - sim_start_day_of_year, sim_end_day_of_year, _sim_start_hour, _sim_end_hour = get_sim_times_of_year(year) - n_hours_per_period = get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_day_of_year, year) + sim_start_day, sim_end_day, _sim_start_hour, _sim_end_hour = get_sim_times_of_year(year) + n_hours_per_period = get_n_hours_per_period(timeseries_frequency, sim_start_day, sim_end_day, year) fail 'Unexpected failure for n_hours_per_period calculations.' if n_hours_per_period.sum != timeseries_output.size ts_output = [] @@ -709,7 +709,7 @@ def rollup_timeseries_output_to_daily_or_monthly(timeseries_output, timeseries_f return ts_output end - def get_outputs(runner, args, building_id) + def get_outputs(runner, args) outputs = {} args = setup_timeseries_includes(@emissions, args) @@ -1105,7 +1105,7 @@ def sanitize_name(name) heated_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('heated_zones').get) heated_zones.each do |heated_zone| var_name = 'Temperature: Heating Setpoint' - if building_id == 'ALL' + if @hpxml_header.whole_sfa_or_mf_building_sim unit_num = @model.getThermalZones.find { |z| z.name.to_s == heated_zone }.spaces[0].buildingUnit.get.additionalProperties.getFeatureAsInteger('unit_num').get var_name = "Temperature: Unit#{unit_num} Heating Setpoint" end @@ -1119,7 +1119,7 @@ def sanitize_name(name) cooled_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('cooled_zones').get) cooled_zones.each do |cooled_zone| var_name = 'Temperature: Cooling Setpoint' - if building_id == 'ALL' + if @hpxml_header.whole_sfa_or_mf_building_sim unit_num = @model.getThermalZones.find { |z| z.name.to_s == cooled_zone }.spaces[0].buildingUnit.get.additionalProperties.getFeatureAsInteger('unit_num').get var_name = "Temperature: Unit#{unit_num} Cooling Setpoint" end @@ -1199,11 +1199,9 @@ def sanitize_name(name) # Use annual value for all hours hourly_elec_factors = [scenario.elec_value] * 8760 end - year = 1999 # Try non-leap year for calculations - sim_start_day_of_year, sim_end_day_of_year, sim_start_hour, sim_end_hour = get_sim_times_of_year(year) - hourly_elec_factors = hourly_elec_factors[sim_start_hour..sim_end_hour] # Calculate annual/timeseries emissions for each end use + do_trim = true @end_uses.each do |eu_key, end_use| fuel_type, _end_use_type = eu_key next unless fuel_type == FT::Elec @@ -1211,14 +1209,21 @@ def sanitize_name(name) hourly_elec = end_use.hourly_output - if hourly_elec.size == hourly_elec_factors[sim_start_hour..sim_end_hour].size + 24 - # Use leap-year for calculations - year = 2000 - sim_start_day_of_year, sim_end_day_of_year, sim_start_hour, sim_end_hour = get_sim_times_of_year(year) - # Duplicate Feb 28 Cambium values for Feb 29 - hourly_elec_factors = hourly_elec_factors[0..1415] + hourly_elec_factors[1392..1415] + hourly_elec_factors[1416..8759] + # Trim hourly electricity factors to the run period; do once. + if do_trim + do_trim = false + + year = 1999 # Try non-leap year for calculations + _sim_start_day, _sim_end_day, sim_start_hour, sim_end_hour = get_sim_times_of_year(year) + if hourly_elec.size == hourly_elec_factors[sim_start_hour..sim_end_hour].size + 24 + # Duplicate Feb 28 Cambium values for Feb 29 + hourly_elec_factors = hourly_elec_factors[0..1415] + hourly_elec_factors[1392..1415] + hourly_elec_factors[1416..8759] + # Use leap-year for calculations + year = 2000 + _sim_start_day, _sim_end_day, sim_start_hour, sim_end_hour = get_sim_times_of_year(year) + end + hourly_elec_factors = hourly_elec_factors[sim_start_hour..sim_end_hour] end - hourly_elec_factors = hourly_elec_factors[sim_start_hour..sim_end_hour] # Trim to sim period fail 'Unexpected failure for emissions calculations.' if hourly_elec_factors.size != hourly_elec.size @@ -1329,11 +1334,11 @@ def sanitize_name(name) end def get_sim_times_of_year(year) - sim_start_day_of_year = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_begin_month, @hpxml_header.sim_begin_day) - sim_end_day_of_year = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_end_month, @hpxml_header.sim_end_day) - sim_start_hour = (sim_start_day_of_year - 1) * 24 - sim_end_hour = sim_end_day_of_year * 24 - 1 - return sim_start_day_of_year, sim_end_day_of_year, sim_start_hour, sim_end_hour + sim_start_day = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_begin_month, @hpxml_header.sim_begin_day) + sim_end_day = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_end_month, @hpxml_header.sim_end_day) + sim_start_hour = (sim_start_day - 1) * 24 + sim_end_hour = sim_end_day * 24 - 1 + return sim_start_day, sim_end_day, sim_start_hour, sim_end_hour end def check_for_errors(runner, outputs) diff --git a/resources/hpxml-measures/ReportSimulationOutput/measure.xml b/resources/hpxml-measures/ReportSimulationOutput/measure.xml index 9154fd44f3..fcd2547d57 100644 --- a/resources/hpxml-measures/ReportSimulationOutput/measure.xml +++ b/resources/hpxml-measures/ReportSimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 report_simulation_output df9d170c-c21a-4130-866d-0d46b06073fd - be0a8583-ee3d-4ba1-b96a-5670a43777ae - 2023-11-17T15:16:05Z + 0d7ac76a-2f58-4799-8897-3f9489356f68 + 2024-01-25T16:08:21Z 9BF1E6AC ReportSimulationOutput HPXML Simulation Output Report @@ -1929,13 +1929,13 @@ measure.rb rb script - 86EC8E47 + 318063A9 test_report_sim_output.rb rb test - 637B509E + 54F83E1B diff --git a/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb b/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb index d670911f89..e0f2c477c9 100644 --- a/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb +++ b/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb @@ -924,8 +924,7 @@ def test_timeseries_hourly_zone_temperatures_mf_spaces end def test_timeseries_hourly_zone_temperatures_whole_mf_building - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-multiple-mf-units.xml'), - 'building_id' => 'ALL', + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-bldgtype-mf-whole-building.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', 'include_timeseries_zone_temperatures' => true } @@ -1192,14 +1191,15 @@ def test_timeseries_timestep_10min end def test_timeseries_hourly_runperiod_1month - expected_values = { 'hourly' => 28 * 24, - 'monthly' => 1 } + expected_values = { 'hourly' => 30 * 24, # Feb 15 - Mar 15, w/ leap day + 'monthly' => 2 } # Feb, Mar expected_values.each do |timeseries_frequency, expected_value| args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-simcontrol-runperiod-1-month.xml'), 'skip_validation' => true, 'timeseries_frequency' => timeseries_frequency, - 'include_timeseries_fuel_consumptions' => true } + 'include_timeseries_fuel_consumptions' => true, + 'include_timeseries_emission_fuels' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) diff --git a/resources/hpxml-measures/ReportUtilityBills/measure.rb b/resources/hpxml-measures/ReportUtilityBills/measure.rb index 64e8575308..9ba49acf1b 100644 --- a/resources/hpxml-measures/ReportUtilityBills/measure.rb +++ b/resources/hpxml-measures/ReportUtilityBills/measure.rb @@ -169,7 +169,7 @@ def energyPlusOutputRequests(runner, user_arguments) @hpxml_buildings = hpxml.buildings if @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates uses_unit_multipliers = @hpxml_buildings.select { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units > 1 }.size > 0 - if uses_unit_multipliers || (@hpxml_buildings.size > 1 && building_id == 'ALL') + if uses_unit_multipliers || (@hpxml_buildings.size > 1 && hpxml.header.whole_sfa_or_mf_building_sim) return result end end @@ -247,8 +247,11 @@ def run(runner, user_arguments) @hpxml_buildings = hpxml.buildings if @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates uses_unit_multipliers = @hpxml_buildings.select { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units > 1 }.size > 0 - if uses_unit_multipliers || @hpxml_buildings.size > 1 - runner.registerWarning('Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers or multiple Building elements.') + if uses_unit_multipliers + runner.registerWarning('Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers.') + return false + elsif @hpxml_buildings.size > 1 && hpxml.header.whole_sfa_or_mf_building_sim + runner.registerWarning('Cannot currently calculate utility bills based on detailed electric rates for a whole SFA/MF building simulation.') return false end end diff --git a/resources/hpxml-measures/ReportUtilityBills/measure.xml b/resources/hpxml-measures/ReportUtilityBills/measure.xml index 2f5cff8ec0..303eebdf99 100644 --- a/resources/hpxml-measures/ReportUtilityBills/measure.xml +++ b/resources/hpxml-measures/ReportUtilityBills/measure.xml @@ -3,8 +3,8 @@ 3.1 report_utility_bills ca88a425-e59a-4bc4-af51-c7e7d1e960fe - 00195856-fc00-4476-b601-ab53286b33cf - 2023-11-17T15:16:06Z + db22c147-7d2d-4ba8-b023-5d16ec2f39bf + 2024-01-25T17:00:07Z 15BF4E57 ReportUtilityBills Utility Bills Report @@ -142,7 +142,7 @@ measure.rb rb script - 4A038500 + 682BAC64 detailed_rates/Sample Flat Rate Min Annual Charge.json @@ -322,7 +322,7 @@ test_report_utility_bills.rb rb test - 07F2D0DB + E597FDF5 diff --git a/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb b/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb index ee375ad525..905ff1183f 100644 --- a/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb +++ b/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb @@ -378,7 +378,17 @@ def test_warning_detailed_rates_unit_multipliers hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-unit-multiplier.xml')) hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json') XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - expected_warnings = ['Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers or multiple Building elements.'] + expected_warnings = ['Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_detailed_rates_whole_sfa_mf_building + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-mf-whole-building.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Cannot currently calculate utility bills based on detailed electric rates for a whole SFA/MF building simulation.'] actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end diff --git a/resources/hpxml-measures/docs/source/workflow_inputs.rst b/resources/hpxml-measures/docs/source/workflow_inputs.rst index e41c7c7634..9dc45f7d80 100644 --- a/resources/hpxml-measures/docs/source/workflow_inputs.rst +++ b/resources/hpxml-measures/docs/source/workflow_inputs.rst @@ -80,17 +80,17 @@ HPXML Simulation Control EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/SimulationControl``. - ==================================== ======== ======= ============= ======== =========================== ===================================== - Element Type Units Constraints Required Default Description - ==================================== ======== ======= ============= ======== =========================== ===================================== - ``Timestep`` integer minutes Divisor of 60 No 60 (1 hour) Timestep - ``BeginMonth`` integer 1 - 12 [#]_ No 1 (January) Run period start date - ``BeginDayOfMonth`` integer 1 - 31 No 1 Run period start date - ``EndMonth`` integer 1 - 12 No 12 (December) Run period end date - ``EndDayOfMonth`` integer 1 - 31 No 31 Run period end date - ``CalendarYear`` integer > 1600 [#]_ No 2007 (for TMY weather) [#]_ Calendar year (for start day of week) - ``TemperatureCapacitanceMultiplier`` double > 0 No 1.0 Multiplier on air heat capacitance [#]_ - ==================================== ======== ======= ============= ======== =========================== ===================================== + ==================================== ======== ======= ================ ======== =========================== ===================================== + Element Type Units Constraints Required Default Description + ==================================== ======== ======= ================ ======== =========================== ===================================== + ``Timestep`` integer minutes Divisor of 60 No 60 (1 hour) Timestep + ``BeginMonth`` integer >= 1, <= 12 [#]_ No 1 (January) Run period start date + ``BeginDayOfMonth`` integer >= 1, <= 31 No 1 Run period start date + ``EndMonth`` integer >= 1, <= 12 No 12 (December) Run period end date + ``EndDayOfMonth`` integer >= 1, <= 31 No 31 Run period end date + ``CalendarYear`` integer > 1600 [#]_ No 2007 (for TMY weather) [#]_ Calendar year (for start day of week) + ``TemperatureCapacitanceMultiplier`` double > 0 No 1.0 Multiplier on air heat capacitance [#]_ + ==================================== ======== ======= ================ ======== =========================== ===================================== .. [#] BeginMonth/BeginDayOfMonth date must occur before EndMonth/EndDayOfMonth date (e.g., a run period from 10/1 to 3/31 is invalid). .. [#] If a leap year is specified (e.g., 2008), the EPW weather file must contain 8784 hours. @@ -110,7 +110,7 @@ If not entered, emissions will not be calculated. ================================ ======== ===== =========== ======== ======== ======================================================== ``Name`` string Yes Name of the scenario (which shows up in the output file) ``EmissionsType`` string See [#]_ Yes Type of emissions (e.g., CO2e) - ``EmissionsFactor`` element >= 1 See [#]_ Emissions factor(s) for a given fuel type + ``EmissionsFactor`` element See [#]_ Emissions factor(s) for a given fuel type; multiple are allowed ================================ ======== ===== =========== ======== ======== ======================================================== .. [#] EmissionsType can be anything. But if certain values are provided (e.g., "CO2e"), then some emissions factors can be defaulted as described further below. @@ -190,8 +190,8 @@ If not entered, utility bills will not be calculated. Element Type Units Constraints Required Default Notes ================================ ======== ===== =========== ======== ======== ======================================================== ``Name`` string Yes Name of the scenario (which shows up in the output file) - ``UtilityRate`` element >= 0 Utility rate(s) for a given fuel type - ``PVCompensation`` element <= 1 PV compensation information + ``UtilityRate`` element No Utility rate(s) for a given fuel type; multiple are allowed + ``PVCompensation`` element No PV compensation information ================================ ======== ===== =========== ======== ======== ======================================================== See :ref:`bill_outputs` for a description of how the calculated utility bills appear in the output files. @@ -314,12 +314,12 @@ If not entered, the simulation will not include unavailable periods. Element Type Units Constraints Required Default Description ==================================== ======== ======= ============= ======== ================ =========== ``ColumnName`` string Yes Column name associated with unavailable_periods.csv below - ``BeginMonth`` integer 1 - 12 Yes Begin month - ``BeginDayOfMonth`` integer 1 - 31 Yes Begin day - ``BeginHourOfDay`` integer 0 - 23 No 0 Begin hour - ``EndMonth`` integer 1 - 12 Yes End month - ``EndDayOfMonth`` integer 1 - 31 Yes End day - ``EndHourOfDay`` integer 1 - 24 No 24 End hour + ``BeginMonth`` integer >= 1, <= 12 Yes Begin month + ``BeginDayOfMonth`` integer >= 1, <= 31 Yes Begin day + ``BeginHourOfDay`` integer >= 0, <= 23 No 0 Begin hour + ``EndMonth`` integer >= 1, <= 12 Yes End month + ``EndDayOfMonth`` integer >= 1, <= 31 Yes End day + ``EndHourOfDay`` integer >= 1, <= 24 No 24 End hour ``NaturalVentilation`` string See [#]_ No regular schedule Natural ventilation availability ==================================== ======== ======= ============= ======== ================ =========== @@ -343,7 +343,7 @@ HPXML Building OpenStudio-HPXML can be used to model either individual residential :ref:`bldg_type_units` or :ref:`bldg_type_bldgs`. -Each residential dwelling unit is entered in ``/HPXML/Building``. +In either case, each residential dwelling unit is entered as a ``/HPXML/Building``. ========================= ====== ======= =========== ======== ======= ============================================== Element Type Units Constraints Required Default Notes @@ -356,34 +356,40 @@ Each residential dwelling unit is entered in ``/HPXML/Building``. Dwelling Units ************** -The OpenStudio-HPXML workflow was originally developed to model individual residential dwelling units -- either a single-family detached (SFD) building, or a single unit of a single-family attached (SFA) or multifamily (MF) building. +OpenStudio-HPXML was originally developed to model individual residential dwelling units -- either a single-family detached (SFD) building, or a single unit of a single-family attached (SFA) or multifamily (MF) building. This approach: - Is required/desired for certain applications (e.g., a Home Energy Score or an Energy Rating Index calculation). - Improves runtime speed by being able to simulate individual units in parallel (as opposed to simulating the entire building). -When modeling individual units of SFA/MF buildings, current capabilities include: - -- Defining surfaces adjacent to generic SFA/MF spaces (e.g., "other housing unit" or "other multifamily buffer space"), in which temperature profiles will be assumed (see :ref:`hpxmllocations`). -- Locating various building components (e.g., ducts, water heaters, appliances) in these SFA/MF spaces. -- Defining shared systems (HVAC, water heating, mechanical ventilation, etc.), in which individual systems are modeled with adjustments to approximate their energy use attributed to the unit. +For these simulations: -Note that only the energy use attributed to each dwelling unit is calculated. +- Surfaces can be defined adjacent to generic SFA/MF spaces (e.g., "other housing unit" or "other multifamily buffer space") with assumed temperature profiles (see :ref:`hpxmllocations`). +- Various building components (e.g., ducts, water heaters, appliances) can be located in these SFA/MF spaces. +- Shared systems (HVAC, water heating, mechanical ventilation, etc.) serving multiple dwelling units can be defined, in which these systems are approximated as individual systems with efficiency adjustments to estimate the energy use attributed to the unit. +- Energy use attributed only to the dwelling unit is calculated. .. _bldg_type_bldgs: Whole SFA/MF Buildings ********************** -As of OpenStudio-HPXML v1.7.0, a new capability was added for modeling whole SFA/MF buildings in a single combined simulation. +As of v1.7.0, OpenStudio-HPXML can model whole SFA/MF buildings in a single combined simulation. + +Modeling a whole SFA/MF building is defined in ``/HPXML/SoftwareInfo/extension``. + + ================================== ======== ===== =========== ======== ======== ======================================================== + Element Type Units Constraints Required Default Notes + ================================== ======== ===== =========== ======== ======== ======================================================== + ``WholeSFAorMFBuildingSimulation`` boolean No false Whether to run an individual dwelling unit or whole building for SFA/MF + ================================== ======== ===== =========== ======== ======== ======================================================== For these simulations: -- Each dwelling unit is described by a separate ``Building`` element in the HPXML file. -- To run the single combined simulation, specify the Building ID as 'ALL' in the run_simulation.rb script or OpenStudio workflow. - Unit multipliers (using the ``NumberofUnits`` element) can be specified to model *unique* dwelling units, rather than *all* dwelling units, reducing simulation runtime. - Adjacent SFA/MF common spaces are still modeled using assumed temperature profiles, not as separate thermal zones. - Shared systems are still modeled as individual systems, not shared systems connected to multiple dwelling unit. +- Energy use for the entire building is calculated. Notes/caveats about this approach: @@ -391,8 +397,6 @@ Notes/caveats about this approach: - Batteries are not currently supported. Dehumidifiers and ground-source heat pumps are only supported if ``NumberofUnits`` is 1. - Utility bill calculations using detailed rates are not supported. -Note that only the energy use for the entire building is calculated. - .. _buildingsite: HPXML Building Site @@ -417,12 +421,12 @@ Building site information can be entered in ``/HPXML/Building/Site``. If daylight saving time is observed, additional information can be specified in ``/HPXML/Building/Site/TimeZone/extension``. - ============================================ ======== ===== ================= ======== ============================= =========== - Element Type Units Constraints Required Default Description - ============================================ ======== ===== ================= ======== ============================= =========== - ``DSTBeginMonth`` and ``DSTBeginDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 3/12 (March 12) [#]_ Start date - ``DSTEndMonth`` and ``DSTEndDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 11/5 (November 5) End date - ============================================ ======== ===== ================= ======== ============================= =========== + ============================================ ======== ===== =========================== ======== ============================= =========== + Element Type Units Constraints Required Default Description + ============================================ ======== ===== =========================== ======== ============================= =========== + ``DSTBeginMonth`` and ``DSTBeginDayOfMonth`` integer >= 1, <= 12 and >= 1, <= 31 No EPW else 3/12 (March 12) [#]_ Start date + ``DSTEndMonth`` and ``DSTEndDayOfMonth`` integer >= 1, <= 12 and >= 1, <= 31 No EPW else 11/5 (November 5) End date + ============================================ ======== ===== =========================== ======== ============================= =========== .. [#] Daylight saving dates will be defined according to the EPW weather file header; if not available, fallback default values listed above will be used. @@ -441,23 +445,76 @@ Site information is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary ================================ ======== =========== =========== ======== ======== ============================================================ ``SiteType`` string See [#]_ No suburban Terrain type for infiltration model ``ShieldingofHome`` string See [#]_ No normal Presence of nearby buildings, trees, obstructions for infiltration model - ``extension/GroundConductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ - ``extension/Neighbors`` element >= 0 No Presence of neighboring buildings for solar shading + ``Soil/SoilType`` string See [#]_ No unknown Soil type + ``Soil/MoistureType`` string See [#]_ No mixed Soil moisture type + ``Soil/Conductivity`` double Btu/hr-ft-F > 0 No See [#]_ Soil thermal conductivity + ``Soil/extension/Diffusivity`` double ft2/hr > 0 No See [#]_ Soil thermal diffusivity + ``extension/Neighbors`` element No Presence of neighboring buildings for solar shading ================================ ======== =========== =========== ======== ======== ============================================================ .. [#] SiteType choices are "rural", "suburban", or "urban". .. [#] ShieldingofHome choices are "normal", "exposed", or "well-shielded". - .. [#] GroundConductivity used for foundation heat transfer and ground source heat pumps. + .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". + .. [#] MoistureType choices are "dry", "wet", or "mixed". + .. [#] If Conductivity not provided, defaults to Diffusivity / 0.0208 if Diffusivity provided, otherwise defaults based on SoilType and MoistureType: + + \- **unknown, dry/wet/mixed**: 1.0000 + + \- **sand/gravel, dry**: 0.2311 + + \- **sand, wet**: 1.3865 + + \- **sand, mixed**: 0.8088 + + \- **silt/clay, dry**: 0.2889 + + \- **silt/clay, wet**: 0.9821 + + \- **silt/clay, mixed**: 0.6355 + + \- **loam, dry/wet/mixed**: 1.2132 + + \- **gravel, wet**: 1.0399 + + \- **gravel, mixed**: 0.6355 + + .. [#] If Diffusivity not provided, defaults to Conductivity * 0.0208 if Conductivity provided, otherwise defaults based on SoilType and MoistureType: + + \- **unknown, dry/wet/mixed**: 0.0208 + + \- **sand/gravel, dry**: 0.0097 + + \- **sand, wet**: 0.0322 + + \- **sand, mixed**: 0.0210 + + \- **silt/clay, dry**: 0.0120 + + \- **silt/clay, wet**: 0.0194 + + \- **silt/clay, mixed**: 0.0157 + + \- **loam, dry/wet/mixed**: 0.0353 + + \- **gravel, wet**: 0.0291 + + \- **gravel, mixed**: 0.0194 + +.. note:: + + Default Conductivity and Diffusivity values based on SoilType/MoistureType provided by Table 1 of `Ground Thermal Diffusivity Calculation by Direct Soil Temperature Measurement. Application to very Low Enthalpy Geothermal Energy Systems `_ (with the exception of "unknown"). + Conductivity is used for foundation heat transfer and ground source heat pumps. + Diffusivity is used for ground source heat pumps. For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. - ============================== ================= ================ =================== ======== ======== ============================================= - Element Type Units Constraints Required Default Notes - ============================== ================= ================ =================== ======== ======== ============================================= - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction of neighbors (clockwise from North) - ``Distance`` double ft > 0 Yes Distance of neighbor from the dwelling unit - ``Height`` double ft > 0 No See [#]_ Height of neighbor - ============================== ================= ================ =================== ======== ======== ============================================= + ============================== ================= ================ ======================== ======== ======== ============================================= + Element Type Units Constraints Required Default Notes + ============================== ================= ================ ======================== ======== ======== ============================================= + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction of neighbors (clockwise from North) + ``Distance`` double ft > 0 Yes Distance of neighbor from the dwelling unit + ``Height`` double ft > 0 No See [#]_ Height of neighbor + ============================== ================= ================ ======================== ======== ======== ============================================= .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" The azimuth/orientation of the neighboring building must match the azimuth/orientation of at least one wall in the home, otherwise an error will be thrown. @@ -486,8 +543,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 *************************** @@ -518,8 +575,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 ~~~~~~~~~~~~~~~~~~~~~~ @@ -527,7 +591,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 ~~~~~~~~~~~~~~~~~~~~~~~~ @@ -538,44 +602,44 @@ They can be used to reflect real-world or stochastic occupancy. Detailed schedule inputs are provided via one or more CSV file that should be referenced in the HPXML file as ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/SchedulesFilePath`` elements. The column names available in the schedule CSV files are: - =============================== ===== ================================================================================= =============================== - Column Name Units Description Can Be Stochastically Generated - =============================== ===== ================================================================================= =============================== - ``occupants`` frac Occupant heat gain schedule. Yes - ``lighting_interior`` frac Interior lighting energy use schedule. Yes - ``lighting_exterior`` frac Exterior lighting energy use schedule. No - ``lighting_garage`` frac Garage lighting energy use schedule. Yes - ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No - ``cooking_range`` frac Cooking range & oven energy use schedule. Yes - ``refrigerator`` frac Primary refrigerator energy use schedule. No - ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No - ``freezer`` frac Freezer energy use schedule. No - ``dishwasher`` frac Dishwasher energy use schedule. Yes - ``clothes_washer`` frac Clothes washer energy use schedule. Yes - ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes - ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes - ``plug_loads_other`` frac Other plug load energy use schedule. Yes - ``plug_loads_tv`` frac Television plug load energy use schedule. Yes - ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. No - ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No - ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No - ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No - ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No - ``pool_pump`` frac Pool pump energy use schedule. No - ``pool_heater`` frac Pool heater energy use schedule. No - ``permanent_spa_pump`` frac Permanent spa pump energy use schedule. No - ``permanent_spa_heater`` frac Permanent spa heater energy use schedule. No - ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes - ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes - ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes - ``heating_setpoint`` F Thermostat heating setpoint schedule. No - ``cooling_setpoint`` F Thermostat cooling setpoint 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`` frac Battery schedule. Positive for charging, negative for discharging. No - ``vacancy`` 0/1 Vacancy schedule. 0=occupied, 1=vacant. Automatically overrides other columns. N/A - ``outage`` 0/1 Power outage schedule. 0=power. 1=nopower. Automatically overrides other columns. N/A - =============================== ===== ================================================================================= =============================== + =============================== ======= ================================================================================= =============================== + Column Name Units Description Can Be Stochastically Generated + =============================== ======= ================================================================================= =============================== + ``occupants`` frac Occupant heat gain schedule. Yes + ``lighting_interior`` frac Interior lighting energy use schedule. Yes + ``lighting_exterior`` frac Exterior lighting energy use schedule. No + ``lighting_garage`` frac Garage lighting energy use schedule. Yes + ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No + ``cooking_range`` frac Cooking range & oven energy use schedule. Yes + ``refrigerator`` frac Primary refrigerator energy use schedule. No + ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No + ``freezer`` frac Freezer energy use schedule. No + ``dishwasher`` frac Dishwasher energy use schedule. Yes + ``clothes_washer`` frac Clothes washer energy use schedule. Yes + ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes + ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes + ``plug_loads_other`` frac Other plug load energy use schedule. Yes + ``plug_loads_tv`` frac Television plug load energy use schedule. Yes + ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. No + ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No + ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No + ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No + ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No + ``pool_pump`` frac Pool pump energy use schedule. No + ``pool_heater`` frac Pool heater energy use schedule. No + ``permanent_spa_pump`` frac Permanent spa pump energy use schedule. No + ``permanent_spa_heater`` frac Permanent spa heater energy use schedule. No + ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes + ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes + ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes + ``heating_setpoint`` F Thermostat heating setpoint schedule. No + ``cooling_setpoint`` F Thermostat cooling setpoint 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 + ``vacancy`` 0/1 Vacancy schedule. 0=occupied, 1=vacant. Automatically overrides other columns. N/A + ``outage`` 0/1 Power outage schedule. 0=power. 1=nopower. Automatically overrides other columns. N/A + =============================== ======= ================================================================================= =============================== 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. @@ -593,6 +657,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 ~~~~~~~~~~~~~~~~~ @@ -607,18 +673,24 @@ HPXML HVAC Sizing Control HVAC equipment sizing controls are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/HVACSizingControl``. - ================================= ======== ===== =========== ======== ======== ============================================ - Element Type Units Constraints Required Default Description - ================================= ======== ===== =========== ======== ======== ============================================ - ``AllowIncreasedFixedCapacities`` boolean No false Logic for fixed capacity HVAC equipment [#]_ - ``HeatPumpSizingMethodology`` string See [#]_ No HERS Logic for autosized heat pumps [#]_ - ================================= ======== ===== =========== ======== ======== ============================================ + =================================== ======== ===== =========== ======== ========= ============================================ + Element Type Units Constraints Required Default Description + =================================== ======== ===== =========== ======== ========= ============================================ + ``HeatPumpSizingMethodology`` string See [#]_ No HERS Logic for autosized heat pumps [#]_ + ``HeatPumpBackupSizingMethodology`` string See [#]_ No emergency Logic for autosized heat pump backup [#]_ + ``AllowIncreasedFixedCapacities`` boolean No false Logic for fixed capacity HVAC equipment [#]_ + =================================== ======== ===== =========== ======== ========= ============================================ - .. [#] If AllowIncreasedFixedCapacities is true, the larger of user-specified fixed capacity and design load will be used (to reduce potential for unmet loads); otherwise user-specified fixed capacity is used. .. [#] HeatPumpSizingMethodology choices are 'ACCA', 'HERS', or 'MaxLoad'. .. [#] If HeatPumpSizingMethodology is 'ACCA', autosized heat pumps have their nominal capacity sized per ACCA Manual J/S based on cooling design loads, with some oversizing allowances for larger heating design loads. If HeatPumpSizingMethodology is 'HERS', autosized heat pumps have their nominal capacity sized equal to the larger of heating/cooling design loads. If HeatPumpSizingMethodology is 'MaxLoad', autosized heat pumps have their nominal capacity sized based on the larger of heating/cooling design loads, while taking into account the heat pump's reduced capacity at the design temperature. + .. [#] HeatPumpBackupSizingMethodology choices are 'emergency' or 'supplemental'. + .. [#] Heat pump backup capacity is often sized for emergency heat so that it can meet the entire design load if the heat pump fails. + Some contractors/homeowners may choose not to do so, perhaps due to insufficient panel/wiring capacity. + If HeatPumpBackupSizingMethodology is 'emergency', heat pump backup capacity will be autosized to meet the ACCA Manual J heating design load. + If HeatPumpBackupSizingMethodology is 'supplemental', heat pump backup capacity will be autosized to meet the remainder of the ACCA Manual J heating design load not met by the heat pump at the design temperature. + .. [#] If AllowIncreasedFixedCapacities is true, the larger of user-specified fixed capacity and design load will be used (to reduce potential for unmet loads); otherwise user-specified fixed capacity is used. If any HVAC equipment is being autosized (i.e., capacities are not provided), additional inputs for ACCA Manual J can be entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs``. @@ -629,7 +701,7 @@ If any HVAC equipment is being autosized (i.e., capacities are not provided), ad ``CoolingDesignTemperature`` double F No See [#]_ Cooling design temperature ``HeatingSetpoint`` double F No 70 Conditioned space heating setpoint [#]_ ``CoolingSetpoint`` double F No 75 Conditioned space cooling setpoint [#]_ - ``HumiditySetpoint`` double frac 0 - 1 No See [#]_ Conditioned space relative humidity + ``HumiditySetpoint`` double frac > 0, < 1 No See [#]_ Conditioned space relative humidity ``InternalLoadsSensible`` double Btu/hr No See [#]_ Sensible internal loads for cooling design load ``InternalLoadsLatent`` double Btu/hr No 0 Latent internal loads for cooling design load ``NumberofOccupants`` integer No #Beds+1 [#]_ Number of occupants for cooling design load @@ -660,10 +732,10 @@ The remainder of the year is winter. ==================================== ======== ======= ============= ======== ======= ===================================== Element Type Units Constraints Required Default Description ==================================== ======== ======= ============= ======== ======= ===================================== - ``SummerBeginMonth`` integer 1 - 12 Yes Summer shading start date - ``SummerBeginDayOfMonth`` integer 1 - 31 Yes Summer shading start date - ``SummerEndMonth`` integer 1 - 12 Yes Summer shading end date - ``SummerEndDayOfMonth`` integer 1 - 31 Yes Summer shading end date + ``SummerBeginMonth`` integer >= 1, <= 12 Yes Summer shading start date + ``SummerBeginDayOfMonth`` integer >= 1, <= 31 Yes Summer shading start date + ``SummerEndMonth`` integer >= 1, <= 12 Yes Summer shading end date + ``SummerEndDayOfMonth`` integer >= 1, <= 31 Yes Summer shading end date ==================================== ======== ======= ============= ======== ======= ===================================== HPXML Climate Zones @@ -870,28 +942,28 @@ 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``. - ====================================== ================= ================ ===================== ========= ============================== ================================== - Element Type Units Constraints Required Default Notes - ====================================== ================= ================ ===================== ========= ============================== ================================== - ``SystemIdentifier`` id Yes Unique identifier - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``Area`` double ft2 > 0 Yes Gross area (including skylights) - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ No See [#]_ Direction (clockwise from North) - ``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type - ``RoofColor`` or ``SolarAbsorptance`` string or double See [#]_ or 0 - 1 No medium Roof color or solar absorptance [#]_ - ``Emittance`` double 0 - 1 No 0.90 Emittance - ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material - ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness - ``Pitch`` integer ?:12 >= 0 Yes Pitch - ``RadiantBarrier`` boolean No false Presence of radiant barrier - ``RadiantBarrierGrade`` integer 1 - 3 No 1 Radiant barrier installation grade - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ - ====================================== ================= ================ ===================== ========= ============================== ================================== + ====================================== ================= ================ ======================== ========= ============================== ================================== + Element Type Units Constraints Required Default Notes + ====================================== ================= ================ ======================== ========= ============================== ================================== + ``SystemIdentifier`` id Yes Unique identifier + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``Area`` double ft2 > 0 Yes Gross area (including skylights) + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ No See [#]_ Direction (clockwise from North) + ``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type + ``RoofColor`` or ``SolarAbsorptance`` string or double See [#]_ or >= 0, <= 1 No medium Roof color or solar absorptance [#]_ + ``Emittance`` double >= 0, <= 1 No 0.90 Emittance + ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material + ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness + ``Pitch`` integer ?:12 >= 0 Yes Pitch + ``RadiantBarrier`` boolean No false Presence of radiant barrier [#]_ + ``RadiantBarrierGrade`` integer >= 1, <= 3 No 1 Radiant barrier installation grade + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ + ====================================== ================= ================ ======================== ========= ============================== ================================== .. [#] InteriorAdjacentTo choices are "attic - vented", "attic - unvented", "conditioned space", or "garage". See :ref:`hpxmllocations` for descriptions. @@ -922,27 +994,28 @@ For a multifamily building where the dwelling unit has another dwelling unit abo .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is conditioned space, otherwise "none". + .. [#] RadiantBarrier intended for attic roofs. Model assumes an emittance of 0.05. .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. 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``. - - ====================================== ================= ================ ===================== ======== =========== ============================== - Element Type Units Constraints Required Default Notes - ====================================== ================= ================ ===================== ======== =========== ============================== - ``SystemIdentifier`` id Yes Unique identifier - ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``Area`` double ft2 > 0 Yes Gross area - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ No See [#]_ Direction (clockwise from North) - ``Siding`` string See [#]_ No wood siding Siding material - ``Color`` or ``SolarAbsorptance`` string or double See [#]_ or 0 - 1 No medium Color or solar absorptance [#]_ - ``Emittance`` double 0 - 1 No 0.90 Emittance - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ - ====================================== ================= ================ ===================== ======== =========== ============================== +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 + ====================================== ================= ================ ======================== ======== =========== ============================== + ``SystemIdentifier`` id Yes Unique identifier + ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``Area`` double ft2 > 0 Yes Gross area + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ No See [#]_ Direction (clockwise from North) + ``Siding`` string See [#]_ No wood siding Siding material + ``Color`` or ``SolarAbsorptance`` string or double See [#]_ or >= 0, <= 1 No medium Color or solar absorptance [#]_ + ``Emittance`` double >= 0, <= 1 No 0.90 Emittance + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ + ====================================== ================= ================ ======================== ======== =========== ============================== .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. @@ -970,25 +1043,27 @@ 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``. - - ====================================== ================= ================ ===================== ============= =========== ==================================== - Element Type Units Constraints Required Default Notes - ====================================== ================= ================ ===================== ============= =========== ==================================== - ``SystemIdentifier`` id Yes Unique identifier - ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``WallType`` element 1 [#]_ Yes Wall type (for thermal mass) - ``Area`` double ft2 > 0 Yes Gross area (including doors/windows) - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ No See [#]_ Direction (clockwise from North) - ``Siding`` string See [#]_ No wood siding Siding material - ``Color`` or ``SolarAbsorptance`` string or double See [#]_ or 0 - 1 No medium Color or solar absorptance [#]_ - ``Emittance`` double 0 - 1 No 0.90 Emittance - ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material - ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ - ====================================== ================= ================ ===================== ============= =========== ==================================== +Each wall surface is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``. + + ====================================== ================= ================ ======================== ============= =========== ==================================== + Element Type Units Constraints Required Default Notes + ====================================== ================= ================ ======================== ============= =========== ==================================== + ``SystemIdentifier`` id Yes Unique identifier + ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``WallType`` element See [#]_ Yes Wall type (for thermal mass) + ``Area`` double ft2 > 0 Yes Gross area (including doors/windows) + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ No See [#]_ Direction (clockwise from North) + ``Siding`` string See [#]_ No wood siding Siding material + ``Color`` or ``SolarAbsorptance`` string or double See [#]_ or >= 0, <= 1 No medium Color or solar absorptance [#]_ + ``Emittance`` double >= 0, <= 1 No 0.90 Emittance + ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material + ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness + ``RadiantBarrier`` boolean No false Presence of radiant barrier [#]_ + ``RadiantBarrierGrade`` integer >= 1, <= 3 No 1 Radiant barrier installation grade + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ + ====================================== ================= ================ ======================== ============= =========== ==================================== .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. @@ -1014,33 +1089,34 @@ Each wall surface is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/W .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is conditioned space or basement - conditioned, otherwise "none". + .. [#] RadiantBarrier intended for attic gable walls. Model assumes an emittance of 0.05. .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. 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. - ============================================================== ================= ================ =================== ========= ============== ==================================== - Element Type Units Constraints Required Default Notes - ============================================================== ================= ================ =================== ========= ============== ==================================== - ``SystemIdentifier`` id Yes Unique identifier - ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type [#]_ - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``Type`` string See [#]_ No solid concrete Type of material - ``Height`` double ft > 0 Yes Total height - ``Area`` or ``Length`` double ft2 or ft > 0 Yes Gross area (including doors/windows) or length - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ No See [#]_ Direction (clockwise from North) - ``Thickness`` double in > 0 No 8.0 Thickness excluding interior framing - ``DepthBelowGrade`` double ft 0 - Height Yes Depth below grade [#]_ - ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material - ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/Layer[InstallationType="continuous - interior"]`` element 0 - 1 See [#]_ Interior insulation layer - ``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0 - 1 See [#]_ Exterior insulation layer - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 See [#]_ Assembly R-value [#]_ - ============================================================== ================= ================ =================== ========= ============== ==================================== + ============================================================== ================= ================ ======================== ========= ============== ==================================== + Element Type Units Constraints Required Default Notes + ============================================================== ================= ================ ======================== ========= ============== ==================================== + ``SystemIdentifier`` id Yes Unique identifier + ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type [#]_ + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``Type`` string See [#]_ No solid concrete Type of material + ``Height`` double ft > 0 Yes Total height + ``Area`` or ``Length`` double ft2 or ft > 0 Yes Gross area (including doors/windows) or length + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ No See [#]_ Direction (clockwise from North) + ``Thickness`` double in > 0 No 8.0 Thickness excluding interior framing + ``DepthBelowGrade`` double ft >= 0, <= Height Yes Depth below grade [#]_ + ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material + ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/Layer[InstallationType="continuous - interior"]`` element See [#]_ Interior insulation layer + ``Insulation/Layer[InstallationType="continuous - exterior"]`` element See [#]_ Exterior insulation layer + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 See [#]_ Assembly R-value [#]_ + ============================================================== ================= ================ ======================== ========= ============== ==================================== .. [#] ExteriorAdjacentTo choices are "ground", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. @@ -1078,7 +1154,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 @@ -1086,10 +1162,12 @@ Each floor/ceiling surface that is not in contact with the ground (Slab) nor adj ``SystemIdentifier`` id Yes Unique identifier ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``FloorType`` element 1 [#]_ Yes Floor type (for thermal mass) + ``FloorType`` element See [#]_ Yes Floor type (for thermal mass) ``Area`` double ft2 > 0 Yes Gross area ``InteriorFinish/Type`` string See [#]_ No See [#]_ Interior finish material ``InteriorFinish/Thickness`` double in >= 0 No 0.5 Interior finish thickness + ``RadiantBarrier`` boolean No false Presence of radiant barrier [#]_ + ``RadiantBarrierGrade`` integer >= 1, <= 3 No 1 Radiant barrier installation grade ``Insulation/SystemIdentifier`` id Yes Unique identifier ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ ====================================== ======== ============ =========== ======== ======== ============================ @@ -1101,11 +1179,9 @@ Each floor/ceiling surface that is not in contact with the ground (Slab) nor adj .. [#] FloorType child element choices are ``WoodFrame``, ``StructuralInsulatedPanel``, ``SteelFrame``, or ``SolidConcrete``. .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is conditioned space and the surface is a ceiling, otherwise "none". - .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior - air films, and insulation installation grade. For a manufactured home belly - where the area of the belly wrap is different and usually greater than the - floor area, the AssemblyEffectiveRValue should be adjusted to account for - the surface area of the belly wrap and insulation. + .. [#] RadiantBarrier intended for attic floors. Model assumes an emittance of 0.5 (reduced effectiveness due to accumulation of dust) per `an ORNL article on radiant barriers `_. + .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. + For a manufactured home belly where the area of the belly wrap is different and usually greater than the floor area, the AssemblyEffectiveRValue should be adjusted to account for the surface area of the belly wrap and insulation. For floors adjacent to "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space", additional information is entered in ``Floor``. @@ -1138,7 +1214,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation ``UnderSlabInsulation/Layer/InsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation ``UnderSlabInsulation/Layer/InsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab - ``extension/CarpetFraction`` double frac 0 - 1 No See [#]_ Fraction of slab covered by carpet + ``extension/CarpetFraction`` double frac >= 0, <= 1 No See [#]_ Fraction of slab covered by carpet ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value ======================================================= ======== ============ =========== ========= ======== ==================================================== @@ -1160,25 +1236,25 @@ 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``. - - ============================================ ================= ================ =================== ======== ========= ============================================================= - Element Type Units Constraints Required Default Notes - ============================================ ================= ================ =================== ======== ========= ============================================================= - ``SystemIdentifier`` id Yes Unique identifier - ``Area`` double ft2 > 0 Yes Total area - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction (clockwise from North) - ``UFactor`` and/or ``GlassLayers`` double or string Btu/F-ft2-hr > 0 or See [#]_ Yes Full-assembly NFRC U-factor or glass layers description - ``SHGC`` and/or ``GlassLayers`` double or string 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient or glass layers description - ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) [#]_ - ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque) - ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 0.70 [#]_ Interior summer shading coefficient (1=transparent, 0=opaque) - ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 0.85 [#]_ Interior winter shading coefficient (1=transparent, 0=opaque) - ``StormWindow/GlassType`` string See [#]_ No Type of storm window glass - ``Overhangs`` element 0 - 1 No Presence of overhangs (including roof eaves) - ``FractionOperable`` double frac 0 - 1 No 0.67 Operable fraction [#]_ - ``AttachedToWall`` idref See [#]_ Yes ID of attached wall - ============================================ ================= ================ =================== ======== ========= ============================================================= +Each window or glass door area is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Windows/Window``. + + ============================================ ================= ================ ======================== ======== ========= ============================================================= + Element Type Units Constraints Required Default Notes + ============================================ ================= ================ ======================== ======== ========= ============================================================= + ``SystemIdentifier`` id Yes Unique identifier + ``Area`` double ft2 > 0 Yes Total area + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction (clockwise from North) + ``UFactor`` and/or ``GlassLayers`` double or string Btu/F-ft2-hr > 0 or See [#]_ Yes Full-assembly NFRC U-factor or glass layers description + ``SHGC`` and/or ``GlassLayers`` double or string > 0, < 1 Yes Full-assembly NFRC solar heat gain coefficient or glass layers description + ``ExteriorShading/SummerShadingCoefficient`` double frac >= 0, <= 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) [#]_ + ``ExteriorShading/WinterShadingCoefficient`` double frac >= 0, <= 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/SummerShadingCoefficient`` double frac >= 0, <= 1 No 0.70 [#]_ Interior summer shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/WinterShadingCoefficient`` double frac >= 0, <= 1 No 0.85 [#]_ Interior winter shading coefficient (1=transparent, 0=opaque) + ``StormWindow/GlassType`` string See [#]_ No Type of storm window glass + ``Overhangs`` element No Presence of overhangs (including roof eaves) + ``FractionOperable`` double frac >= 0, <= 1 No 0.67 Operable fraction [#]_ + ``AttachedToWall`` idref See [#]_ Yes ID of attached wall + ============================================ ================= ================ ======================== ======== ========= ============================================================= .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north". .. [#] GlassLayers choices are "single-pane", "double-pane", "triple-pane", or "glass block". @@ -1195,7 +1271,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``. @@ -1204,7 +1280,7 @@ If operable windows are defined, the availability of natural ventilation is ente ============================================= ======== ========= =========== ======== ======== ======================================================== Element Type Units Constraints Required Default Notes ============================================= ======== ========= =========== ======== ======== ======================================================== - ``NaturalVentilationAvailabilityDaysperWeek`` integer days/week 0 - 7 No 3 [#]_ How often windows can be opened by occupants for natural ventilation + ``NaturalVentilationAvailabilityDaysperWeek`` integer days/week >= 0, <= 7 No 3 [#]_ How often windows can be opened by occupants for natural ventilation ============================================= ======== ========= =========== ======== ======== ======================================================== .. [#] Default of 3 days per week (Monday/Wednesday/Friday) is based on `2010 BAHSP `_. @@ -1272,23 +1348,23 @@ If overhangs are specified, additional information is entered in ``Overhangs``. HPXML Skylights *************** -Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``. - - ============================================ ================= ================ =================== ======== ========= ============================================================= - Element Type Units Constraints Required Default Notes - ============================================ ================= ================ =================== ======== ========= ============================================================= - ``SystemIdentifier`` id Yes Unique identifier - ``Area`` double ft2 > 0 Yes Total area - ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction (clockwise from North) - ``UFactor`` and/or ``GlassLayers`` double or string Btu/F-ft2-hr > 0 or See [#]_ Yes Full-assembly NFRC U-factor or glass layers description - ``SHGC`` and/or ``GlassLayers`` double or string 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient or glass layers description - ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) [#]_ - ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque) - ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Interior summer shading coefficient (1=transparent, 0=opaque) - ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Interior winter shading coefficient (1=transparent, 0=opaque) - ``StormWindow/GlassType`` string See [#]_ No Type of storm window glass - ``AttachedToRoof`` idref See [#]_ Yes ID of attached roof - ============================================ ================= ================ =================== ======== ========= ============================================================= +Each skylight is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``. + + ============================================ ================= ================ ======================== ======== ========= ============================================================= + Element Type Units Constraints Required Default Notes + ============================================ ================= ================ ======================== ======== ========= ============================================================= + ``SystemIdentifier`` id Yes Unique identifier + ``Area`` double ft2 > 0 Yes Total area + ``Azimuth`` or ``Orientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction (clockwise from North) + ``UFactor`` and/or ``GlassLayers`` double or string Btu/F-ft2-hr > 0 or See [#]_ Yes Full-assembly NFRC U-factor or glass layers description + ``SHGC`` and/or ``GlassLayers`` double or string > 0, < 1 Yes Full-assembly NFRC solar heat gain coefficient or glass layers description + ``ExteriorShading/SummerShadingCoefficient`` double frac >= 0, <= 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) [#]_ + ``ExteriorShading/WinterShadingCoefficient`` double frac >= 0, <= 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/SummerShadingCoefficient`` double frac >= 0, <= 1 No 1.00 Interior summer shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/WinterShadingCoefficient`` double frac >= 0, <= 1 No 1.00 Interior winter shading coefficient (1=transparent, 0=opaque) + ``StormWindow/GlassType`` string See [#]_ No Type of storm window glass + ``AttachedToRoof`` idref See [#]_ Yes ID of attached roof + ============================================ ================= ================ ======================== ======== ========= ============================================================= .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" .. [#] GlassLayers choices are "single-pane", "double-pane", or "triple-pane". @@ -1354,17 +1430,17 @@ 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 - ============================================ ================= ============ =================== ======== ========= ============================== - ``SystemIdentifier`` id Yes Unique identifier - ``AttachedToWall`` idref See [#]_ Yes ID of attached wall - ``Area`` double ft2 > 0 Yes Total area - ``Azimuth`` or ``Orientation`` integer or string deg 0 - 359 or See [#]_ No See [#]_ Direction (clockwise from North) - ``RValue`` double F-ft2-hr/Btu > 0 Yes R-value (including any storm door) - ============================================ ================= ============ =================== ======== ========= ============================== + ============================================ ================= ============ ======================== ======== ========= ============================== + Element Type Units Constraints Required Default Notes + ============================================ ================= ============ ======================== ======== ========= ============================== + ``SystemIdentifier`` id Yes Unique identifier + ``AttachedToWall`` idref See [#]_ Yes ID of attached wall + ``Area`` double ft2 > 0 Yes Total area + ``Azimuth`` or ``Orientation`` integer or string deg >= 0, <= 359 or See [#]_ No See [#]_ Direction (clockwise from North) + ``RValue`` double F-ft2-hr/Btu > 0 Yes R-value (including any storm door) + ============================================ ================= ============ ======================== ======== ========= ============================== .. [#] AttachedToWall must reference a ``Wall`` or ``FoundationWall``. .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" @@ -1413,149 +1489,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 1 [#]_ 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 + ================================================== ======= ====== ================== ======== ============== ========== + ``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. - ================================================== ====== ===== =========== ======== ======= ========== - Element Type Units Constraints Required Default Notes - ================================================== ====== ===== =========== ======== ======= ========== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency - ================================================== ====== ===== =========== ======== ======= ========== +.. _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: - ============================================================ ======== =========== =========== ======== ======== ========================= - 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 - ============================================================ ======== =========== =========== ======== ======== ========================= +Boiler (Shared) +~~~~~~~~~~~~~~~ + +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 @@ -1566,268 +1712,354 @@ 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: - ========================== ======== ====== =========== ======== ======== =============================== - 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 - ========================== ======== ====== =========== ======== ======== =============================== +- :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` - .. [#] 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" - - \- **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. +.. _hvac_cooling_central_ac: 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 - 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 No 50.0 Crankcase heater power - ================================================================ ======= =========== =========== ======== ============== =========================================================== +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 + ================================================================ ======= =========== ======================= ======== ============== =========================================================== - .. [#] 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 ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space" + + .. [#] 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 - 1 No 0.65 Sensible heat fraction - ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater - ``extension/CrankcaseHeaterPowerWatts`` double W 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 - ================================================================== ====== ====== =========== ======== ============== ============================================ - ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity of integrated heater - ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency of integrated heater - ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served - ================================================================== ====== ====== =========== ======== ============== ============================================ + ================================================================== ====== ====== =============== ======== ============== ============================================ + Element Type Units Constraints Required Default Notes + ================================================================== ====== ====== =============== ======== ============== ============================================ + ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity of integrated heater + ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency of integrated heater + ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes 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. +.. _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 - 1 No 0.65 Sensible heat fraction - ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater - ``extension/CrankcaseHeaterPowerWatts`` double W 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 - ================================================================== ====== ====== =========== ======== ============== ============================================ - ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity of integrated heater - ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency of integrated heater - ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served - ================================================================== ====== ====== =========== ======== ============== ============================================ + ================================================================== ====== ====== =============== ======== ============== ============================================ + Element Type Units Constraints Required Default Notes + ================================================================== ====== ====== =============== ======== ============== ============================================ + ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity of integrated heater + ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency of integrated heater + ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes 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. +.. _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 - 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 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: +.. _hvac_cooling_shared_tower: -Cooling Tower -~~~~~~~~~~~~~ - -If a cooling tower 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 - ``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:: @@ -1838,71 +2070,69 @@ 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 - 1 No See [#]_ 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 + ``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 [#]_ ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_ ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ ``HeatingDetailedPerformanceData`` element No Heating detailed performance data [#]_ ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No See [#]_ Heating output capacity retention at cold temperature [#]_ ``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 No 50.0 Crankcase heater power + ``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. + .. [#] 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). @@ -1921,44 +2151,64 @@ 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 - 1 No 0.73 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 + ``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 [#]_ ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_ ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ ``HeatingDetailedPerformanceData`` element No Heating detailed performance data [#]_ ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No See [#]_ Heating output capacity retention at cold temperature [#]_ ``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 No 50.0 Crankcase heater power + ``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. + .. [#] 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. @@ -1967,116 +2217,151 @@ If a mini-split heat pump is specified, additional information is entered in ``H HeatingDetailedPerformanceData must also be provided. .. [#] If HeatingDetailedPerformanceData is provided, see :ref:`htg_detailed_perf_data`. 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) - + .. [#] If neither extension/HeatingCapacityRetention nor HeatingCapacity17F nor HeatingDetailedPerformanceData provided, heating capacity retention defaults to 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). Either input approach can be used, but not both. .. [#] 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 - 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 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 - 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 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``. - - =============================================== ======== ====== =========== ======== ============== ============================================== - Element Type Units Constraints Required Default Notes - =============================================== ======== ====== =========== ======== ============== ============================================== - ``IsSharedSystem`` boolean No false Whether it has a shared hydronic circulation loop [#]_ - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``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 - 1 No 0.73 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"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency - ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency - ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served - ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_ - ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_ - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed - ``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 [#]_ - =============================================== ======== ====== =========== ======== ============== ============================================== +Each ground-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 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 + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served + ``AttachedToGeothermalLoop`` idref See [#]_ No [#]_ ID of attached geothermal loop + ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_ + ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_ + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed + ``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 [#]_ + =============================================== ======== ====== =============== ======== ============== ============================================== + .. [#] 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. + .. [#] 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. .. [#] 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. @@ -2084,37 +2369,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``. +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 + =============================================== ======== ====== ================= ======== ============== ============================================== - =============================================== ======== ====== =========== ======== ============== ============================================== - 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 - =============================================== ======== ====== =========== ======== ============== ============================================== - - .. [#] 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 ~~~~~~ @@ -2146,7 +2450,7 @@ If a backup type of "integrated" is provided, additional information is entered Element Type Units Constraints Required Default Notes ============================================================================= ======== ====== =========== ======== ============== ========================================== ``BackupSystemFuel`` string See [#]_ Yes Integrated backup heating fuel type - ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0 - 1 Yes Integrated backup heating efficiency + ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Integrated backup heating efficiency ``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Integrated backup heating output capacity ============================================================================= ======== ====== =========== ======== ============== ========================================== @@ -2186,20 +2490,21 @@ Detailed Cooling Performance Data For air-source HVAC systems with detailed cooling performance data, two or more pairs of minimum/maximum capacity data are entered in ``CoolingDetailedPerformanceData/PerformanceDataPoint``. - ================================= ======== ====== =========== ======== ========= ========================================== - Element Type Units Constraints Required Default Notes - ================================= ======== ====== =========== ======== ========= ========================================== - ``OutdoorTemperature`` double F See [#]_ Yes Outdoor drybulb temperature - ``Capacity`` double Btu/hr Yes Cooling capacity at the specified outdoor temperature - ``CapacityDescription`` string See [#]_ Yes Whether the datapoint corresponds to minimum or maximum capacity - ``Efficiency[Units="COP"]/Value`` double W/W Yes Cooling efficiency at the specified outdoor temperature - ================================= ======== ====== =========== ======== ========= ========================================== + ============================================== ======== ============== =========== ======== ========= ========================================== + Element Type Units Constraints Required Default Notes + ============================================== ======== ============== =========== ======== ========= ========================================== + ``OutdoorTemperature`` double F See [#]_ Yes Outdoor drybulb temperature + ``Capacity`` or ``CapacityFractionOfNominal`` double Btu/hr or frac >= 0 Yes [#]_ Cooling capacity or capacity fraction at the specified outdoor temperature + ``CapacityDescription`` string See [#]_ Yes Whether the datapoint corresponds to minimum or maximum capacity + ``Efficiency[Units="COP"]/Value`` double W/W > 0 Yes Cooling efficiency at the specified outdoor temperature + ============================================== ======== ============== =========== ======== ========= ========================================== .. [#] One of the minimum/maximum datapoint pairs must occur at the 95F rated outdoor temperature condition. The other datapoint pairs can be at any temperature. + .. [#] If Capacity is provided, the nominal capacity (``CoolingCapacity``) must also be set in the parent object. .. [#] CapacityDescription choices are "minimum" and "maximum". -In addition, the parent object must provide the ``CoolingCapacity`` and the ``CompressorType`` must be set to "variable speed". +In addition, the ``CompressorType`` must be set to "variable speed" in the parent object. For heat pumps, :ref:`htg_detailed_perf_data` must also be provided. Note that when detailed cooling performance data is provided, some other inputs (like SEER) are ignored. @@ -2210,23 +2515,96 @@ Detailed Heating Performance Data For air-source HVAC systems with detailed heating performance data, two or more pairs of minimum/maximum capacity data are entered in ``HeatingDetailedPerformanceData/PerformanceDataPoint``. - ================================= ======== ====== =========== ======== ========= ========================================== - Element Type Units Constraints Required Default Notes - ================================= ======== ====== =========== ======== ========= ========================================== - ``OutdoorTemperature`` double F See [#]_ Yes Outdoor drybulb temperature - ``Capacity`` double Btu/hr Yes Heating capacity at the specified outdoor temperature - ``CapacityDescription`` string See [#]_ Yes Whether the datapoint corresponds to minimum or maximum capacity - ``Efficiency[Units="COP"]/Value`` double W/W Yes Heating efficiency at the specified outdoor temperature - ================================= ======== ====== =========== ======== ========= ========================================== + ============================================== ======== ============== =========== ======== ========= ========================================== + Element Type Units Constraints Required Default Notes + ============================================== ======== ============== =========== ======== ========= ========================================== + ``OutdoorTemperature`` double F See [#]_ Yes Outdoor drybulb temperature + ``Capacity`` or ``CapacityFractionOfNominal`` double Btu/hr or frac >= 0 Yes [#]_ Heating capacity or capacity fraction at the specified outdoor temperature + ``CapacityDescription`` string See [#]_ Yes Whether the datapoint corresponds to minimum or maximum capacity + ``Efficiency[Units="COP"]/Value`` double W/W > 0 Yes Heating efficiency at the specified outdoor temperature + ============================================== ======== ============== =========== ======== ========= ========================================== .. [#] One of the minimum/maximum datapoint pairs must occur at the 47F rated outdoor temperature condition. The other datapoint pairs can be at any temperature. + .. [#] If Capacity is provided, the nominal capacity (``HeatingCapacity``) must also be set in the parent object. .. [#] CapacityDescription choices are "minimum" and "maximum". -In addition, the parent object must provide the ``HeatingCapacity`` and the ``CompressorType`` must be set to "variable speed". +In addition, the ``CompressorType`` must be set to "variable speed" in the parent object. For heat pumps, :ref:`clg_detailed_perf_data` must also be provided. Note that when detailed cooling performance data is provided, some other inputs (like HSPF and HeatingCapacityRetention) are ignored. +.. _geothermal_loops: + +HPXML Geothermal Loops +********************** + +Each geothermal loop is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. + + ======================================== ================ =========== ================== ======== ============== =============================================== + Element Type Units Constraints Required Default Notes + ======================================== ================ =========== ================== ======== ============== =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``LoopConfiguration`` string vertical Yes Geothermal loop configuration + ``LoopFlow`` double gal/min > 0 No See [#]_ Water flow rate through the geothermal loop + ``BoreholesOrTrenches/Count`` integer >= 1, <= 10 No [#]_ See [#]_ Number of boreholes + ``BoreholesOrTrenches/Length`` double ft >= 79, <= 500 [#]_ No See [#]_ Length (i.e., average depth) of each borehole + ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes + ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 Borehole diameter + ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ + ``Pipe/Type`` or ``Pipe/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Pipe type or conductivity [#]_ + ``Pipe/Diameter`` double in See [#]_ No 1.25 Pipe diameter + ``Pipe/ShankSpacing`` double in > 0 No See [#]_ Center-to-center distance between two branches of a vertical U-tube + ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle Configuration of boreholes + ======================================== ================ =========== ================== ======== ============== =============================================== + + .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons, with a minimum of 3 gal/min. + .. [#] If extension/BorefieldConfiguration provided, and it is not **Rectangle**, a valid BoreholesOrTrenches/Count must also be provided: + + \- **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 + + \- **Open Rectangle**: 8 or 10 + + \- **C**: 7 or 9 + + \- **L**: 4, 5, 6, 7, 8, 9, or 10 + + \- **U**: 7, 9, or 10 + + \- **Lopsided U**: 6, 7, 8, 9, or 10 + + .. [#] BoreholesOrTrenches/Count calculated as the required total length of the ground heat exchanger (calculated during sizing) divided by BoreholesOrTrenches/Length if BoreholesOrTrenches/Length is provided, otherwise autosized by assuming 1 for every ton of ground source heat pump cooling capacity (max of 10). + .. [#] 79 ft is the minimum depth in the g-function library. + 500 ft is the maximum realistic depth to be used in residential applications. + .. [#] BoreholesOrTrenches/Length calculated as the required total length of the ground heat exchanger (calculated during sizing) divided by the total number of boreholes. + .. [#] Grout/Type choices are "standard" or "thermally enhanced". + .. [#] If Grout/Conductivity not provided, defaults based on Grout/Type: + + \- **standard**: 0.75 Btu/hr-ft-F + + \- **thermally enhanced**: 1.2 Btu/hr-ft-F + + .. [#] Pipe/Type choices are "standard" or "thermally enhanced". + .. [#] If Pipe/Conductivity not provided, defaults based on Pipe/Type: + + \- **standard**: 0.23 Btu/hr-ft-F + + \- **thermally enhanced**: 0.40 Btu/hr-ft-F + + .. [#] Pipe diameter must be either 0.75, 1.0, or 1.25. + .. [#] ShankSpacing defaults to sum of U-tube spacing (assumed to be 0.9661 in) and pipe outer diameter, where pipe outer diameter is assumed to be: + + \- **0.75 in pipe**: 1.050 in + + \- **1.0 in pipe**: 1.315 in + + \- **1.25 in pipe**: 1.660 in + + .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "C", "L", "U", or "Lopsided U". + +.. note:: + + For a given combination of ``extension/BorefieldConfiguration``, ``BoreholesOrTrenches/Count``, ``BoreholesOrTrenches/Spacing``, ``BoreholesOrTrenches/Length``, and ``BoreholesOrTrenches/Diameter`` g-function values are determined using the `G-Function Library `_ (from the Geothermal Data Repository). + .. _hvac_control: HPXML HVAC Control @@ -2252,14 +2630,20 @@ If a heating and/or cooling season is defined, additional information is entered =================== ======== ===== =========== ======== ======= =========== Element Type Units Constraints Required Default Description =================== ======== ===== =========== ======== ======= =========== - ``BeginMonth`` integer 1 - 12 Yes Begin month - ``BeginDayOfMonth`` integer 1 - 31 Yes Begin day - ``EndMonth`` integer 1 - 12 Yes End month - ``EndDayOfMonth`` integer 1 - 31 Yes End day + ``BeginMonth`` integer >= 1, <= 12 Yes Begin month + ``BeginDayOfMonth`` integer >= 1, <= 31 Yes Begin day + ``EndMonth`` integer >= 1, <= 12 Yes End month + ``EndDayOfMonth`` integer >= 1, <= 31 Yes End day =================== ======== ===== =========== ======== ======= =========== 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 ~~~~~~~~~~~~~ @@ -2283,7 +2667,7 @@ If there is a heating temperature setback, additional information is entered in ===================================== ======== ======== =========== ======== ========= ========================================= ``SetbackTempHeatingSeason`` double F Yes Heating setback temperature ``TotalSetbackHoursperWeekHeating`` integer hrs/week > 0 Yes Hours/week of heating temperature setback [#]_ - ``extension/SetbackStartHourHeating`` integer 0 - 23 No 23 (11pm) Daily setback start hour + ``extension/SetbackStartHourHeating`` integer >= 0, <= 23 No 23 (11pm) Daily setback start hour ===================================== ======== ======== =========== ======== ========= ========================================= .. [#] TotalSetbackHoursperWeekHeating is converted to hrs/day and modeled as a temperature setback every day starting at SetbackStartHourHeating. @@ -2295,11 +2679,13 @@ If there is a cooling temperature setup, additional information is entered in `` ===================================== ======== ======== =========== ======== ========= ========================================= ``SetupTempCoolingSeason`` double F Yes Cooling setup temperature ``TotalSetupHoursperWeekCooling`` integer hrs/week > 0 Yes Hours/week of cooling temperature setup [#]_ - ``extension/SetupStartHourCooling`` integer 0 - 23 No 9 (9am) Daily setup start hour + ``extension/SetupStartHourCooling`` integer >= 0, <= 23 No 9 (9am) Daily setup start hour ===================================== ======== ======== =========== ======== ========= ========================================= .. [#] TotalSetupHoursperWeekCooling is converted to hrs/day and modeled as a temperature setup every day starting at SetupStartHourCooling. +.. _hvac_control_hourly: + Hourly Inputs ~~~~~~~~~~~~~~~ @@ -2320,47 +2706,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``. +The following distribution system types can be modeled: - ============================== ======= ======= =========== ======== ========= ============================= - Element Type Units Constraints Required Default Notes - ============================== ======= ======= =========== ======== ========= ============================= - ``SystemIdentifier`` id Yes Unique identifier - ``DistributionSystemType`` element 1 [#]_ Yes Type of distribution system - ``ConditionedFloorAreaServed`` double ft2 > 0 See [#]_ Conditioned floor area served - ============================== ======= ======= =========== ======== ========= ============================= - - .. [#] 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 1 See [#]_ Supply duct leakage value - ``DuctLeakageMeasurement[DuctType="return"]`` element 1 See [#]_ Return duct leakage value - ``Ducts`` element >= 0 No Supply/return ducts [#]_ - ``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``. @@ -2445,19 +2828,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) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -2465,61 +2854,94 @@ 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 ============================================= ======= ======= =========== ======== ========= =================================================== - ``AnnualHeatingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for heating - ``AnnualCoolingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for cooling + ``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 `ASHRAE 62.2-2019 `_: + + Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + + where + + Qfan = required mechanical ventilation rate (cfm) + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + 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` + + .. [#] 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 `ASHRAE 62.2-2019 `_: - Qfan = Qtot - Φ*(Qinf * Aext) + Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) where @@ -2531,74 +2953,170 @@ If not entered, the simulation will not include mechanical ventilation. 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 + .. [#] 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_balanced: + +Balanced +~~~~~~~~ + +Each balanced (supply and exhaust) 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 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 + ============================================================================================= ======== ======= =========== ======== ========= ========================================= + + .. [#] 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 `_: - .. [#] 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 `_: + Qfan = Qtot - (Qinf * Aext) - \- **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm + where - \- **balanced**: 0.7 W/cfm + Qfan = required mechanical ventilation rate (cfm) - \- **central fan integrated supply**: 0.5 W/cfm + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) - \- **exhaust only" or "supply only**: 0.35 W/cfm - -**Exhaust/Supply Only** - -If a supply only or exhaust only system is specified, no additional information is entered. - -**Balanced** + 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` + + .. [#] If FanPower not provided, defaults to 0.7 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. -If a balanced system is specified, no additional information is entered. +.. _vent_fan_hrv: -**Heat Recovery Ventilator** +Heat Recovery Ventilator (HRV) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a heat 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 - ======================================================================== ====== ===== =========== ======== ======= ======================================= - ``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 `ASHRAE 62.2-2019 `_: + + Qfan = Qtot - (Qinf * Aext) + + where + + Qfan = required mechanical ventilation rate (cfm) + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + 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` + .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). - -**Energy Recovery Ventilator** - -If an energy recovery ventilator system is specified, additional information is entered in ``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 [#]_ - ======================================================================== ====== ===== =========== ======== ======= ======================================= - + .. [#] 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 `ASHRAE 62.2-2019 `_: + + Qfan = Qtot - (Qinf * Aext) + + where + + Qfan = required mechanical ventilation rate (cfm) + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + 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` + .. [#] 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** - -If a central fan integrated supply (CFIS) system is specified, additional information is entered in ``VentilationFan``. +.. _vent_fan_cfis: - ================================================ ====== ===== =========== ======== =============== ================================== - 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 `ASHRAE 62.2-2019 `_: + + Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + + where + + Qfan = required mechanical ventilation rate (cfm) + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + 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` + + .. [#] 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.5 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] 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. @@ -2609,17 +3127,20 @@ 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``. ============================ ======= ===== =========== ======== ======= ==================================================== Element Type Units Constraints Required Default Notes ============================ ======= ===== =========== ======== ======= ==================================================== - ``FractionRecirculation`` double frac 0 - 1 Yes Fraction of supply air that is recirculated [#]_ + ``FractionRecirculation`` double frac >= 0, <= 1 Yes Fraction of supply air that is recirculated [#]_ ``extension/InUnitFlowRate`` double cfm >= 0 [#]_ Yes Flow rate delivered to the dwelling unit - ``extension/PreHeating`` element 0 - 1 No Supply air preconditioned by heating equipment? [#]_ - ``extension/PreCooling`` element 0 - 1 No Supply air preconditioned by cooling equipment? [#]_ + ``extension/PreHeating`` element No Supply air preconditioned by heating equipment? [#]_ + ``extension/PreCooling`` element No Supply air preconditioned by cooling equipment? [#]_ ============================ ======= ===== =========== ======== ======= ==================================================== .. [#] 1-FractionRecirculation is assumed to be the fraction of supply air that is provided from outside. @@ -2628,49 +3149,49 @@ 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 ============================================== ======= ===== =========== ======== ======= ==================================================================== ``Fuel`` string See [#]_ Yes Pre-heating equipment fuel type ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-heating equipment annual COP - ``FractionVentilationHeatLoadServed`` double frac 0 - 1 Yes Fraction of ventilation heating load served by pre-heating equipment + ``FractionVentilationHeatLoadServed`` double frac >= 0, <= 1 Yes Fraction of ventilation heating load served by pre-heating equipment ============================================== ======= ===== =========== ======== ======= ==================================================================== .. [#] 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 ============================================== ======= ===== =========== ======== ======= ==================================================================== ``Fuel`` string See [#]_ Yes Pre-cooling equipment fuel type ``AnnualCoolingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-cooling equipment annual COP - ``FractionVentilationCoolLoadServed`` double frac 0 - 1 Yes Fraction of ventilation cooling load served by pre-cooling equipment + ``FractionVentilationCoolLoadServed`` double frac >= 0, <= 1 Yes Fraction of ventilation cooling load served by pre-cooling equipment ============================================== ======= ===== =========== ======== ======= ==================================================================== .. [#] 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 + ``HoursInOperation`` double hrs/day >= 0, <= 24 No See [#]_ Hours per day of operation ``FanLocation`` string See [#]_ Yes Location of the fan ``FanPower`` double W >= 0 No See [#]_ Fan power - ``extension/StartHour`` integer 0 - 23 No See [#]_ Daily start hour of operation + ``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. @@ -2679,21 +3200,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:: @@ -2705,57 +3226,58 @@ 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: - \- **IECC zones 1-3, excluding 3A**: "garage", "conditioned space" + \- **IECC zones 1-3**: "garage", "conditioned space" - \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" + \- **IECC zones 3-8, unknown**: "basement - unconditioned", "basement - conditioned", "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. @@ -2770,78 +3292,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 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**: "garage", "conditioned space" + + \- **IECC zones 3-8, unknown**: "basement - unconditioned", "basement - conditioned", "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**: "garage", "conditioned space" + + \- **IECC zones 3-8, unknown**: "basement - unconditioned", "basement - conditioned", "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**: "garage", "conditioned space" + + \- **IECC zones 3-8, unknown**: "basement - unconditioned", "basement - conditioned", "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**: "garage", "conditioned space" + + \- **IECC zones 3-8, unknown**: "basement - unconditioned", "basement - conditioned", "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 ~~~~~~~~~~~~~ @@ -2862,39 +3479,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 1 [#]_ 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 0 - 1 No Presence of drain water heat recovery device - ``extension/SharedRecirculation`` element 0 - 1 [#]_ 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 `_: @@ -2908,21 +3521,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". @@ -2951,23 +3571,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 ~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -2978,7 +3627,7 @@ If a drain water heat recovery (DWHR) device is specified, additional informatio ======================= ======= ===== =========== ======== ======== ========================================= ``FacilitiesConnected`` string See [#]_ Yes Specifies which facilities are connected ``EqualFlow`` boolean Yes Specifies how the DHWR is configured [#]_ - ``Efficiency`` double frac 0 - 1 Yes Efficiency according to CSA 55.1 + ``Efficiency`` double frac > 0, <= 1 Yes Efficiency according to CSA 55.1 ======================= ======= ===== =========== ======== ======== ========================================= .. [#] FacilitiesConnected choices are "one" or "all". @@ -3019,41 +3668,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. @@ -3063,26 +3708,30 @@ 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``. - - ================================================ ================= ================ =================== ======== ======== ============================== - Element Type Units Constraints Required Default Notes - ================================================ ================= ================ =================== ======== ======== ============================== - ``CollectorArea`` double ft2 > 0 Yes Area - ``CollectorLoopType`` string See [#]_ Yes Loop type - ``CollectorType`` string See [#]_ Yes System type - ``CollectorAzimuth`` or ``CollectorOrientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction panels face (clockwise from North) - ``CollectorTilt`` double deg 0 - 90 Yes Tilt relative to horizontal - ``CollectorRatedOpticalEfficiency`` double frac 0 - 1 Yes Rated optical efficiency [#]_ - ``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_ - ``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume - ``ConnectedTo`` idref See [#]_ Yes Connected water heater - ================================================ ================= ================ =================== ======== ======== ============================== +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 + ``CollectorAzimuth`` or ``CollectorOrientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction panels face (clockwise from North) + ``CollectorTilt`` double deg >= 0, <= 90 Yes Tilt relative to horizontal + ``CollectorRatedOpticalEfficiency`` double frac > 0, < 1 Yes Rated optical efficiency [#]_ + ``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_ + ``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume + ``ConnectedTo`` idref See [#]_ Yes Connected water heater + ================================================ ================= ================ ======================== ======== ======== ============================== .. [#] CollectorLoopType choices are "liquid indirect", "liquid direct", or "passive thermosyphon". .. [#] CollectorType choices are "single glazing black", "double glazing black", "evacuated tube", or "integrated collector storage". @@ -3100,21 +3749,21 @@ If not entered, the simulation will not include photovoltaics. Many of the inputs are adopted from the `PVWatts model `_. - ======================================================= ================= ================ =================== ======== ========= ============================================ - Element Type Units Constraints Required Default Notes - ======================================================= ================= ================ =================== ======== ========= ============================================ - ``SystemIdentifier`` id Yes Unique identifier - ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units - ``Location`` string See [#]_ No roof Mounting location - ``ModuleType`` string See [#]_ No standard Type of module - ``Tracking`` string See [#]_ No fixed Type of tracking - ``ArrayAzimuth`` or ``ArrayOrientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction panels face (clockwise from North) - ``ArrayTilt`` double deg 0 - 90 Yes Tilt relative to horizontal - ``MaxPowerOutput`` double W >= 0 Yes Peak power - ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0 - 1 or > 1600 No 0.14 [#]_ System losses [#]_ - ``AttachedToInverter`` idref See [#]_ Yes ID of attached inverter - ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served - ======================================================= ================= ================ =================== ======== ========= ============================================ + ======================================================= ================= ================ ======================== ======== ========= ============================================ + Element Type Units Constraints Required Default Notes + ======================================================= ================= ================ ======================== ======== ========= ============================================ + ``SystemIdentifier`` id Yes Unique identifier + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units + ``Location`` string See [#]_ No roof Mounting location + ``ModuleType`` string See [#]_ No standard Type of module + ``Tracking`` string See [#]_ No fixed Type of tracking + ``ArrayAzimuth`` or ``ArrayOrientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction panels face (clockwise from North) + ``ArrayTilt`` double deg >= 0, <= 90 Yes Tilt relative to horizontal + ``MaxPowerOutput`` double W >= 0 Yes Peak power + ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # >= 0, <= 1 or > 1600 No 0.14 [#]_ System losses [#]_ + ``AttachedToInverter`` idref See [#]_ Yes ID of attached inverter + ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served + ======================================================= ================= ================ ======================== ======== ========= ============================================ .. [#] Location choices are "ground" or "roof" mounted. .. [#] ModuleType choices are "standard", "premium", or "thin film". @@ -3158,7 +3807,7 @@ In addition, an inverter must be entered as a ``/HPXML/Building/BuildingDetails/ Element Type Units Constraints Required Default Notes ======================================================= ================= ================ =================== ======== ======== ============================================ ``SystemIdentifier`` id Yes Unique identifier - ``InverterEfficiency`` double frac 0 - 1 [#]_ No 0.96 Inverter efficiency + ``InverterEfficiency`` double frac > 0, <= 1 [#]_ No 0.96 Inverter efficiency ======================================================= ================= ================ =================== ======== ======== ============================================ .. [#] For homes with multiple inverters, all InverterEfficiency elements must have the same value. @@ -3179,7 +3828,7 @@ If not entered, the simulation will not include batteries. ``UsableCapacity[Units="kWh" or Units="Ah"]/Value`` double kWh or Ah >= 0, < NominalCapacity No See [#]_ Usable capacity ``RatedPowerOutput`` double W >= 0 No See [#]_ Power output under non-peak conditions ``NominalVoltage`` double V >= 0 No 50 Nominal voltage - ``RoundTripEfficiency`` double frac 0 - 1 No 0.925 Round trip efficiency + ``RoundTripEfficiency`` double frac > 0, <= 1 No 0.925 Round trip efficiency ==================================================== ======= ========= ======================= ======== ======== ============================================ .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "attic - vented", "attic - unvented", "garage", or "outside". @@ -3193,7 +3842,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. @@ -3264,8 +3913,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``. @@ -3314,8 +3963,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 `_. @@ -3353,8 +4002,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``. @@ -3396,8 +4045,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:: @@ -3425,8 +4074,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:: @@ -3438,17 +4087,17 @@ HPXML Dehumidifier Each dehumidifier can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dehumidifier``. If not entered, the simulation will not include a dehumidifier. - ============================================== ========== ========== =========== ======== ======= ======================================== - Element Type Units Constraints Required Default Notes - ============================================== ========== ========== =========== ======== ======= ======================================== - ``SystemIdentifier`` id Yes Unique identifier - ``Type`` string See [#]_ Yes Type of dehumidifier - ``Location`` string See [#]_ Yes Location of dehumidifier - ``Capacity`` double pints/day > 0 Yes Dehumidification capacity - ``IntegratedEnergyFactor`` or ``EnergyFactor`` double liters/kWh > 0 Yes Rated efficiency - ``DehumidistatSetpoint`` double frac 0 - 1 [#]_ Yes Relative humidity setpoint - ``FractionDehumidificationLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of dehumidification load served - ============================================== ========== ========== =========== ======== ======= ======================================== + ============================================== ========== ========== =============== ======== ======= ======================================== + Element Type Units Constraints Required Default Notes + ============================================== ========== ========== =============== ======== ======= ======================================== + ``SystemIdentifier`` id Yes Unique identifier + ``Type`` string See [#]_ Yes Type of dehumidifier + ``Location`` string See [#]_ Yes Location of dehumidifier + ``Capacity`` double pints/day > 0 Yes Dehumidification capacity + ``IntegratedEnergyFactor`` or ``EnergyFactor`` double liters/kWh > 0 Yes Rated efficiency + ``DehumidistatSetpoint`` double frac >= 0, <= 1 [#]_ Yes Relative humidity setpoint + ``FractionDehumidificationLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of dehumidification load served + ============================================== ========== ========== =============== ======== ======= ======================================== .. [#] Type choices are "portable" or "whole-home". .. [#] Location only choice is "conditioned space". @@ -3482,8 +4131,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``. @@ -3510,14 +4159,14 @@ If no LightingGroup elements are provided for a given location (e.g., exterior), If specifying **lighting type fractions**, three ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements (one for each possible ``LightingType``) are entered for each lighting location: - ============================= ======= ====== =========== ======== ======= =========================================================================== - Element Type Units Constraints Required Default Notes - ============================= ======= ====== =========== ======== ======= =========================================================================== - ``SystemIdentifier`` id Yes Unique identifier - ``LightingType`` element 1 [#]_ Yes Lighting type - ``Location`` string See [#]_ Yes Lighting location [#]_ - ``FractionofUnitsInLocation`` double frac 0 - 1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type - ============================= ======= ====== =========== ======== ======= =========================================================================== + ============================= ======= ====== =============== ======== ======= =========================================================================== + Element Type Units Constraints Required Default Notes + ============================= ======= ====== =============== ======== ======= =========================================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``LightingType`` element See [#]_ Yes Lighting type + ``Location`` string See [#]_ Yes Lighting location [#]_ + ``FractionofUnitsInLocation`` double frac >= 0, <= 1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type + ============================= ======= ====== =============== ======== ======= =========================================================================== .. [#] LightingType child element choices are ``LightEmittingDiode``, ``CompactFluorescent``, or ``FluorescentTube``. .. [#] Location choices are "interior", "garage", or "exterior". @@ -3559,9 +4208,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``. @@ -3569,16 +4218,16 @@ If exterior holiday lighting is specified, additional information is entered in Element Type Units Constraints Required Default Notes =============================== ======= ======= =========== ======== ============= ============================================ ``Load[Units="kWh/day"]/Value`` double kWh/day >= 0 No See [#]_ Holiday lighting energy use per day - ``PeriodBeginMonth`` integer 1 - 12 No 11 (November) Holiday lighting start date - ``PeriodBeginDayOfMonth`` integer 1 - 31 No 24 Holiday lighting start date - ``PeriodEndMonth`` integer 1 - 12 No 1 (January) Holiday lighting end date - ``PeriodEndDayOfMonth`` integer 1 - 31 No 6 Holiday lighting end date + ``PeriodBeginMonth`` integer >= 1, <= 12 No 11 (November) Holiday lighting start date + ``PeriodBeginDayOfMonth`` integer >= 1, <= 31 No 24 Holiday lighting start date + ``PeriodEndMonth`` integer >= 1, <= 12 No 1 (January) Holiday lighting end date + ``PeriodEndDayOfMonth`` integer >= 1, <= 31 No 6 Holiday lighting end date ``WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated holiday weekday fractions ``WeekendScheduleFractions`` array No 24 comma-separated holiday weekend fractions =============================== ======= ======= =========== ======== ============= ============================================ .. [#] 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 ****************** @@ -3599,8 +4248,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 `_. @@ -3650,8 +4299,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 ~~~~~~~~~~~ @@ -3683,8 +4332,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 ******************** @@ -3724,8 +4373,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 ~~~~~~~~~~~~~~~~~~~~ @@ -3757,14 +4406,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 **************** @@ -3781,8 +4432,8 @@ If not entered, the simulation will not include that type of plug load. ``SystemIdentifier`` id Yes Unique identifier ``PlugLoadType`` string See [#]_ Yes Type of plug load ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Annual electricity consumption - ``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ - ``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space + ``extension/FracSensible`` double >= 0, <= 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ + ``extension/FracLatent`` double >= 0, <= 1 No See [#]_ Fraction that is latent heat gain to conditioned space ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on electricity use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions ``extension/WeekendScheduleFractions`` array No See [#]_ 24 comma-separated weekend fractions @@ -3823,7 +4474,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 `_) @@ -3833,7 +4484,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 `_) @@ -3843,7 +4494,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 `_) @@ -3853,6 +4504,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 **************** @@ -3868,8 +4521,8 @@ If not entered, the simulation will not include that type of fuel load. ``FuelLoadType`` string See [#]_ Yes Type of fuel load ``Load[Units="therm/year"]/Value`` double therm/yr >= 0 No See [#]_ Annual fuel consumption ``FuelType`` string See [#]_ Yes Fuel type - ``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ - ``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space + ``extension/FracSensible`` double >= 0, <= 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ + ``extension/FracLatent`` double >= 0, <= 1 No See [#]_ Fraction that is latent heat gain to conditioned space ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on fuel use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions @@ -3891,7 +4544,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"; @@ -3899,7 +4552,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/resources/hpxml-measures/tasks.rb b/resources/hpxml-measures/tasks.rb index 8eaa184e60..42cafe732f 100644 --- a/resources/hpxml-measures/tasks.rb +++ b/resources/hpxml-measures/tasks.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) + Dir["#{File.dirname(__FILE__)}/HPXMLtoOpenStudio/resources/*.rb"].each do |resource_file| next if resource_file.include? 'minitest_helper.rb' @@ -54,19 +56,15 @@ def create_hpxmls runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) num_apply_measures = 1 - if hpxml_path.include?('base-multiple-sfd-buildings') - num_apply_measures = 3 - elsif hpxml_path.include?('base-multiple-mf-units') + if hpxml_path.include?('base-bldgtype-mf-whole-building.xml') num_apply_measures = 6 end for i in 1..num_apply_measures measures['BuildResidentialHPXML'][0]['existing_hpxml_path'] = hpxml_path if i > 1 - if hpxml_path.include?('base-multiple-sfd-buildings') || hpxml_path.include?('base-multiple-mf-units') + if hpxml_path.include?('base-bldgtype-mf-whole-building.xml') suffix = "_#{i}" if i > 1 measures['BuildResidentialHPXML'][0]['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic#{suffix}.csv" - end - if hpxml_path.include?('base-multiple-mf-units') measures['BuildResidentialHPXML'][0]['geometry_foundation_type'] = (i <= 2 ? 'UnconditionedBasement' : 'AboveApartment') measures['BuildResidentialHPXML'][0]['geometry_attic_type'] = (i >= 5 ? 'VentedAttic' : 'BelowApartment') end @@ -96,7 +94,7 @@ def create_hpxmls end end - hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') + hpxml = HPXML.new(hpxml_path: hpxml_path) if hpxml_path.include? 'ASHRAE_Standard_140' apply_hpxml_modification_ashrae_140(hpxml) else @@ -258,266 +256,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 @@ -1580,33 +1318,9 @@ def apply_hpxml_modification(hpxml_file, hpxml) end end if hpxml_file.include? 'shared-ground-loop' - hpxml_bldg.heating_systems.reverse_each do |heating_system| - heating_system.delete - end - hpxml_bldg.cooling_systems.reverse_each do |cooling_system| - cooling_system.delete - end - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[-1].id, - heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 1, - fraction_cool_load_served: 1, - heating_efficiency_cop: 3.6, - cooling_efficiency_eer: 16.6, - heating_capacity: 12000, - cooling_capacity: 12000, - backup_heating_capacity: 12000, - cooling_shr: 0.73, - primary_heating_system: true, - primary_cooling_system: true, - pump_watts_per_ton: 0.0) - + hpxml_bldg.heat_pumps[0].is_shared_system = true + hpxml_bldg.heat_pumps[0].number_of_units_served = 6 + hpxml_bldg.heat_pumps[0].pump_watts_per_ton = 0.0 end if hpxml_file.include? 'eae' hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 500.0 @@ -1960,6 +1674,9 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil end + if hpxml_file.include? 'base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml' + hpxml_bldg.geothermal_loops[0].shank_spacing = 2.5 + end # ------------------ # # HPXML WaterHeating # @@ -2500,7 +2217,38 @@ def download_utility_rates exit! end -command_list = [:update_measures, :update_hpxmls, :create_release_zips, :download_utility_rates] +def download_g_functions + require_relative 'HPXMLtoOpenStudio/resources/data/g_functions/util' + + g_functions_dir = File.join(File.dirname(__FILE__), 'HPXMLtoOpenStudio/resources/data/g_functions') + FileUtils.mkdir(g_functions_dir) if !File.exist?(g_functions_dir) + filepath = File.join(g_functions_dir, 'g-function_library_1.0') + + if !File.exist?(filepath) # presence of 'g-function_library_1.0' folder will skip re-downloading + require 'tempfile' + tmpfile = Tempfile.new('functions') + + UrlResolver.fetch('https://gdr.openei.org/files/1325/g-function_library_1.0.zip', tmpfile) + + puts 'Extracting g-functions...' + require 'zip' + Zip::File.open(tmpfile.path.to_s) do |zipfile| + zipfile.each do |file| + fpath = File.join(g_functions_dir, file.name) + FileUtils.mkdir_p(File.dirname(fpath)) + zipfile.extract(file, fpath) unless File.exist?(fpath) + end + end + end + + num_configs_actual = process_g_functions(filepath) + + puts "#{num_configs_actual} config files are available in #{g_functions_dir}." + puts 'Completed.' + exit! +end + +command_list = [:update_measures, :update_hpxmls, :create_release_zips, :download_utility_rates, :download_g_functions] def display_usage(command_list) puts "Usage: openstudio #{File.basename(__FILE__)} [COMMAND]\nCommands:\n " + command_list.join("\n ") @@ -2575,16 +2323,26 @@ def display_usage(command_list) ENV['HOMEDRIVE'] = 'C:\\' if !ENV['HOMEDRIVE'].nil? && ENV['HOMEDRIVE'].start_with?('U:') # Create sample/test HPXMLs - OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) 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 download_utility_rates end +if ARGV[0].to_sym == :download_g_functions + download_g_functions +end + if ARGV[0].to_sym == :create_release_zips if ENV['CI'] # CI doesn't have git, so default to everything diff --git a/resources/hpxml-measures/workflow/hpxml_inputs.json b/resources/hpxml-measures/workflow/hpxml_inputs.json index 0aff071792..7c209ff13b 100644 --- a/resources/hpxml-measures/workflow/hpxml_inputs.json +++ b/resources/hpxml-measures/workflow/hpxml_inputs.json @@ -44,7 +44,8 @@ "roof_material_type": "asphalt or fiberglass shingles", "roof_color": "medium", "roof_assembly_r": 1.99, - "roof_radiant_barrier": false, + "radiant_barrier_grade": 2, + "radiant_barrier_attic_location": "none", "wall_type": "WoodStud", "wall_siding_type": "wood siding", "wall_color": "medium", @@ -408,7 +409,8 @@ "roof_material_type": "asphalt or fiberglass shingles", "roof_color": "medium", "roof_assembly_r": 2.3, - "roof_radiant_barrier": false, + "radiant_barrier_grade": 2, + "radiant_barrier_attic_location": "none", "wall_type": "WoodStud", "wall_siding_type": "wood siding", "wall_color": "medium", @@ -721,8 +723,12 @@ "sample_files/base-atticroof-radiant-barrier.xml": { "parent_hpxml": "sample_files/base-location-dallas-tx.xml", "ceiling_assembly_r": 8.7, - "roof_radiant_barrier": true, - "roof_radiant_barrier_grade": 2 + "radiant_barrier_grade": 2, + "radiant_barrier_attic_location": "Attic roof and gable walls" + }, + "sample_files/base-atticroof-radiant-barrier-ceiling.xml": { + "parent_hpxml": "sample_files/base-atticroof-radiant-barrier.xml", + "radiant_barrier_attic_location": "Attic floor" }, "sample_files/base-atticroof-unvented-insulated-roof.xml": { "parent_hpxml": "sample_files/base.xml", @@ -916,7 +922,26 @@ "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, "sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", + "heating_system_type": "none", + "heating_system_heating_efficiency": 0, + "heating_system_fraction_heat_load_served": 0, + "cooling_system_type": "none", + "cooling_system_cooling_efficiency": 0, + "cooling_system_fraction_cool_load_served": 0, + "heat_pump_type": "ground-to-air", + "heat_pump_heating_efficiency_type": "COP", + "heat_pump_heating_efficiency": 3.6, + "heat_pump_cooling_efficiency_type": "EER", + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_heating_capacity": 12000, + "heat_pump_cooling_capacity": 12000, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_backup_type": "integrated", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_backup_heating_capacity": 12000 }, "sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" @@ -1691,10 +1716,50 @@ "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-normalized-capacities.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", + "hvac_perf_data_capacity_type": "Normalized capacity fractions", + "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.12, 0.05", + "hvac_perf_data_heating_max_speed_capacities": "1.0, 0.69, 0.55", + "hvac_perf_data_cooling_min_speed_capacities": "0.325, 0.37", + "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.11" + }, + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", + "heat_pump_heating_capacity": null, + "heat_pump_cooling_capacity": null, + "hvac_perf_data_capacity_type": "Normalized capacity fractions", + "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.12, 0.05", + "hvac_perf_data_heating_max_speed_capacities": "1.0, 0.69, 0.55", + "hvac_perf_data_cooling_min_speed_capacities": "0.325, 0.37", + "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.11" }, "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", @@ -1775,7 +1840,20 @@ "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-only-var-speed-detailed-performance-autosize.xml": { + "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml", + "cooling_system_cooling_capacity": null, + "hvac_perf_data_capacity_type": "Normalized capacity fractions", + "hvac_perf_data_cooling_min_speed_capacities": "0.325, 0.37", + "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.11" }, "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", @@ -1995,6 +2073,21 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, + "sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_configuration": "vertical", + "geothermal_loop_borefield_configuration": "Lopsided U", + "geothermal_loop_loop_flow": 10.0, + "geothermal_loop_boreholes_count": 9, + "geothermal_loop_boreholes_length": 314.961, + "geothermal_loop_boreholes_spacing": 16.4042, + "geothermal_loop_boreholes_diameter": 5.905512, + "geothermal_loop_grout_type": "standard", + "geothermal_loop_pipe_type": "standard", + "geothermal_loop_pipe_diameter": "1\" pipe", + "site_ground_diffusivity": 0.03, + "site_soil_and_moisture_type": "sand, dry" + }, "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "heat_pump_heating_capacity": 0, @@ -2023,7 +2116,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", @@ -2085,7 +2180,20 @@ "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-air-conditioner-only-ductless-detailed-performance-autosize.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml", + "cooling_system_cooling_capacity": null, + "hvac_perf_data_capacity_type": "Normalized capacity fractions", + "hvac_perf_data_cooling_min_speed_capacities": "0.255, 0.28", + "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.033" }, "sample_files/base-hvac-mini-split-heat-pump-ducted.xml": { "parent_hpxml": "sample_files/base.xml", @@ -2121,7 +2229,28 @@ "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-detailed-performance-autosize.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml", + "heat_pump_heating_capacity": null, + "heat_pump_cooling_capacity": null, + "hvac_perf_data_capacity_type": "Normalized capacity fractions", + "hvac_perf_data_heating_min_speed_capacities": "0.26, 0.20, 0.18", + "hvac_perf_data_heating_max_speed_capacities": "1.33, 1.02, 0.91", + "hvac_perf_data_cooling_min_speed_capacities": "0.27, 0.28", + "hvac_perf_data_cooling_max_speed_capacities": "1.08, 1.16" }, "sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", @@ -2147,7 +2276,28 @@ "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-detailed-performance-autosize.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml", + "heat_pump_heating_capacity": null, + "heat_pump_cooling_capacity": null, + "hvac_perf_data_capacity_type": "Normalized capacity fractions", + "hvac_perf_data_heating_min_speed_capacities": "0.34, 0.21, 0.23", + "hvac_perf_data_heating_max_speed_capacities": "1.57, 1.21, 1.00", + "hvac_perf_data_cooling_min_speed_capacities": "0.29, 0.54", + "hvac_perf_data_cooling_max_speed_capacities": "1.18, 1.11" }, "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" @@ -2802,12 +2952,9 @@ "permanent_spa_heater_annual_kwh": 1300, "permanent_spa_heater_usage_multiplier": 0.9 }, - "sample_files/base-multiple-sfd-buildings.xml": { - "parent_hpxml": "sample_files/base.xml", - "clothes_dryer_present": false - }, - "sample_files/base-multiple-mf-units.xml": { + "sample_files/base-bldgtype-mf-whole-building.xml": { "parent_hpxml": "sample_files/base.xml", + "whole_sfa_or_mf_building_sim": true, "geometry_unit_type": "apartment unit", "geometry_unit_right_wall_is_adiabatic": true, "geometry_unit_cfa": 1200, @@ -2833,7 +2980,8 @@ "heating_system_type": "ElectricResistance", "heating_system_fuel": "electricity", "heating_system_heating_efficiency": 1, - "heating_system_heating_capacity": 12000 + "heating_system_heating_capacity": 12000, + "clothes_dryer_present": false }, "sample_files/base-pv.xml": { "parent_hpxml": "sample_files/base.xml", @@ -3059,7 +3207,14 @@ }, "sample_files/base-simcontrol-runperiod-1-month.xml": { "parent_hpxml": "sample_files/base.xml", - "simulation_control_run_period": "Feb 1 - Feb 28" + "weather_station_epw_filepath": "US_CO_Boulder_AMY_2012.epw", + "simulation_control_run_period": "Feb 15 - Mar 15", + "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA", + "emissions_types": "CO2e, CO2e, CO2e, SO2, NOx", + "emissions_electricity_units": "kg/MWh, kg/MWh, kg/MWh, lb/MWh, lb/MWh", + "emissions_electricity_values_or_filepaths": "../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv, ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv, 392.6, 0.384, 0.67", + "emissions_electricity_number_of_header_rows": "1, 1, , , ", + "emissions_electricity_column_numbers": "17, 17, , , " }, "sample_files/base-simcontrol-temperature-capacitance-multiplier.xml": { "parent_hpxml": "sample_files/base.xml", diff --git a/resources/hpxml-measures/workflow/run_simulation.rb b/resources/hpxml-measures/workflow/run_simulation.rb index 49234a9125..6998f615c9 100644 --- a/resources/hpxml-measures/workflow/run_simulation.rb +++ b/resources/hpxml-measures/workflow/run_simulation.rb @@ -142,7 +142,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri options[:ep_input_format] = t end - opts.on('-b', '--building-id ID', 'ID of Building to simulate (required when multiple HPXML Building elements); use "ALL" to simulate a single whole MF building') do |t| + opts.on('-b', '--building-id ID', 'ID of Building to simulate (required if the HPXML has multiple Building elements and WholeSFAorMFBuildingSimulation is not true)') do |t| options[:building_id] = t end diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml index 7971474013..1a1db0c16b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index 4ba0f20ae2..e830b9123e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 3ffd14212b..fcadd5267c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index 2da0810ea5..446754472f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml index 886b706c60..04b735d5c5 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml index a8f1f7eea1..4e82368ad7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml index d00ef07c4a..e8fb375bd6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml index 73483e67a0..9fcaedb1de 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml index 4c332e9dda..d6a7c24fb2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml index 145d84d2e1..ce6a0133a2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml b/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml index cf20c6c05f..41bc0d49d6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml b/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml index 4e395aba3e..00cbb06bc1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml @@ -111,7 +111,6 @@ gypsum board 6.0 - false 25.8 diff --git a/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml b/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml index 2c04f6ae07..a9451ba74d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml @@ -123,7 +123,6 @@ gypsum board 6.0 - false 25.8 diff --git a/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml b/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml index 999e03270e..60541cdc2b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml @@ -111,7 +111,6 @@ gypsum board 0.0 - false 25.8 diff --git a/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml b/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml index 8bca76565c..4070a5a8d3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -149,6 +149,8 @@ wood siding 0.7 0.92 + true + 2 4.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index 3f23eee57a..6f762035e8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 25.8 diff --git a/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml b/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml index 24852786b3..fafe248923 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml b/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml index d8210d7b41..7e6d9da5ff 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-battery.xml b/resources/hpxml-measures/workflow/sample_files/base-battery.xml index 027f643046..57ede7482b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-battery.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-battery.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml index 3b81e862bd..d2e6a2a74a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml index 1381e3c3ed..379f99953a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml index 7f94cf6830..021e45ea75 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml index 3afd0d039a..b3b49e44ca 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml index 51be7fb514..c77849f8c3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml index 80720daaa8..5e85a1139a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml index 7017e93dd6..bf11d6a925 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml @@ -46,6 +46,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml index 2d91a8d94e..b0f3ea0c5c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml index 680ead6ac3..278b0f1fc3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml index 2c8e3b9c6f..faa84591ca 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml index faece18536..abb4be9a27 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml index 7b90dea3f9..dbd94b2a2f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml index 9b65a799be..8619f46f38 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml index 9481274b03..85109407b6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml index 76e2aa9ce1..681c3ce554 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml index dd31ff9d56..c278bec0e7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml index 4d719eebde..21f1e8afc4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml index a3ffe05254..4e3360eabb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml index a9c22a159c..537c5a8b89 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml index 69908ee789..bd83c9208c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml index f53d681fb6..a8d7e39c48 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml index 5940628da0..0e50461042 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml index fdf8c11737..e4d1973cc1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml index 5dd99f431b..4917571473 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml index 223f5c2ee5..40d637aaba 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml index 6618c49e70..a022fbe60b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml index 8fdd9ceed7..07a380361e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml index d0ce84184d..0c48f80cd8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml index 0522bd4d60..ce8d8f4ee1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml index 4d74fdeb58..d1fdf62a89 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml index 16b6539e26..6651594568 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml index 41eda7c545..0acb382437 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml index ffa45500b9..bec5145aac 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml index 2d986a8faa..55726dab47 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml @@ -43,6 +43,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml index d86669adba..85c78c0ef8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml @@ -43,6 +43,7 @@ single-family attached + 3 3.0 2.0 8.0 @@ -117,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml index 0d8f04408b..e056b3479d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml @@ -43,6 +43,7 @@ single-family attached + 3 3.0 2.0 8.0 @@ -116,7 +117,6 @@ gypsum board 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml index 779b12a89c..8275c20311 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml @@ -43,6 +43,7 @@ single-family attached + 3 2.0 1.0 8.0 @@ -117,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml index 71e7907e7f..8418c4add9 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -43,6 +43,7 @@ single-family attached + 3 2.0 1.0 8.0 @@ -117,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml index 0182ebfd48..038031352e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml index 67befdf057..4c87424d75 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index 8a3c601faf..de58b4c225 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 1d63739556..6341bed98b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index b07ed278db..a9a6bb54b3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml index 22ed2a80d8..f5ce431571 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 840585a1af..3f1e774cb1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml index 12756ac67b..9fa0674e59 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml index 1c8a5a92b8..d3911a0e20 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml index cfe07902ee..41ac7e10d4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml index 7fd5ba8341..16a3f23993 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml index 66f8d8e875..df50265c12 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 5d9a39640e..bbe2a2b38e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index d04df58161..b9085eac42 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml index b990fa3a40..13c79a78dc 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml index fcc5f62f7f..483d7a1fd4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml index 420bc9d988..9848ea40f8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml index fe143b2622..6b8ed53bfe 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml index 0eec0a6a3b..3c6d9e56c7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml index feb01d95dc..9f6f7994ba 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml index c0f28123da..da2712ebd1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml index e2e6490da5..93aa3c12ba 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml index 588df816e5..96e849a7d9 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml index 16658f20d2..5466913e99 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml index 6f30c93705..e4c5e4f662 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml index 6c63078380..edb7b321c3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml index 61c9e9f45d..0513b99ece 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index 3a7b378c68..b001a57232 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index c9f74d539a..6012b847eb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml index bcbe63308b..dd37e8e439 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml index d21d4378b3..4687fd2720 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index ff0562a6b4..76d5e96271 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index 6a19197b10..1a91f93d41 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml index 815aeb2448..0d998bf9f3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index 461658f420..63a5dbe459 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml index ec842f0439..de8b0c664c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml index f10e104309..63bff7a177 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index 72a7f041c6..fd84b30e23 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml index eddbe809d6..3b2264790f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml index f8594f81a5..a6a98e6c6a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index 724db926d7..67d90a7248 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -117,7 +117,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index e776a3924d..2691334228 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index 7637816f03..8e1b22476d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index aada8eb6d0..d4fa2d27f0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index d824994356..3eafcd3e1d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index a5aa25f417..2558ccf275 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml index 1db92de68d..eb834b3e4e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index d20d400a2b..b5f2d4373e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index dd76bd3f70..028d57030d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml index a9c3c5cdc1..4c2f40a3dd 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml index 731b295bec..f03321a667 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index 5209dc1648..f6b183b6a2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml index 6f63e46cde..f93a2b2237 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml index 7aa3d3d79c..c1f89dc2c7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml index 4e11b22240..205b47702d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml index 80a2a25b1e..e50244f8b0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 7bb62a4171..44a50590d7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 444e72338b..c08621dc51 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml index 168f82b3a6..ebf2b67a4a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml index ed90eb22e1..b13df84ee2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml index c47d6ba006..8f2c288bb2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml index eedfcb5a5c..4f79507126 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml index 7a8d21c9fa..140b184715 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml index bfcd1d913d..f337dca553 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml index 9018d0dcad..d46e283a6d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml index 7776a2ef9c..0567b955cb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml index 3deb595908..0ad8be5a22 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -112,7 +112,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml index 83823f2555..7bd1f29da2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml @@ -107,7 +107,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml index 466600d9a4..5383660af9 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index 1308a615b7..749da0a62c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index eabbe6eee9..90bc436381 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml index 035e8e55c1..23da7907ff 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml index be1aa5591f..25c2793d3a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml index 7a7cc09e03..6ff461ec35 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 104b64e217..7ba0336bb3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -112,7 +112,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index e3c5e61647..328efa6deb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -112,7 +112,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml index fc83f98030..f01ec01470 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml index cd0e5d8532..4d8c41c110 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index d6c59d9ccf..d0997d98bb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml index 79f3bde137..6f7d1a08a1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml index f336b04f48..bad68c83a3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml index c44dc0f708..f62f550913 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml index 750bb14da1..c1fcb00b6c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml index 01d8a41890..570912e869 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml index bfe3fe1c88..5f8dd9db38 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml @@ -122,7 +122,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml index c895a63d90..d7cb536b68 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml index 204fbe62a2..2ae299e925 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml index ab9e194974..fced4bc10d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml index a3428d1696..fda3af67b5 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml @@ -121,7 +121,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml index 27789b6d4a..313edabbf7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml index 496a30068a..47de610446 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml index f408f6a124..c0e2872685 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml index 54494143f0..1f84fb094c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml index e757696d81..c9c07b070c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml @@ -111,7 +111,6 @@ 0.7 0.92 3.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml index 8f3e97d4c7..677bbdd684 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml @@ -111,7 +111,6 @@ 0.7 0.92 3.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml index 2796168dd9..216d0ff00e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml @@ -117,7 +117,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 89fe37461c..3a3c9aab16 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index ccb99512c8..ecfdab5df7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index 9f94b81042..b00a9274a8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index f85d59ed22..37c121d68c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml index 02c85091c9..6819e72b1e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml @@ -123,7 +123,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml index ac4570671f..969861e621 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 901ff85fd1..9294075fe3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index cc9a9060da..7c88ae5fd5 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 3d1db82367..edd11be596 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml index 99e403d349..7c5414961f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -115,7 +115,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml index 06b04d1b9e..a3d67bb819 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -115,7 +115,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml index ed7c6305c0..1ad843133f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -118,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml index 44aa229085..d0900e835e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -118,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml b/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml index 91e30fa238..e8318223fd 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml @@ -115,7 +115,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index 632cc0f6fe..8e479f045c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml index f6e6487169..1c5fbf9b8a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index 792372fb7d..b30825e478 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 0ee1820cd7..b39c872b1d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index a048aa4e8f..7b8aa4a5c6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index 7bc0cbeac4..a9d6be280e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 9cb3816917..cf55f5c4fb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml index ab7d77b261..4bb9e4cb48 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index 997e8bdd7b..63fe19801d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index b7409f97fc..0857eb82fb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index 51cfd95f17..78441492fa 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml index 88ea4f2d90..f338803cc4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index 02529c7474..6cd1dc3aff 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index 6ac2dfecce..2cf7b098ec 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml index bb6429077f..4a0561a9a6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml @@ -130,7 +130,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml index a8c504eac1..b49a6ee02d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml index bef3d009c8..36ecb038d4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml index b2e5229dc0..20898d899d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index 5303ba79e1..51760a70c1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml index be8f2312d6..4bd0a44f22 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml index e0aab7b1aa..802fb9f4db 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml index 80746e2d88..9fbe636161 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml index 26e9d82496..0d586e946b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml index 52eb48abae..a55112c934 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index 26ac1887f2..d09511ceef 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 4000f5adbb..90e19dd3d2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index e325cb5028..140ad6d590 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index 0bd7f8a7aa..ff131bd85f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index 2482616994..c132758ffa 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index b04bfa5f60..1c93890c3b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml index 63665af43f..9365d923af 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 8dc621d30e..b5160710a0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index 4c1a763209..e7a73efbea 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index 4cec3efed5..454e365a1c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index 1932be3339..9a6fefcbb3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index c915fcd150..555a19bc6b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml index 681de52288..04a0d35b24 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml index 335960ae99..0ecaed9d68 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml index 9d9ab5dccb..7424d76394 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml index f3150a7c1f..ce86805641 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml index 79ba84ff81..deb2a92672 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index 0d6c9aba7c..945a49aad5 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index eee8e92407..ae632ddd52 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml index c630a6fdf7..6ae4f066dc 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index 087809f3c5..a380127755 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index 6c9e809413..6097382137 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml index 98e3bf9185..90828e1ddb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml index 6686474409..feb232bbfc 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index d44460b3a4..1c19ccf107 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml index d6c37a4bbb..c8d343fc90 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index d4f75d3c75..97952f17e0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml index 70520b9ac4..f6678e190a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index e949c7e05a..f32af86dcb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index 611d46a889..da15d4e476 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index 25f56118b5..211d5feb53 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml index fdcb4585c8..e1c3842fe1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml index 8c40553c1c..730f4e1eff 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 54b4b5e92b..cc4a4a7bb7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml index e5c7406e92..3a8894af87 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml index 1d2a27d4e5..41db42476f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml index 2a5be07070..86a0c94dee 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 8bc11974c0..13b7d56839 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 861a9a80de..d77fcb8ddf 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index bd6cfffb31..eadbef110f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 713da1089d..4cec7aa870 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 083f12a5a9..59711d0f01 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index 6beb9369a7..ecd239d685 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index ba4d110d53..42dba79e82 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index e9facec276..edec193841 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index 13f3c8cbf3..89a2eee289 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index b70d6719fd..04556bd83b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index bc195cf9f9..670136298e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index 32083cbe7d..4f0e462c38 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index 4958f4f4d3..8ce720b2fa 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index ac6e3954b7..2209092b92 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index bc5651ddb7..1c3aa8df0f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index ab36254506..3819ab7e64 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index 130ccf28c3..bf0ecfe9ea 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index 94222c5822..3b10e5872d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index b2b4c69aed..de4a1a414c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index 4ab7ecb276..efa8cd6e00 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index e20e853e5a..668e1a5680 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index 73b230f54e..9c3ac762fe 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml index 7a602d3459..23efc268c7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml index 17e84d0a21..3123ae2263 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml index 94b92d22b7..21d697de84 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index a0a6ad4e1a..824e81b8c8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index e8e89d46bf..923db14ba0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml index 192e82f309..4183f61222 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index ece7c22edf..8ac2fe37ef 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml index de4ba87ecb..ab73c71cc8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml index 2d785cc937..8da41aed7b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index b4f4a9be18..c2ad0be464 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index 4dd94f0af6..b02603fd5f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml index 9e086cfa93..c85475b20d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml index d091b09822..6cfeb42445 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml index 9851032dd3..942403c008 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index d897facecd..48b7e6e244 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index 35d4e30b42..9a6d9f8b2d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index 1518ba8f89..2371d1f31f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml index b54b58a3a6..bbef4edbd8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml index 2db13f031b..0ed6fb16c8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index 83dc9402ee..6f5b930b7b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml index 9b4a437e0a..71b1ea75cb 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index fe96d7f557..a2f60b8db6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index 24205aeadf..51f5a191f0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml index b877ce4c22..406098ecf2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml index a057cb9b34..c28c18bf33 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml index fb6d7d05b3..7fa1d2518d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index 0dd8811e87..5066d74fe4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml index 4607f7b1c0..ba8e41d213 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index 793cc64044..bb32226524 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml b/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml index 5a96a5e7c1..cb9d595b06 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml b/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml index 5715250fd3..4ab3c81f37 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml b/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml index 04cb1ea269..3c8f9dacc9 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml b/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml index 26660d96b4..5e83c628ee 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml b/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml index a33174a38d..96dd4a7da0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml b/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml index 013d3ae829..0ee63f6cb4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml b/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml index 4fa2a46846..f13b2d8733 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml b/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml index 149a2fc655..54bc18e883 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml @@ -115,7 +115,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml b/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml index bb4e9ee571..3c8fcffe63 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml @@ -108,7 +108,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml b/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml index 84cf014b92..2ee7c70790 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml b/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml index 47ffb342d4..f1c53f00c8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml b/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml index a86757601f..2a985a165f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml b/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml index 77ed62d22a..44d2c4d112 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml b/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml index 2393a685dc..a193ea60be 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml b/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml index d8ee8f4318..589fa96d89 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml @@ -109,7 +109,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml b/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml index 1ec3d86bd7..a781074cc9 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml @@ -118,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml index fa78a70a3b..8512051882 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index e79bc4907f..b756e3c6a5 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index fde5033fea..a192f4ac1d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml index 842a03c7bc..c6257b4061 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index 98a6cd5ef8..1d3850d190 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index e6f777d508..cdf83fbb2d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index 99638d5bed..21b03c908e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml index bbbc3bfd94..b16a40bf99 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml index 3b0aed5adf..432a9daf39 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml index 7613d60e0b..71318c8762 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index 978f2b903f..ef86911955 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml index 978f2b903f..ef86911955 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml index c14ce13c9e..987bf27779 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml index 391f2e2adc..bc41c3b585 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml index cb497a319a..db279eedaf 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml index 1658a441fa..a1c56e2ae1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml b/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml index ed07cd3dc7..7c55928714 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml index 071e1d3d18..b7720acf7a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml @@ -125,7 +125,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml index a76b52d1ba..09d7a0f018 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml @@ -138,7 +138,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml index 61732000a6..d6a6b911b7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml @@ -120,7 +120,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml index f0712c4b7c..00569ec134 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml @@ -183,7 +183,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml index d05ea27407..09fc37f68a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml @@ -123,7 +123,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml index 1bf5ac19ea..5d1dcc453f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml @@ -167,7 +167,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml index 544a74edb2..6be54c0399 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml index 56f527693c..057deef523 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml index 3f77271afb..c40c94f3ba 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml index 644d8525b5..de210aba3b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml @@ -40,9 +40,9 @@ electricity natural gas - - 0.8 - + + 0.8 + single-family detached @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml index 78706fd953..30a933aa16 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -120,7 +120,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml index 33f2d8e5b1..285b8e962f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -120,7 +120,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml index e0f9861af8..dcc401dd1f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml index 8a5b462922..2bae6749ef 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml @@ -51,6 +51,7 @@ apartment unit + 6 1.0 1.0 8.0 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml index 581c00d3d9..47d7c9360a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml @@ -126,7 +126,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml index 3f4d271a18..cb3dffbbf1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml index 5427b6ea7d..7874c288ac 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml b/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml index 02e6420ff6..8c7b8d62a8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml b/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml deleted file mode 100644 index 411c43de98..0000000000 --- a/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml +++ /dev/null @@ -1,2755 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 1200.0 - 9600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - - ACHnatural - 0.375 - - 9600.0 - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - outside - basement - unconditioned - 77.1 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - basement - unconditioned - basement - unconditioned - 30.8 - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - conditioned space - - - - 800.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - conditioned space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 800.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - basement - unconditioned - basement - unconditioned - 8.0 - 320.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - conditioned space - floor - - - - 1200.0 - - - 22.84 - - - - - other housing unit - conditioned space - ceiling - - - - 1200.0 - - gypsum board - - - - 2.1 - - - - - - - basement - unconditioned - 1200.0 - 4.0 - 100.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 43.2 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 43.2 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 57.6 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 12000.0 - - Percent - 1.0 - - 1.0 - - - - room air conditioner - electricity - 12000.0 - 1.0 - - EER - 8.5 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - 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 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 1200.0 - 9600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - - ACHnatural - 0.375 - - 9600.0 - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - outside - basement - unconditioned - 77.1 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - basement - unconditioned - basement - unconditioned - 30.8 - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - conditioned space - - - - 800.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - conditioned space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 800.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - basement - unconditioned - basement - unconditioned - 8.0 - 320.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - conditioned space - floor - - - - 1200.0 - - - 22.84 - - - - - other housing unit - conditioned space - ceiling - - - - 1200.0 - - gypsum board - - - - 2.1 - - - - - - - basement - unconditioned - 1200.0 - 4.0 - 100.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 43.2 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 43.2 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 57.6 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 12000.0 - - Percent - 1.0 - - 1.0 - - - - room air conditioner - electricity - 12000.0 - 1.0 - - EER - 8.5 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - 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 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 1200.0 - 9600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - - ACHnatural - 0.375 - - 9600.0 - - - - - - - - - - - - - - - - - - - - - - outside - conditioned space - - - - 800.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - conditioned space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - conditioned space - floor - - - - 1200.0 - - - 2.1 - - - - - other housing unit - conditioned space - ceiling - - - - 1200.0 - - gypsum board - - - - 2.1 - - - - - - - 43.2 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 43.2 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 57.6 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 12000.0 - - Percent - 1.0 - - 1.0 - - - - room air conditioner - electricity - 12000.0 - 1.0 - - EER - 8.5 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - 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 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 1200.0 - 9600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - - ACHnatural - 0.375 - - 9600.0 - - - - - - - - - - - - - - - - - - - - - - outside - conditioned space - - - - 800.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - conditioned space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - conditioned space - floor - - - - 1200.0 - - - 2.1 - - - - - other housing unit - conditioned space - ceiling - - - - 1200.0 - - gypsum board - - - - 2.1 - - - - - - - 43.2 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 43.2 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 57.6 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 12000.0 - - Percent - 1.0 - - 1.0 - - - - room air conditioner - electricity - 12000.0 - 1.0 - - EER - 8.5 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - 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 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 1200.0 - 9600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - - ACHnatural - 0.375 - - 9600.0 - - - - - - - - true - - - - SLA - 0.003 - - - - - - - - - - - - - - - - - - - attic - vented - 1341.6 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - conditioned space - - - - 800.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - conditioned space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - outside - attic - vented - gable - - - - 200.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 200.0 - 0.7 - 0.92 - - - 4.0 - - - - - - - other housing unit - conditioned space - floor - - - - 1200.0 - - - 2.1 - - - - - attic - vented - conditioned space - ceiling - - - - 1200.0 - - gypsum board - - - - 39.3 - - - - - - - 43.2 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 43.2 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 57.6 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 12000.0 - - Percent - 1.0 - - 1.0 - - - - room air conditioner - electricity - 12000.0 - 1.0 - - EER - 8.5 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - 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 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 1200.0 - 9600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - - ACHnatural - 0.375 - - 9600.0 - - - - - - - - true - - - - SLA - 0.003 - - - - - - - - - - - - - - - - - - - attic - vented - 1341.6 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - conditioned space - - - - 800.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - conditioned space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - outside - attic - vented - gable - - - - 200.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 200.0 - 0.7 - 0.92 - - - 4.0 - - - - - - - other housing unit - conditioned space - floor - - - - 1200.0 - - - 2.1 - - - - - attic - vented - conditioned space - ceiling - - - - 1200.0 - - gypsum board - - - - 39.3 - - - - - - - 43.2 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 43.2 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 57.6 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 12000.0 - - Percent - 1.0 - - 1.0 - - - - room air conditioner - electricity - 12000.0 - 1.0 - - EER - 8.5 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - 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/resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml b/resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml deleted file mode 100644 index e50aceb1a1..0000000000 --- a/resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml +++ /dev/null @@ -1,1602 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.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 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - conditioned space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - conditioned space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - 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 - 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 - - - - -
- - - - -
- 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/occupancy-stochastic_2.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 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - conditioned space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - conditioned space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - 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 - 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 - - - - -
- - - - -
- 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/occupancy-stochastic_3.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 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - conditioned space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - conditioned space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - 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 - 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/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml index 95d9c72a76..a7f664fd47 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml index 946bad5505..4707f617dd 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml index b243d12524..2ba16abf89 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml index be13747f9a..ebc02fe048 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml index 33788e6730..9506d65769 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml index 02a6429a01..cfbd0e1604 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml index 27a5663588..657ff5f6a7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml b/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml index a8b12b84c3..56eeed5381 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-pv.xml b/resources/hpxml-measures/workflow/sample_files/base-pv.xml index 68374bf219..0bfa53b437 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-pv.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-pv.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml b/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml index 0b9fd25696..75f026a6de 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml @@ -120,7 +120,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml b/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml index 05942ad016..5559ee2ded 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml b/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml index 23c1767ed1..eecd18ab6a 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml b/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml index b60b272f6c..34db0e8343 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml b/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml index ee4a0b8d04..33155d5176 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml b/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml index 522d439917..16c70d4d36 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml @@ -100,7 +100,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index d825b8e4c9..ad64e5b689 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -118,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml index 70a10a7108..18b704a500 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -129,7 +129,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml index 7df361db1f..0b684bfc76 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -118,7 +118,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index 45f3f36289..ffc1e366f7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml index aa34c748f2..31e53d88fa 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml @@ -127,7 +127,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index a12178aead..714891142c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -126,7 +126,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index 6154a3717a..b70a07a57c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index d72fb876bd..69952698b2 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index 912e141818..abc2837003 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml index 47f0a5442a..fdd0527193 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml index 7603231cfb..8474872616 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml @@ -131,7 +131,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml index af60e491b4..0cbed2dea9 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml @@ -130,7 +130,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml b/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml index 8ed31d2086..974aa04a6e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml @@ -120,7 +120,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index b16c6d5d4d..88a7c3253f 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index d3fed5de94..87fb37d403 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -122,7 +122,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index 1bc257df75..91b2c7832e 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index d5ec4eca24..5cc4ff0c47 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -11,10 +11,61 @@ 60 2 - 1 - 2 - 28 + 15 + 3 + 15 + + + Cambium Hourly MidCase LRMER RMPA + CO2e + + electricity + kg/MWh + ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv + 1 + 17 + + + + Cambium Hourly LowRECosts LRMER RMPA + CO2e + + electricity + kg/MWh + ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv + 1 + 17 + + + + Cambium Annual MidCase AER National + CO2e + + electricity + kg/MWh + 392.6 + + + + eGRID RMPA + SO2 + + electricity + lb/MWh + 0.384 + + + + eGRID RMPA + NOx + + electricity + lb/MWh + 0.67 + + + Bills @@ -63,9 +114,9 @@ - USA_CO_Denver.Intl.AP.725650_TMY3 + US_CO_Boulder_AMY_2012 - USA_CO_Denver.Intl.AP.725650_TMY3.epw + US_CO_Boulder_AMY_2012.epw @@ -117,7 +168,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml index 4471e21506..fc8d69d2d4 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml @@ -114,7 +114,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index f61f146c7f..18be44c98b 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index 6d25336568..bf382931c0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -116,7 +116,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index fb44db1273..4e95a96ad5 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml index fc9339bcbb..8dac6719d0 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/sample_files/base.xml b/resources/hpxml-measures/workflow/sample_files/base.xml index 28ecf1238a..6c56e006f1 100644 --- a/resources/hpxml-measures/workflow/sample_files/base.xml +++ b/resources/hpxml-measures/workflow/sample_files/base.xml @@ -113,7 +113,6 @@ 0.7 0.92 6.0 - false 2.3 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml index fe13b262b2..0df9568ff8 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml index df88842c60..0598454d7f 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml index 0783aee1f7..3cc9c04af3 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml index 3658ee0c79..3627e285b6 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml index af0324eef7..06880fd496 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml index e45085f4fb..26e207a6ce 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml index 82c19b144e..f2063365b2 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml index b8d23d9e1f..76972bdc16 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml index 3f056d0ce4..9fcb7318c5 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml index cf39667cf1..113f9900eb 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml index 1fc68f917a..8d6129cc4f 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml index fa34a96b90..8efaa8e01f 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml index 1634399357..c8cc4f0b70 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml index 16546dc94c..17b75de82d 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml index 5f46c9998f..42671b28c5 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml index 9840358135..2ceb322e9e 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml index be4511c241..c665a2f5cb 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml index 05f243f0b2..168809da43 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml index 52fc94f1ef..2385013ece 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml index f04f87ae8c..5f8bb705b1 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml index b25cb8b0e4..81610ea609 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml @@ -83,7 +83,6 @@ 0.2 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.2 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml index a23588596b..23335565ab 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml @@ -83,7 +83,6 @@ 0.2 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.2 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml index 1f51226c44..172193834f 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 177bb94f0a..26826c3fd5 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml index d9e0dbc38b..949ca82bd3 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml index 0a9c5a6eb6..8d03224551 100644 --- a/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -83,7 +83,6 @@ 0.6 0.9 4.0 - false 1.99 @@ -98,7 +97,6 @@ 0.6 0.9 4.0 - false 1.99 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv b/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv index d31a384e93..104ca65b95 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv @@ -2,39 +2,72 @@ HPXML,HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacit 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-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,22911.0,22911.0,20320.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,31147.0,31147.0,16428.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,65909.0,65909.0,0.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,31147.0,0.0,16428.0,982.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS-backup-emergency.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-backup-supplemental.xml,31147.0,0.0,16428.0,982.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,65909.0,0.0,31147.0,2079.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,65909.0,0.0,0.0,2079.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,22911.0,22911.0,20320.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,31147.0,31147.0,16428.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-emergency.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.xml,65909.0,65909.0,0.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,22911.0,22911.0,20320.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,31147.0,31147.0,16428.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad-backup-emergency.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-MaxLoad-backup-supplemental.xml,65909.0,65909.0,0.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,22911.0,22911.0,20320.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,31147.0,31147.0,16428.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,65909.0,65909.0,0.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,24187.0,24187.0,31147.0,763.0,1006.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,24187.0,24187.0,19657.0,763.0,1006.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,31147.0,31147.0,16351.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,65568.0,65568.0,31147.0,2068.0,2727.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,65568.0,65568.0,0.0,2068.0,2727.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.xml,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.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-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.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-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.xml,33052.0,33052.0,32235.0,1755.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,33052.0,33052.0,32235.0,1755.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,25917.0,25917.0,31147.0,817.0,1078.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,25917.0,25917.0,14646.0,817.0,1078.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31147.0,31147.0,11317.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,48922.0,48922.0,31147.0,1543.0,2034.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,48922.0,48922.0,0.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 @@ -47,25 +80,43 @@ 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-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,31147.0,21309.0,16428.0,982.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS-backup-emergency.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-backup-supplemental.xml,31147.0,21309.0,16428.0,982.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-emergency.xml,65909.0,21309.0,31147.0,2079.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-supplemental.xml,65909.0,21309.0,0.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-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.xml,35328.0,35328.0,31147.0,1114.0,1469.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.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-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.xml,34557.0,34557.0,31147.0,1090.0,1437.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.xml,33052.0,33052.0,31147.0,1043.0,1374.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,33052.0,33052.0,31147.0,1043.0,1374.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,19626.0,19626.0,26181.0,619.0,816.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,19626.0,19626.0,26181.0,619.0,816.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,29687.0,29687.0,26181.0,936.0,1234.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.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 @@ -92,85 +143,142 @@ 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,24224.0,0.0,0.0,912.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,708.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0,0.0,912.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0,982.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25873.0,26950.0,31147.0,612.0,840.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0,832.0,1143.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74430.0,77528.0,31147.0,1761.0,2418.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27282.0,28282.0,31147.0,645.0,882.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35133.0,36421.0,31147.0,831.0,1136.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73958.0,76670.0,31147.0,1750.0,2391.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,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-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-backup-emergency.xml,31565.0,31565.0,31565.0,996.0,1104.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA-backup-supplemental.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-backup-emergency.xml,31565.0,31565.0,31565.0,996.0,1313.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS-backup-supplemental.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-backup-emergency.xml,34979.0,34979.0,31565.0,1103.0,1455.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad-backup-supplemental.xml,34979.0,34979.0,31565.0,1103.0,1455.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-emergency.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-emergency.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-supplemental.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,31147.0,31147.0,31147.0,982.0,1090.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,31147.0,31147.0,31147.0,982.0,1090.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,34704.0,34704.0,31147.0,1095.0,1443.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.xml,25873.0,26950.0,20320.0,612.0,840.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,35174.0,36638.0,16428.0,832.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,74430.0,77528.0,31147.0,1761.0,2418.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,74430.0,77528.0,0.0,1761.0,2418.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,27282.0,28282.0,19657.0,645.0,882.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.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-backup-supplemental.xml,35133.0,36421.0,16351.0,831.0,1136.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,73958.0,76670.0,31147.0,1750.0,2391.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,73958.0,76670.0,0.0,1750.0,2391.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,29280.0,30497.0,14646.0,693.0,951.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,35188.0,36653.0,11317.0,832.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.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-backup-supplemental.xml,55269.0,57566.0,0.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,1040.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,35169.0,36836.0,31147.0,832.0,1149.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,43421.0,45480.0,31147.0,1027.0,1418.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,35169.0,36836.0,31147.0,832.0,967.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,35169.0,36836.0,31147.0,832.0,967.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,35169.0,36836.0,31147.0,832.0,1149.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,35169.0,36836.0,31147.0,832.0,1149.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,39186.0,41044.0,31147.0,927.0,1280.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.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-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-ACCA-backup-emergency.xml,23855.0,24848.0,26181.0,564.0,775.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,23855.0,24848.0,12738.0,564.0,775.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,29578.0,30810.0,26181.0,700.0,961.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,29578.0,30810.0,9513.0,700.0,961.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,46458.0,48389.0,26181.0,1099.0,1509.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,46458.0,48389.0,0.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-ducted-heating-only-sizing-methodology-ACCA-backup-emergency.xml,26181.0,0.0,26181.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,26181.0,0.0,9513.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-emergency.xml,26181.0,0.0,26181.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-supplemental.xml,26181.0,0.0,9513.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,41122.0,0.0,26181.0,1297.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,41122.0,0.0,0.0,1297.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,21116.0,21116.0,26181.0,666.0,878.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,21116.0,21116.0,12738.0,666.0,878.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,26181.0,26181.0,9513.0,826.0,1089.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,41122.0,41122.0,26181.0,1297.0,1710.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,41122.0,41122.0,0.0,1297.0,1710.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-emergency.xml,18566.0,18566.0,23640.0,619.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-supplemental.xml,18566.0,18566.0,11819.0,619.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-emergency.xml,23640.0,23640.0,23640.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-supplemental.xml,23640.0,23640.0,8589.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-emergency.xml,37131.0,37131.0,23640.0,1238.0,1238.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-supplemental.xml,37131.0,37131.0,0.0,1238.0,1238.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.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-backup-emergency.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-HERS-backup-supplemental.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-backup-emergency.xml,25086.0,25086.0,24589.0,1379.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-supplemental.xml,25086.0,25086.0,24589.0,1379.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-emergency.xml,18566.0,18566.0,26570.0,1206.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,18566.0,18566.0,26570.0,1206.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-emergency.xml,23640.0,23640.0,26570.0,1375.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,23640.0,23640.0,26570.0,1375.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,25086.0,25086.0,26570.0,1423.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,25086.0,25086.0,26570.0,1423.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-emergency.xml,18566.0,18566.0,23640.0,1308.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-supplemental.xml,18566.0,18566.0,23640.0,1308.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-emergency.xml,23640.0,23640.0,23640.0,1477.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-supplemental.xml,23640.0,23640.0,23640.0,1477.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-emergency.xml,25086.0,25086.0,23640.0,1525.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-supplemental.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,41122.0,28997.0,12678.0,953.0,982.0 -denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37122.0,24997.0,12678.0,824.0,858.0 -denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46282.0,34157.0,12678.0,1117.0,1192.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA-backup-emergency.xml,42834.0,30709.0,6294.0,1007.0,1013.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA-backup-supplemental.xml,42834.0,30709.0,3072.0,1007.0,1013.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS-backup-emergency.xml,37122.0,24997.0,6294.0,824.0,854.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS-backup-supplemental.xml,37122.0,24997.0,3610.0,824.0,854.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-emergency.xml,47994.0,35869.0,6294.0,1171.0,1223.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-supplemental.xml,47994.0,35869.0,3029.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,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-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-supplemental.xml,16412.0,16412.0,15884.0,479.0,427.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-supplemental.xml,23640.0,23640.0,12468.0,689.0,615.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,50023.0,50023.0,0.0,1459.0,1301.0 +denver-hvac-autosize-pthp-sizing-methodology-ACCA-backup-emergency.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-pthp-sizing-methodology-ACCA-backup-supplemental.xml,16412.0,16412.0,15884.0,479.0,427.0 +denver-hvac-autosize-pthp-sizing-methodology-HERS-backup-emergency.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-pthp-sizing-methodology-HERS-backup-supplemental.xml,23640.0,23640.0,12468.0,689.0,615.0 +denver-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-emergency.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-supplemental.xml,50023.0,50023.0,0.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-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-emergency.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-supplemental.xml,16412.0,16412.0,15884.0,479.0,427.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-emergency.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-supplemental.xml,23640.0,23640.0,12468.0,689.0,615.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-emergency.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-supplemental.xml,50023.0,50023.0,0.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 @@ -183,39 +291,72 @@ 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-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,27095.0,27095.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,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-HERS-backup-supplemental.xml,25329.0,25329.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,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,30521.0,30521.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,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,20038.0,0.0,3409.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS-backup-emergency.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-backup-supplemental.xml,20038.0,0.0,3409.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,24146.0,0.0,20038.0,629.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,24146.0,0.0,0.0,629.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,27095.0,27095.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,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.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,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.xml,30521.0,30521.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,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA-backup-supplemental.xml,27095.0,27095.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,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.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,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad-backup-supplemental.xml,30521.0,30521.0,0.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,27095.0,27095.0,0.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.0,0.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30521.0,30521.0,0.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,27339.0,27339.0,20038.0,712.0,1137.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,27339.0,27339.0,0.0,712.0,1137.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.0,0.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,30431.0,30431.0,20038.0,793.0,1265.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30431.0,30431.0,0.0,793.0,1265.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,24475.0,24475.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,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-HERS-backup-supplemental.xml,25329.0,25329.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,29028.0,29028.0,14077.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,29028.0,29028.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,24475.0,24475.0,14077.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA-backup-supplemental.xml,24475.0,24475.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,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.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,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad-backup-supplemental.xml,29028.0,29028.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,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-ACCA-backup-supplemental.xml,24475.0,24475.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,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-HERS-backup-supplemental.xml,25329.0,25329.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,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-MaxLoad-backup-supplemental.xml,29028.0,29028.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,24475.0,24475.0,21260.0,1026.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,24475.0,24475.0,0.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,25329.0,25329.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,29028.0,29028.0,21260.0,1144.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,29028.0,29028.0,0.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,24475.0,24475.0,20038.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,24475.0,24475.0,0.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.0,0.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,29028.0,29028.0,20038.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,29028.0,29028.0,0.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 @@ -228,25 +369,43 @@ houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27095.0,0.0,0.0,1127 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-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,20038.0,27095.0,3409.0,522.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS-backup-emergency.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-backup-supplemental.xml,20038.0,27095.0,3409.0,522.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-emergency.xml,24146.0,27095.0,20038.0,629.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-supplemental.xml,24146.0,27095.0,0.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-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,27095.0,27095.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,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-HERS-backup-supplemental.xml,25329.0,25329.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,30521.0,30521.0,20038.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,30521.0,30521.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,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,27095.0,27095.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,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.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,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30521.0,30521.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,27339.0,27339.0,20038.0,712.0,1137.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,27339.0,27339.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,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.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,30431.0,30431.0,20038.0,793.0,1265.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30431.0,30431.0,0.0,793.0,1265.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,24475.0,24475.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,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.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,29028.0,29028.0,20038.0,756.0,1207.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,29028.0,29028.0,0.0,756.0,1207.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,20779.0,20779.0,16055.0,541.0,864.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,20779.0,20779.0,0.0,541.0,864.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,19590.0,19590.0,16055.0,510.0,815.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,19590.0,19590.0,0.0,510.0,815.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,22451.0,22451.0,16055.0,585.0,934.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,22451.0,22451.0,0.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 @@ -273,85 +432,142 @@ 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,32400.0,0.0,0.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,760.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0,0.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0,522.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 -houston-hvac-autosize-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,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-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-backup-emergency.xml,33269.0,33269.0,20288.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA-backup-supplemental.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-backup-emergency.xml,25329.0,25329.0,20288.0,660.0,703.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS-backup-supplemental.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-backup-emergency.xml,33269.0,33269.0,20288.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad-backup-supplemental.xml,33269.0,33269.0,20288.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-emergency.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-emergency.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-supplemental.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,33269.0,33269.0,20038.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,33269.0,33269.0,20038.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,25329.0,25329.0,20038.0,660.0,703.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,25329.0,25329.0,20038.0,660.0,703.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,33269.0,33269.0,20038.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.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-backup-emergency.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-ACCA-backup-supplemental.xml,33330.0,31852.0,0.0,651.0,993.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,31158.0,29777.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,37544.0,35880.0,20038.0,733.0,1119.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,37544.0,35880.0,0.0,733.0,1119.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.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-ACCA-backup-supplemental.xml,33606.0,31949.0,0.0,657.0,996.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.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-HERS-backup-supplemental.xml,31136.0,29600.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,37407.0,35562.0,20038.0,731.0,1109.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,37407.0,35562.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,30106.0,28785.0,20038.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30106.0,28785.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,31157.0,29787.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31157.0,29787.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,35707.0,34137.0,20038.0,698.0,1065.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35707.0,34137.0,0.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-only.xml,21260.0,0.0,0.0,291.0,0.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39778.0,38295.0,20038.0,777.0,862.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,674.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39778.0,38295.0,20038.0,777.0,862.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,40845.0,39322.0,20038.0,798.0,819.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,40845.0,39322.0,20038.0,798.0,819.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,31097.0,29938.0,20038.0,608.0,624.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,31097.0,29938.0,20038.0,608.0,624.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,40845.0,39322.0,20038.0,798.0,819.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.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-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-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,25560.0,24438.0,16055.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,25560.0,24438.0,0.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,24097.0,23040.0,16055.0,471.0,719.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,24097.0,23040.0,0.0,471.0,719.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,27617.0,26405.0,16055.0,540.0,823.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,27617.0,26405.0,0.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-ducted-heating-only-sizing-methodology-ACCA-backup-emergency.xml,16055.0,0.0,16055.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,16055.0,0.0,2046.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-emergency.xml,16055.0,0.0,16055.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-supplemental.xml,16055.0,0.0,2046.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,18399.0,0.0,16055.0,479.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,18399.0,0.0,0.0,479.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,20779.0,20779.0,16055.0,541.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,20779.0,20779.0,0.0,541.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,19590.0,19590.0,16055.0,510.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,19590.0,19590.0,0.0,510.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,22451.0,22451.0,16055.0,585.0,934.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,22451.0,22451.0,0.0,585.0,934.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-emergency.xml,17967.0,17967.0,14077.0,599.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-supplemental.xml,17967.0,17967.0,0.0,599.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-emergency.xml,16939.0,16939.0,14077.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,0.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-emergency.xml,19413.0,19413.0,14077.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-supplemental.xml,19413.0,19413.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,17967.0,17967.0,15088.0,874.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA-backup-supplemental.xml,17967.0,17967.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,16939.0,16939.0,15088.0,840.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,307.0,571.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-emergency.xml,19413.0,19413.0,15088.0,922.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-supplemental.xml,19413.0,19413.0,0.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-emergency.xml,17967.0,17967.0,16466.0,899.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,17967.0,17967.0,788.0,613.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-emergency.xml,16939.0,16939.0,16466.0,865.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,1685.0,596.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,19413.0,19413.0,16466.0,947.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,19413.0,19413.0,0.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-emergency.xml,17967.0,17967.0,14077.0,1010.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-supplemental.xml,17967.0,17967.0,0.0,599.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-emergency.xml,16939.0,16939.0,14077.0,976.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,0.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-emergency.xml,19413.0,19413.0,14077.0,1058.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-supplemental.xml,19413.0,19413.0,0.0,647.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,54257.0,50447.0,12670.0,1251.0,1651.0 -houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48792.0,44982.0,12670.0,1107.0,1508.0 -houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,56380.0,52570.0,12670.0,1307.0,1736.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA-backup-emergency.xml,56823.0,53013.0,8869.0,1318.0,1681.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA-backup-supplemental.xml,56823.0,53013.0,4364.0,1318.0,1681.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS-backup-emergency.xml,48792.0,44982.0,8869.0,1107.0,1490.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS-backup-supplemental.xml,48792.0,44982.0,4364.0,1107.0,1490.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-emergency.xml,58946.0,55136.0,8869.0,1374.0,1766.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-supplemental.xml,58946.0,55136.0,4364.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,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-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-supplemental.xml,18120.0,18120.0,0.0,528.0,471.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,20.0,494.0,440.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,20411.0,20411.0,0.0,595.0,531.0 +houston-hvac-autosize-pthp-sizing-methodology-ACCA-backup-emergency.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-pthp-sizing-methodology-ACCA-backup-supplemental.xml,18120.0,18120.0,0.0,528.0,471.0 +houston-hvac-autosize-pthp-sizing-methodology-HERS-backup-emergency.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-pthp-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,20.0,494.0,440.0 +houston-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-emergency.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-supplemental.xml,20411.0,20411.0,0.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-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-emergency.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-supplemental.xml,18120.0,18120.0,0.0,528.0,471.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-emergency.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-supplemental.xml,16939.0,16939.0,20.0,494.0,440.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-emergency.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-supplemental.xml,20411.0,20411.0,0.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 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv index a5e7e9a525..ed4560df86 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv @@ -13,7 +13,8 @@ base-appliances-wood.xml,59.618,59.618,33.14,33.14,21.613,0.0,0.0,4.866,0.0,0.0, base-atticroof-cathedral.xml,61.345,61.345,35.725,35.725,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.212,0.796,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3112.0,3112.0,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-conditioned.xml,63.091,63.091,40.489,40.489,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.868,0.953,8.922,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3660.6,3660.6,22.528,19.797,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.093,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-flat.xml,54.457,54.457,35.005,35.005,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.708,0.682,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2704.0,2704.0,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.3,37.3,33.148,33.148,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.336,1.949,6.714,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.579,6.562,0.579,0.0,0.0,0.0,0.0,1903.9,3231.2,3231.2,13.531,18.845,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.379,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-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 @@ -42,7 +43,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.97,26.97,26.97,26.97,0 base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,31.309,31.309,31.309,31.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.758,0.935,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1991.4,3070.5,3070.5,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.283,27.283,27.283,27.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.731,0.935,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1724.1,2162.9,2162.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-generator.xml,40.97,34.146,26.175,19.35,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.248,28.248,28.248,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.255,0.0,0.0,2.271,2.959,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1717.0,1949.1,1949.1,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,12000.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.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 @@ -52,6 +53,7 @@ base-bldgtype-mf-unit-shared-pv.xml,26.804,2.356,26.175,1.727,0.629,0.0,0.0,0.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-mf-whole-building.xml,219.072,219.072,219.072,219.072,0.0,0.0,0.0,0.0,0.0,0.0,34.933,0.0,0.0,0.0,22.982,0.0,55.565,0.0,0.0,14.641,0.0,1.363,0.0,0.0,0.0,0.0,13.318,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,34.878,0.0,51.452,55.316,3.602,0.0,0.0,0.0,1.0,22267.0,16276.3,22267.0,54.129,56.723,0.0,7.757,18.924,0.0,0.0,2.282,27.69,-27.42,0.0,0.0,7.753,0.0,-1.243,57.917,0.0,0.0,0.0,0.0,-51.005,-7.748,0.0,-1.12,-3.356,0.0,0.0,-0.07,-3.931,29.943,0.0,0.0,-3.882,0.0,-1.218,-13.978,-8.411,0.0,0.0,0.0,50.831,6.893,8128.5,5988.0,67056.9,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,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 @@ -59,7 +61,7 @@ base-bldgtype-sfa-unit.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0. base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.031,32.031,32.031,32.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.255,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.208,9.074,0.661,2.903,0.0,0.0,0.0,2067.2,2821.5,2821.5,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.6,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.468,37.468,37.468,37.468,0.0,0.0,0.0,0.0,0.0,0.0,5.011,0.476,0.0,0.0,3.206,0.962,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.721,0.0,14.004,9.074,0.613,2.953,0.0,0.0,0.0,3250.5,2391.7,3250.5,21.507,16.492,0.0,3.604,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.308,-0.064,4.805,0.0,0.729,0.0,3.371,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.103,8.505,2.01,1354.8,997.6,11184.9,2566.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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 @@ -103,7 +105,7 @@ base-dhw-tank-heat-pump-uef.xml,56.061,56.061,28.542,28.542,27.519,0.0,0.0,0.0,0 base-dhw-tank-heat-pump-with-solar-fraction.xml,51.881,51.881,27.851,27.851,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.161,0.782,1.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.503,0.0,13.612,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3135.6,3135.6,25.408,18.908,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.028,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.982,-0.162,0.0,3.002,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-with-solar.xml,51.398,51.398,28.455,28.455,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.499,0.863,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.484,0.0,15.039,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3144.9,3144.9,25.085,19.348,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.061,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.35,-0.053,-1.177,-3.153,-0.166,0.0,3.244,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump.xml,56.302,56.302,29.701,29.701,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.892,0.719,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.907,0.0,12.539,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3269.1,3269.1,23.533,19.054,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.008,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.835,-0.155,0.0,2.789,5.526,2.001,1354.8,997.6,10838.7,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.659,58.659,35.391,35.391,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.385,0.834,8.5,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.489,9.117,0.021,0.0,0.0,0.0,0.0,4562.5,5549.5,5549.5,30.746,19.739,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.052,-0.46,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.167,8.004,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-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 @@ -178,6 +180,8 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.616,5 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-autosize.xml,42.815,42.815,42.815,42.815,0.0,0.0,0.0,0.0,0.0,0.0,8.728,0.56,0.31,0.011,2.749,0.164,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.751,0.322,15.106,9.075,0.614,0.0,0.0,0.0,0.0,7017.5,3772.5,7017.5,24.43,18.47,0.0,3.367,3.648,0.513,7.536,0.631,10.106,-12.695,0.0,0.0,0.0,8.329,-0.062,4.808,0.0,0.73,0.0,9.894,-8.91,-2.5,0.0,-0.085,-0.462,-0.052,2.688,-0.026,-1.406,11.718,0.0,0.0,0.0,-6.341,-0.058,-1.17,-3.109,-0.165,0.0,3.907,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,31147.0,31147.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.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-normalized-capacities.xml,42.417,42.417,42.417,42.417,0.0,0.0,0.0,0.0,0.0,0.0,8.766,0.51,0.133,0.006,2.597,0.113,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.279,0.139,14.705,9.075,0.614,0.0,0.0,0.0,0.0,6969.8,3564.3,6969.8,24.192,18.091,0.0,3.386,3.648,0.513,7.536,0.631,10.106,-12.695,0.0,0.0,0.0,8.328,-0.062,4.808,0.0,0.73,0.0,9.409,-8.91,-2.5,0.0,-0.065,-0.462,-0.052,2.687,-0.026,-1.406,11.718,0.0,0.0,0.0,-6.342,-0.058,-1.17,-3.107,-0.165,0.0,3.493,7.868,2.009,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-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 @@ -194,6 +198,7 @@ base-hvac-boiler-wood-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,0.0,19.023,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-autosize.xml,34.903,34.903,34.903,34.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.15,0.416,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.946,9.075,0.661,0.0,0.0,0.0,3.0,2070.7,3898.6,3898.6,0.0,18.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.166,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.195,-3.031,-0.167,0.0,5.117,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,19564.0,0.0,6.8,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 @@ -229,9 +234,10 @@ base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0. base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.179,34.179,34.179,34.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.022,0.82,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.013,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2840.3,2840.3,0.0,15.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.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.081,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-heating-only.xml,35.993,35.993,35.993,35.993,0.0,0.0,0.0,0.0,0.0,0.0,4.996,0.729,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.793,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3375.0,1621.9,3375.0,22.277,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.908,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.675,39.675,39.675,39.675,0.0,0.0,0.0,0.0,0.0,0.0,4.922,0.468,0.0,0.0,3.077,0.916,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38,0.0,13.305,9.075,0.614,0.0,0.0,0.0,0.0,3274.6,2737.2,3274.6,21.395,16.112,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.318,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.032,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-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 @@ -240,13 +246,15 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.079,60.079,36.64 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.565,58.565,35.126,35.126,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.902,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.797,57.797,34.358,34.358,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.404,0.381,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.486,9.075,0.614,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.166,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.157,-0.464,-0.052,2.687,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.348,-0.059,-1.172,-3.116,-0.166,0.0,5.323,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.725,41.725,41.725,41.725,0.0,0.0,0.0,0.0,0.0,0.0,6.367,0.478,0.0,0.0,3.716,0.872,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.361,0.0,13.864,9.075,0.614,0.0,0.0,0.0,0.0,3514.4,2959.7,3514.4,22.464,17.298,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.326,-8.905,-2.499,0.0,-0.032,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.606,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,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-autosize.xml,33.63,33.63,33.63,33.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.238,0.055,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,2584.0,2584.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,14282.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,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-autosize.xml,41.046,41.046,41.046,41.046,0.0,0.0,0.0,0.0,0.0,0.0,7.295,0.223,0.0,0.0,3.145,0.091,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.726,0.0,12.913,9.075,0.614,0.0,0.0,0.0,0.0,4159.1,2773.4,4159.1,19.226,14.088,0.0,3.598,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.681,-8.906,-2.499,0.0,0.007,-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.105,-0.166,0.0,1.656,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,26181.0,26181.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-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 @@ -254,10 +262,11 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.911,38.911,38.91 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-autosize.xml,38.746,38.746,38.746,38.746,0.0,0.0,0.0,0.0,0.0,0.0,6.449,0.069,0.0,0.0,1.93,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.293,9.075,0.614,0.0,0.0,0.0,0.0,3918.7,2501.4,3918.7,16.439,11.918,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,23640.0,23640.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,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.196,66.196,52.054,52.054,7.011,3.526,3.605,0.0,0.0,0.0,13.488,0.843,0.215,0.009,6.647,0.561,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.07,0.223,19.503,9.075,0.614,0.0,0.0,0.0,15.0,6551.7,4043.8,6551.7,37.974,22.365,0.0,3.429,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.097,-8.914,-2.501,0.0,-0.137,-0.456,-0.051,2.714,-0.024,-1.382,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.421,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.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 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 1125794d36..d438339a5e 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -13,7 +13,8 @@ base-appliances-wood.xml,1806.18,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0 base-atticroof-cathedral.xml,1870.51,144.0,1311.11,0.0,1455.11,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-atticroof-conditioned.xml,2013.39,144.0,1485.95,0.0,1629.95,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-atticroof-flat.xml,1778.74,144.0,1284.68,0.0,1428.68,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,1544.21,144.0,1213.18,0.0,1357.18,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-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 @@ -42,7 +43,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1133.79,144.0,989.79,0.0, base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1293.07,144.0,1149.07,0.0,1293.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1145.29,144.0,1001.29,0.0,1145.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-generator.xml,1639.83,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.73,144.0,1036.73,0.0,1180.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,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 @@ -52,6 +53,7 @@ base-bldgtype-mf-unit-shared-pv.xml,358.03,144.0,960.62,-897.25,207.37,144.0,6.6 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-mf-whole-building.xml,8904.04,864.0,8040.04,0.0,8904.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-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 @@ -59,7 +61,7 @@ base-bldgtype-sfa-unit.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,1319.56,144.0,1175.56,0.0,1319.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,1519.08,144.0,1375.08,0.0,1519.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,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 @@ -103,7 +105,7 @@ base-dhw-tank-heat-pump-uef.xml,1627.02,144.0,1047.5,0.0,1191.5,144.0,291.52,435 base-dhw-tank-heat-pump-with-solar-fraction.xml,1564.71,144.0,1022.16,0.0,1166.16,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-with-solar.xml,1575.35,144.0,1044.31,0.0,1188.31,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump.xml,1659.84,144.0,1090.05,0.0,1234.05,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1833.33,144.0,1298.85,0.0,1442.85,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-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 @@ -178,6 +180,8 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1866.34, 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-autosize.xml,1715.32,144.0,1571.32,0.0,1715.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-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1700.74,144.0,1556.74,0.0,1700.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-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 @@ -194,6 +198,7 @@ base-hvac-boiler-wood-only.xml,1544.71,144.0,1115.36,0.0,1259.36,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-autosize.xml,1424.95,144.0,1280.95,0.0,1424.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-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 @@ -229,9 +234,10 @@ base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1398.38,144.0,1254.38,0.0,1398.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.96,144.0,1320.96,0.0,1464.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,1600.1,144.0,1456.1,0.0,1600.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-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 @@ -240,13 +246,15 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1881.0,144.0,1344.7 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.44,144.0,1289.14,0.0,1433.14,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1797.25,144.0,1260.95,0.0,1404.95,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1675.31,144.0,1531.31,0.0,1675.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,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-autosize.xml,1378.23,144.0,1234.23,0.0,1378.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-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-autosize.xml,1650.41,144.0,1506.41,0.0,1650.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,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 @@ -254,10 +262,11 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1572.03,144.0,1428. 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-autosize.xml,1565.98,144.0,1421.98,0.0,1565.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-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,2493.83,144.0,1910.39,0.0,2054.39,144.0,74.27,218.27,0.0,123.32,123.32,0.0,97.85,97.85,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 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv index 5ad981f83c..6606ccbda7 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv @@ -37,7 +37,7 @@ base-misc-bills-pv-detailed-only.xml,58.105,31.219,35.839,8.953,22.266,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.277,43.827,31.485,12.035,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.45,0.0,0.508,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.0,2958.0,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.888,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.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 @@ -82,7 +82,7 @@ base-schedules-simple.xml,58.275,58.275,35.874,35.874,22.401,0.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-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-runperiod-1-month.xml,11.2983,11.2983,3.0501,3.0501,8.2483,0.0,0.0,0.0,0.0,0.0,0.0,0.134,0.0,0.0,0.1114,0.0,0.9133,0.0,0.0,0.4149,0.0,0.0309,0.0,0.0,0.0,0.0,0.1749,0.0,0.0,0.0273,0.0304,0.1243,0.1311,0.0,0.1823,0.7751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.2483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.7246,0.0,0.0,0.9277,0.0547,0.0,0.0,0.0,0.0,2114.87,0.0,2114.87,23.327,0.0,0.0,0.6031,0.6599,0.0934,2.0549,0.1159,1.8318,-2.3729,0.0,0.0,0.0,3.8129,0.0131,0.8692,0.0,0.1228,0.0,1.7278,-1.4632,-0.4151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.68,85.62,980.71,225.04,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-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 @@ -115,7 +115,7 @@ 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, 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 +house027.xml,73.458,73.458,31.285,31.285,42.173,0.0,0.0,0.0,0.0,0.0,0.0,0.463,0.0,0.0,7.475,0.941,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,21.172,0.0,17.932,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,19.943,0.0,21.86,8.564,5.271,0.0,0.0,0.0,0.0,1581.0,3606.3,3606.3,24.164,22.774,0.721,1.786,7.94,0.454,0.0,0.594,4.989,-4.006,0.0,0.0,0.321,3.265,-0.167,1.463,0.0,10.465,0.0,2.143,-7.25,-2.861,0.501,1.161,0.793,0.063,0.0,-0.105,0.214,5.405,0.0,0.0,0.149,3.861,-0.167,-0.276,-0.891,-3.327,0.0,2.467,8.837,3.086,1610.9,1574.7,10579.7,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 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv index 67dc6f1951..d7908ba2d8 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -37,7 +37,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,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,1066.48,144.0,1155.39,-713.7,585.69,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-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 @@ -82,7 +82,7 @@ base-schedules-simple.xml,1841.9,144.0,1316.6,0.0,1460.6,144.0,237.3,381.3,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-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-runperiod-1-month.xml,223.34,12.01,111.94,0.0,123.95,12.01,87.38,99.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-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 @@ -115,7 +115,7 @@ 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 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 +house027.xml,1892.61,144.0,1009.35,0.0,1153.35,144.0,595.26,739.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 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 diff --git a/resources/hpxml-measures/workflow/tests/compare.py b/resources/hpxml-measures/workflow/tests/compare.py index 99f13a027b..3aa2a4732c 100644 --- a/resources/hpxml-measures/workflow/tests/compare.py +++ b/resources/hpxml-measures/workflow/tests/compare.py @@ -178,7 +178,7 @@ def get_min_max(x_col, y_col, min_value, max_value): except BaseException: pass - return(min_value, max_value) + return (min_value, max_value) def add_error_lines(fig, showlegend, row, col, min_value, max_value): fig.add_trace(go.Scatter(x=[min_value, max_value], y=[min_value, max_value], diff --git a/resources/hpxml-measures/workflow/tests/test_other.rb b/resources/hpxml-measures/workflow/tests/test_other.rb index 8f7160ad73..b5dc44ea49 100644 --- a/resources/hpxml-measures/workflow/tests/test_other.rb +++ b/resources/hpxml-measures/workflow/tests/test_other.rb @@ -231,56 +231,68 @@ def test_template_osws end end - def test_multiple_buildings + def test_mf_building_simulations + rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') + sample_files_path = File.join(File.dirname(__FILE__), '..', 'sample_files') + csv_output_path = File.join(sample_files_path, 'run', 'results_annual.csv') + bills_csv_path = File.join(sample_files_path, 'run', 'results_bills.csv') + run_log = File.join(sample_files_path, 'run', 'run.log') dryer_warning_msg = 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' - ['base-multiple-sfd-buildings.xml', - 'base-multiple-mf-units.xml'].each do |hpxml_name| - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', hpxml_name) - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv') - bills_csv_path = File.join(File.dirname(xml), 'run', 'results_bills.csv') - run_log = File.join(File.dirname(xml), 'run', 'run.log') + [true, false].each do |whole_sfa_or_mf_building_sim| + tmp_hpxml_path = File.join(sample_files_path, 'tmp.xml') + hpxml = HPXML.new(hpxml_path: File.join(sample_files_path, 'base-bldgtype-mf-whole-building.xml')) + hpxml.header.whole_sfa_or_mf_building_sim = whole_sfa_or_mf_building_sim + XMLHelper.write_file(hpxml.to_doc, tmp_hpxml_path) - # Check successful simulation when providing correct building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyBuilding_2" + # Check for when building-id argument is not provided + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{tmp_hpxml_path}\"" system(command, err: File::NULL) - assert_equal(true, File.exist?(csv_output_path)) - assert_equal(true, File.exist?(bills_csv_path)) + if whole_sfa_or_mf_building_sim + # Simulation should be successful + assert_equal(true, File.exist?(csv_output_path)) + assert_equal(true, File.exist?(bills_csv_path)) - if hpxml_name == 'base-multiple-sfd-buildings.xml' - # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron) - assert_equal(1, File.readlines(run_log).select { |l| l.include? dryer_warning_msg }.size) + # Check that we have multiple warnings, one for each Building element + assert_equal(6, File.readlines(run_log).select { |l| l.include? dryer_warning_msg }.size) else - assert_equal(0, File.readlines(run_log).select { |l| l.include? dryer_warning_msg }.size) + # Simulation should be unsuccessful (building_id or WholeSFAorMFBuildingSimulation=true is required) + assert_equal(false, File.exist?(csv_output_path)) + assert_equal(false, File.exist?(bills_csv_path)) + assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; provide Building ID argument or set WholeSFAorMFBuildingSimulation=true.' }.size) end - # Check unsuccessful simulation when providing incorrect building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyFoo" + # Check for when building-id argument is provided + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{tmp_hpxml_path}\" --building-id MyBuilding_2" system(command, err: File::NULL) - assert_equal(false, File.exist?(csv_output_path)) - assert_equal(false, File.exist?(bills_csv_path)) - assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size) + if whole_sfa_or_mf_building_sim + # Simulation should be successful (WholeSFAorMFBuildingSimulation is true, so building-id argument is ignored) + # Note: We don't want to override WholeSFAorMFBuildingSimulation because we may have Schematron validation based on it, and it would be wrong to + # validate the HPXML for one use case (whole building model) while running it for a different unit case (individual dwelling unit model). + assert_equal(true, File.exist?(csv_output_path)) + assert_equal(true, File.exist?(bills_csv_path)) + assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file and WholeSFAorMFBuildingSimulation=true; Building ID argument will be ignored.' }.size) + else + # Simulation should be successful + assert_equal(true, File.exist?(csv_output_path)) + assert_equal(true, File.exist?(bills_csv_path)) - # Check unsuccessful simulation when not providing building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" + # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron) + assert_equal(1, File.readlines(run_log).select { |l| l.include? dryer_warning_msg }.size) + end + + next unless not whole_sfa_or_mf_building_sim + + # Check for when building-id argument is invalid (incorrect building ID) + # Simulation should be unsuccessful + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{tmp_hpxml_path}\" --building-id MyFoo" system(command, err: File::NULL) assert_equal(false, File.exist?(csv_output_path)) assert_equal(false, File.exist?(bills_csv_path)) - assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' }.size) - - # Check successful simulation when running whole building - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id ALL" - system(command, err: File::NULL) - assert_equal(true, File.exist?(csv_output_path)) - assert_equal(true, File.exist?(bills_csv_path)) + assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size) - if hpxml_name == 'base-multiple-sfd-buildings.xml' - # Check that we now have three warnings, one for each Building element - assert_equal(3, File.readlines(run_log).select { |l| l.include? dryer_warning_msg }.size) - else - assert_equal(0, File.readlines(run_log).select { |l| l.include? dryer_warning_msg }.size) - end + # Cleanup + File.delete(tmp_hpxml_path) if File.exist? tmp_hpxml_path end end diff --git a/resources/hpxml-measures/workflow/tests/test_real_homes.rb b/resources/hpxml-measures/workflow/tests/test_real_homes.rb deleted file mode 100644 index 2cf26d171f..0000000000 --- a/resources/hpxml-measures/workflow/tests/test_real_homes.rb +++ /dev/null @@ -1,26 +0,0 @@ -# frozen_string_literal: true - -require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' -require 'openstudio' -require 'fileutils' -require 'parallel' -require_relative '../../HPXMLtoOpenStudio/measure.rb' -require_relative 'util.rb' - -class WorkflowRealHomesTest < Minitest::Test - def test_simulations_real_homes - results_dir = File.join(File.dirname(__FILE__), 'results') - FileUtils.mkdir_p results_dir - - results_out = File.join(results_dir, 'results_real_homes.csv') - bills_out = File.join(results_dir, 'results_real_homes_bills.csv') - File.delete(results_out) if File.exist? results_out - File.delete(bills_out) if File.exist? bills_out - - hpxml_files_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'real_homes')) - all_results, all_results_bills = run_simulation_tests(hpxml_files_dir) - - _write_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out) - _write_results(all_results_bills.sort_by { |k, _v| k.downcase }.to_h, bills_out) - end -end diff --git a/resources/hpxml-measures/workflow/tests/test_sample_files.rb b/resources/hpxml-measures/workflow/tests/test_sample_files.rb deleted file mode 100644 index 4b932c0b88..0000000000 --- a/resources/hpxml-measures/workflow/tests/test_sample_files.rb +++ /dev/null @@ -1,26 +0,0 @@ -# frozen_string_literal: true - -require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' -require 'openstudio' -require 'fileutils' -require 'parallel' -require_relative '../../HPXMLtoOpenStudio/measure.rb' -require_relative 'util.rb' - -class WorkflowSampleFilesTest < Minitest::Test - def test_simulations_sample_files - results_dir = File.join(File.dirname(__FILE__), 'results') - FileUtils.mkdir_p results_dir - - results_out = File.join(results_dir, 'results_sample_files.csv') - bills_out = File.join(results_dir, 'results_sample_files_bills.csv') - File.delete(results_out) if File.exist? results_out - File.delete(bills_out) if File.exist? bills_out - - hpxml_files_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'sample_files')) - all_results, all_results_bills = run_simulation_tests(hpxml_files_dir) - - _write_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out) - _write_results(all_results_bills.sort_by { |k, _v| k.downcase }.to_h, bills_out) - end -end diff --git a/resources/hpxml-measures/workflow/tests/util.rb b/resources/hpxml-measures/workflow/tests/util.rb index f4e5789d10..e65d2b563e 100644 --- a/resources/hpxml-measures/workflow/tests/util.rb +++ b/resources/hpxml-measures/workflow/tests/util.rb @@ -7,14 +7,13 @@ def run_simulation_tests(xmls) all_results_bills = {} Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| next if xml.end_with? '-10x.xml' - next if xml.include? 'base-multiple-sfd-buildings' # Separate tests cover this - next if xml.include? 'base-multiple-mf-units' # Separate tests cover this xml_name = File.basename(xml) results = _run_xml(xml, Parallel.worker_number) all_results[xml_name], all_results_bills[xml_name], timeseries_results = results - next unless xml.include?('sample_files') || xml.include?('real_homes') + next unless xml.include?('sample_files') || xml.include?('real_homes') # Exclude e.g. ASHRAE 140 files + next if xml.include? 'base-bldgtype-mf-whole-building' # Already has multiple dwelling units # Also run with a 10x unit multiplier (2 identical dwelling units each with a 5x # unit multiplier) and check how the results compare to the original run @@ -27,7 +26,7 @@ def run_simulation_tests(xmls) def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, timeseries_results_1x = nil) unit_multiplier = 1 if apply_unit_multiplier - hpxml = HPXML.new(hpxml_path: xml, building_id: 'ALL') + hpxml = HPXML.new(hpxml_path: xml) hpxml.buildings.each do |hpxml_bldg| next unless hpxml_bldg.building_construction.number_of_units.nil? @@ -55,11 +54,14 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t end hpxml.buildings << hpxml_bldg.dup end + unit_multiplier = hpxml.buildings.map { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum / orig_multiplier + if unit_multiplier > 1 + hpxml.header.whole_sfa_or_mf_building_sim = true + end xml.gsub!('.xml', '-10x.xml') hpxml_doc = hpxml.to_doc() hpxml.set_unique_hpxml_ids(hpxml_doc) XMLHelper.write_file(hpxml_doc, xml) - unit_multiplier = hpxml.buildings.map { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum / orig_multiplier end print "Testing #{File.basename(xml)}...\n" @@ -69,9 +71,6 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t # inside the ReportSimulationOutput measure. cli_path = OpenStudio.getOpenStudioCLI command = "\"#{cli_path}\" \"#{File.join(File.dirname(__FILE__), '../run_simulation.rb')}\" -x \"#{xml}\" --add-component-loads -o \"#{rundir}\" --debug --monthly ALL" - if unit_multiplier > 1 - command += ' -b ALL' - end success = system(command) if unit_multiplier > 1 @@ -97,7 +96,7 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t hpxml_defaults_path = File.join(rundir, 'in.xml') schema_validator = XMLValidator.get_schema_validator(File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd')) schematron_validator = XMLValidator.get_schematron_validator(File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schematron', 'EPvalidator.xml')) - hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, schema_validator: schema_validator, schematron_validator: schematron_validator, building_id: 'ALL') # Validate in.xml to ensure it can be run back through OS-HPXML + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, schema_validator: schema_validator, schematron_validator: schematron_validator) # Validate in.xml to ensure it can be run back through OS-HPXML if not hpxml.errors.empty? puts 'ERRORS:' hpxml.errors.each do |error| @@ -179,7 +178,7 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) hpxml_bldg.collapse_enclosure_surfaces() hpxml_bldg.delete_adiabatic_subsurfaces() - # Check run.log warnings + # Check for unexpected run.log messages File.readlines(File.join(rundir, 'run.log')).each do |message| next if message.strip.empty? next if message.start_with? 'Info: ' @@ -239,19 +238,22 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) next if message.include? 'It is not possible to eliminate all HVAC energy use (e.g. crankcase/defrost energy) in EnergyPlus during an unavailable period.' next if message.include? 'It is not possible to eliminate all water heater energy use (e.g. parasitics) in EnergyPlus during an unavailable period.' end - if hpxml_path.include? 'base-location-AMY-2012.xml' + if hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath.include? 'US_CO_Boulder_AMY_2012.epw' next if message.include? 'No design condition info found; calculating design conditions from EPW weather data.' end if hpxml_bldg.building_construction.number_of_units > 1 next if message.include? 'NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.' end + if hpxml_path.include? 'base-hvac-multiple.xml' + next if message.include? 'Reached a minimum of 1 borehole; setting bore depth to the minimum' + end # FUTURE: Revert this eventually # https://github.com/NREL/OpenStudio-HPXML/issues/1499 if hpxml_header.utility_bill_scenarios.has_detailed_electric_rates uses_unit_multipliers = hpxml.buildings.select { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units > 1 }.size > 0 if uses_unit_multipliers || hpxml.buildings.size > 1 - next if message.include? 'Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers or multiple Building elements' + next if message.include? 'Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers.' end end @@ -377,6 +379,10 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) if hpxml_path.include? 'house044.xml' next if message.include? 'FixViewFactors: View factors not complete. Check for bad surface descriptions or unenclosed zone' end + # TODO: Check why this warning occurs + if hpxml_path.include? 'base-bldgtype-mf-whole-building' + next if message.include? 'SHR adjusted to achieve valid outlet air properties and the simulation continues.' + end flunk "Unexpected eplusout.err message found for #{File.basename(hpxml_path)}: #{message}" end @@ -1029,6 +1035,10 @@ def get_tolerances(key) # Check that there is no difference abs_delta_tol = 0 abs_frac_tol = nil + elsif key.include?('Emissions:') + # Check that the emissions difference is less than 100 lb or less than 5% + abs_delta_tol = 100 + abs_frac_tol = 0.05 else fail "Unexpected results key: #{key}." end diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 54e7c05f44..183e946201 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -1,13021 +1,13021 @@ -Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... -AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" -AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" -AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" -AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" -AHS Region "CBSA Detroit-Warren-Dearborn, MI" -AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" -AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" -AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" -AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" -AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" -AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" -AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" -AHS Region "CBSA San Francisco-Oakland-Hayward, CA" -AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" -AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" -AHS Region Non-CBSA East North Central -AHS Region Non-CBSA East South Central -AHS Region Non-CBSA Middle Atlantic -AHS Region Non-CBSA Mountain -AHS Region Non-CBSA New England -AHS Region Non-CBSA Pacific -AHS Region Non-CBSA South Atlantic -AHS Region Non-CBSA West North Central -AHS Region Non-CBSA West South Central -AIANNH Area No -AIANNH Area Yes -ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto -ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto -ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto -ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto -ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto -ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto -ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto -ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto -ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto -ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto -ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto -ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto -ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto -ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto -ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" -ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" -ASHRAE IECC Climate Zone 2004 - 2A Split 1A -ASHRAE IECC Climate Zone 2004 - 2A Split 2B -ASHRAE IECC Climate Zone 2004 - 2A Split 3A -ASHRAE IECC Climate Zone 2004 - 2A Split 3B -ASHRAE IECC Climate Zone 2004 - 2A Split 3C -ASHRAE IECC Climate Zone 2004 - 2A Split 4A -ASHRAE IECC Climate Zone 2004 - 2A Split 4B -ASHRAE IECC Climate Zone 2004 - 2A Split 4C -ASHRAE IECC Climate Zone 2004 - 2A Split 5A -ASHRAE IECC Climate Zone 2004 - 2A Split 5B -ASHRAE IECC Climate Zone 2004 - 2A Split 6A -ASHRAE IECC Climate Zone 2004 - 2A Split 6B -ASHRAE IECC Climate Zone 2004 - 2A Split 7A -ASHRAE IECC Climate Zone 2004 - 2A Split 7AK -ASHRAE IECC Climate Zone 2004 - 2A Split 7B -ASHRAE IECC Climate Zone 2004 - 2A Split 8AK -Area Median Income 0-30% -Area Median Income 100-120% -Area Median Income 120-150% -Area Median Income 150%+ -Area Median Income 30-60% -Area Median Income 60-80% -Area Median Income 80-100% -Area Median Income Not Available -Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto -Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 -Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto -Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto -Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto -Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto -Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto -Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto -Building America Climate Zone Cold -Building America Climate Zone Hot-Dry -Building America Climate Zone Hot-Humid -Building America Climate Zone Marine -Building America Climate Zone Mixed-Dry -Building America Climate Zone Mixed-Humid -Building America Climate Zone Subarctic -Building America Climate Zone Very Cold -CEC Climate Zone 1 -CEC Climate Zone 10 -CEC Climate Zone 11 -CEC Climate Zone 12 -CEC Climate Zone 13 -CEC Climate Zone 14 -CEC Climate Zone 15 -CEC Climate Zone 16 -CEC Climate Zone 2 -CEC Climate Zone 3 -CEC Climate Zone 4 -CEC Climate Zone 5 -CEC Climate Zone 6 -CEC Climate Zone 7 -CEC Climate Zone 8 -CEC Climate Zone 9 -CEC Climate Zone None -Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 -Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 -Census Division East North Central -Census Division East South Central -Census Division Middle Atlantic -Census Division Mountain -Census Division New England -Census Division Pacific -Census Division South Atlantic -Census Division West North Central -Census Division West South Central -Census Division RECS East North Central -Census Division RECS East South Central -Census Division RECS Middle Atlantic -Census Division RECS Mountain North -Census Division RECS Mountain South -Census Division RECS New England -Census Division RECS Pacific -Census Division RECS South Atlantic -Census Division RECS West North Central -Census Division RECS West South Central -Census Region Midwest -Census Region Northeast -Census Region South -Census Region West -City "AK, Anchorage" -City "AL, Auburn" -City "AL, Birmingham" -City "AL, Decatur" -City "AL, Dothan" -City "AL, Florence" -City "AL, Gadsden" -City "AL, Hoover" -City "AL, Huntsville" -City "AL, Madison" -City "AL, Mobile" -City "AL, Montgomery" -City "AL, Phenix City" -City "AL, Tuscaloosa" -City "AR, Bentonville" -City "AR, Conway" -City "AR, Fayetteville" -City "AR, Fort Smith" -City "AR, Hot Springs" -City "AR, Jonesboro" -City "AR, Little Rock" -City "AR, North Little Rock" -City "AR, Pine Bluff" -City "AR, Rogers" -City "AR, Springdale" -City "AZ, Apache Junction" -City "AZ, Avondale" -City "AZ, Buckeye" -City "AZ, Bullhead City" -City "AZ, Casa Grande" -City "AZ, Casas Adobes" -City "AZ, Catalina Foothills" -City "AZ, Chandler" -City "AZ, Flagstaff" -City "AZ, Fortuna Foothills" -City "AZ, Gilbert" -City "AZ, Glendale" -City "AZ, Goodyear" -City "AZ, Green Valley" -City "AZ, Lake Havasu City" -City "AZ, Marana" -City "AZ, Maricopa" -City "AZ, Mesa" -City "AZ, Oro Valley" -City "AZ, Peoria" -City "AZ, Phoenix" -City "AZ, Prescott Valley" -City "AZ, Prescott" -City "AZ, San Tan Valley" -City "AZ, Scottsdale" -City "AZ, Sierra Vista" -City "AZ, Sun City West" -City "AZ, Sun City" -City "AZ, Surprise" -City "AZ, Tempe" -City "AZ, Tucson" -City "AZ, Yuma" -City "CA, Alameda" -City "CA, Alhambra" -City "CA, Aliso Viejo" -City "CA, Altadena" -City "CA, Anaheim" -City "CA, Antioch" -City "CA, Apple Valley" -City "CA, Arcadia" -City "CA, Arden-Arcade" -City "CA, Bakersfield" -City "CA, Baldwin Park" -City "CA, Bellflower" -City "CA, Berkeley" -City "CA, Beverly Hills" -City "CA, Brea" -City "CA, Brentwood" -City "CA, Buena Park" -City "CA, Burbank" -City "CA, Camarillo" -City "CA, Campbell" -City "CA, Carlsbad" -City "CA, Carmichael" -City "CA, Carson" -City "CA, Castro Valley" -City "CA, Cathedral City" -City "CA, Cerritos" -City "CA, Chico" -City "CA, Chino Hills" -City "CA, Chino" -City "CA, Chula Vista" -City "CA, Citrus Heights" -City "CA, Clovis" -City "CA, Colton" -City "CA, Compton" -City "CA, Concord" -City "CA, Corona" -City "CA, Costa Mesa" -City "CA, Covina" -City "CA, Culver City" -City "CA, Cupertino" -City "CA, Cypress" -City "CA, Daly City" -City "CA, Dana Point" -City "CA, Danville" -City "CA, Davis" -City "CA, Diamond Bar" -City "CA, Downey" -City "CA, Dublin" -City "CA, East Los Angeles" -City "CA, El Cajon" -City "CA, El Dorado Hills" -City "CA, El Monte" -City "CA, Elk Grove" -City "CA, Encinitas" -City "CA, Escondido" -City "CA, Fairfield" -City "CA, Florence-Graham" -City "CA, Florin" -City "CA, Folsom" -City "CA, Fontana" -City "CA, Fountain Valley" -City "CA, Fremont" -City "CA, Fresno" -City "CA, Fullerton" -City "CA, Garden Grove" -City "CA, Gardena" -City "CA, Gilroy" -City "CA, Glendale" -City "CA, Glendora" -City "CA, Hacienda Heights" -City "CA, Hanford" -City "CA, Hawthorne" -City "CA, Hayward" -City "CA, Hemet" -City "CA, Hesperia" -City "CA, Highland" -City "CA, Huntington Beach" -City "CA, Huntington Park" -City "CA, Indio" -City "CA, Inglewood" -City "CA, Irvine" -City "CA, La Habra" -City "CA, La Mesa" -City "CA, La Quinta" -City "CA, Laguna Niguel" -City "CA, Lake Elsinore" -City "CA, Lake Forest" -City "CA, Lakewood" -City "CA, Lancaster" -City "CA, Lincoln" -City "CA, Livermore" -City "CA, Lodi" -City "CA, Long Beach" -City "CA, Los Angeles" -City "CA, Lynwood" -City "CA, Madera" -City "CA, Manhattan Beach" -City "CA, Manteca" -City "CA, Martinez" -City "CA, Menifee" -City "CA, Merced" -City "CA, Milpitas" -City "CA, Mission Viejo" -City "CA, Modesto" -City "CA, Montebello" -City "CA, Monterey Park" -City "CA, Moreno Valley" -City "CA, Mountain View" -City "CA, Murrieta" -City "CA, Napa" -City "CA, National City" -City "CA, Newport Beach" -City "CA, North Highlands" -City "CA, Norwalk" -City "CA, Novato" -City "CA, Oakland" -City "CA, Oceanside" -City "CA, Ontario" -City "CA, Orange" -City "CA, Oxnard" -City "CA, Palm Desert" -City "CA, Palm Springs" -City "CA, Palmdale" -City "CA, Palo Alto" -City "CA, Pasadena" -City "CA, Perris" -City "CA, Petaluma" -City "CA, Pico Rivera" -City "CA, Pittsburg" -City "CA, Placentia" -City "CA, Pleasanton" -City "CA, Pomona" -City "CA, Porterville" -City "CA, Poway" -City "CA, Rancho Cordova" -City "CA, Rancho Cucamonga" -City "CA, Rancho Palos Verdes" -City "CA, Rancho Santa Margarita" -City "CA, Redding" -City "CA, Redlands" -City "CA, Redondo Beach" -City "CA, Redwood City" -City "CA, Rialto" -City "CA, Richmond" -City "CA, Riverside" -City "CA, Rocklin" -City "CA, Rohnert Park" -City "CA, Rosemead" -City "CA, Roseville" -City "CA, Rowland Heights" -City "CA, Sacramento" -City "CA, Salinas" -City "CA, San Bernardino" -City "CA, San Bruno" -City "CA, San Buenaventura Ventura" -City "CA, San Clemente" -City "CA, San Diego" -City "CA, San Francisco" -City "CA, San Jose" -City "CA, San Leandro" -City "CA, San Luis Obispo" -City "CA, San Marcos" -City "CA, San Mateo" -City "CA, San Rafael" -City "CA, San Ramon" -City "CA, Santa Ana" -City "CA, Santa Barbara" -City "CA, Santa Clara" -City "CA, Santa Clarita" -City "CA, Santa Cruz" -City "CA, Santa Maria" -City "CA, Santa Monica" -City "CA, Santa Rosa" -City "CA, Santee" -City "CA, Simi Valley" -City "CA, South Gate" -City "CA, South Lake Tahoe" -City "CA, South San Francisco" -City "CA, South Whittier" -City "CA, Stockton" -City "CA, Sunnyvale" -City "CA, Temecula" -City "CA, Thousand Oaks" -City "CA, Torrance" -City "CA, Tracy" -City "CA, Tulare" -City "CA, Turlock" -City "CA, Tustin" -City "CA, Union City" -City "CA, Upland" -City "CA, Vacaville" -City "CA, Vallejo" -City "CA, Victorville" -City "CA, Visalia" -City "CA, Vista" -City "CA, Walnut Creek" -City "CA, West Covina" -City "CA, West Hollywood" -City "CA, West Sacramento" -City "CA, Westminster" -City "CA, Whittier" -City "CA, Woodland" -City "CA, Yorba Linda" -City "CA, Yuba City" -City "CA, Yucaipa" -City "CO, Arvada" -City "CO, Aurora" -City "CO, Boulder" -City "CO, Broomfield" -City "CO, Castle Rock" -City "CO, Centennial" -City "CO, Colorado Springs" -City "CO, Commerce City" -City "CO, Denver" -City "CO, Englewood" -City "CO, Fort Collins" -City "CO, Grand Junction" -City "CO, Greeley" -City "CO, Highlands Ranch" -City "CO, Lakewood" -City "CO, Littleton" -City "CO, Longmont" -City "CO, Loveland" -City "CO, Parker" -City "CO, Pueblo" -City "CO, Thornton" -City "CO, Westminster" -City "CT, Bridgeport" -City "CT, Bristol" -City "CT, Danbury" -City "CT, East Hartford" -City "CT, Hartford" -City "CT, Meriden" -City "CT, Middletown" -City "CT, Milford City Balance" -City "CT, New Britain" -City "CT, New Haven" -City "CT, Norwalk" -City "CT, Norwich" -City "CT, Shelton" -City "CT, Stamford" -City "CT, Stratford" -City "CT, Torrington" -City "CT, Waterbury" -City "CT, West Hartford" -City "CT, West Haven" -City "DC, Washington" -City "DE, Dover" -City "DE, Wilmington" -City "FL, Alafaya" -City "FL, Altamonte Springs" -City "FL, Apopka" -City "FL, Aventura" -City "FL, Boca Raton" -City "FL, Bonita Springs" -City "FL, Boynton Beach" -City "FL, Bradenton" -City "FL, Brandon" -City "FL, Cape Coral" -City "FL, Carrollwood" -City "FL, Clearwater" -City "FL, Coconut Creek" -City "FL, Coral Gables" -City "FL, Coral Springs" -City "FL, Country Club" -City "FL, Dania Beach" -City "FL, Davie" -City "FL, Daytona Beach" -City "FL, Deerfield Beach" -City "FL, Delray Beach" -City "FL, Deltona" -City "FL, Doral" -City "FL, Dunedin" -City "FL, East Lake" -City "FL, Estero" -City "FL, Fort Lauderdale" -City "FL, Fort Myers" -City "FL, Fort Pierce" -City "FL, Fountainebleau" -City "FL, Four Corners" -City "FL, Gainesville" -City "FL, Greenacres" -City "FL, Hallandale Beach" -City "FL, Hialeah" -City "FL, Hollywood" -City "FL, Homestead" -City "FL, Jacksonville" -City "FL, Jupiter" -City "FL, Kendale Lakes" -City "FL, Kendall" -City "FL, Kissimmee" -City "FL, Lake Worth" -City "FL, Lakeland" -City "FL, Largo" -City "FL, Lauderhill" -City "FL, Lehigh Acres" -City "FL, Marco Island" -City "FL, Margate" -City "FL, Melbourne" -City "FL, Merritt Island" -City "FL, Miami Beach" -City "FL, Miami Gardens" -City "FL, Miami" -City "FL, Miramar" -City "FL, Naples" -City "FL, New Smyrna Beach" -City "FL, North Fort Myers" -City "FL, North Miami Beach" -City "FL, North Miami" -City "FL, North Port" -City "FL, Oakland Park" -City "FL, Ocala" -City "FL, Orlando" -City "FL, Ormond Beach" -City "FL, Palm Bay" -City "FL, Palm Beach Gardens" -City "FL, Palm Coast" -City "FL, Palm Harbor" -City "FL, Panama City Beach" -City "FL, Panama City" -City "FL, Pembroke Pines" -City "FL, Pensacola" -City "FL, Pine Hills" -City "FL, Pinellas Park" -City "FL, Plantation" -City "FL, Poinciana" -City "FL, Pompano Beach" -City "FL, Port Charlotte" -City "FL, Port Orange" -City "FL, Port St Lucie" -City "FL, Riverview" -City "FL, Riviera Beach" -City "FL, Sanford" -City "FL, Sarasota" -City "FL, Spring Hill" -City "FL, St Cloud" -City "FL, St Petersburg" -City "FL, Sun City Center" -City "FL, Sunny Isles Beach" -City "FL, Sunrise" -City "FL, Tallahassee" -City "FL, Tamarac" -City "FL, Tamiami" -City "FL, Tampa" -City "FL, The Hammocks" -City "FL, The Villages" -City "FL, Titusville" -City "FL, Town N Country" -City "FL, University" -City "FL, Venice" -City "FL, Wellington" -City "FL, Wesley Chapel" -City "FL, West Palm Beach" -City "FL, Weston" -City "FL, Winter Haven" -City "GA, Albany" -City "GA, Alpharetta" -City "GA, Athens-Clarke County Unified Government Balance" -City "GA, Atlanta" -City "GA, Augusta-Richmond County Consolidated Government Balance" -City "GA, Columbus" -City "GA, Dunwoody" -City "GA, East Point" -City "GA, Hinesville" -City "GA, Johns Creek" -City "GA, Mableton" -City "GA, Macon" -City "GA, Marietta" -City "GA, Newnan" -City "GA, North Atlanta" -City "GA, Rome" -City "GA, Roswell" -City "GA, Sandy Springs" -City "GA, Savannah" -City "GA, Smyrna" -City "GA, Valdosta" -City "GA, Warner Robins" -City "HI, East Honolulu" -City "HI, Hilo" -City "HI, Kailua" -City "HI, Urban Honolulu" -City "IA, Ames" -City "IA, Ankeny" -City "IA, Cedar Falls" -City "IA, Cedar Rapids" -City "IA, Council Bluffs" -City "IA, Davenport" -City "IA, Des Moines" -City "IA, Dubuque" -City "IA, Iowa City" -City "IA, Marion" -City "IA, Sioux City" -City "IA, Urbandale" -City "IA, Waterloo" -City "IA, West Des Moines" -City "ID, Boise City" -City "ID, Caldwell" -City "ID, Coeur Dalene" -City "ID, Idaho Falls" -City "ID, Meridian" -City "ID, Nampa" -City "ID, Pocatello" -City "ID, Twin Falls" -City "IL, Arlington Heights" -City "IL, Aurora" -City "IL, Belleville" -City "IL, Berwyn" -City "IL, Bloomington" -City "IL, Bolingbrook" -City "IL, Buffalo Grove" -City "IL, Calumet City" -City "IL, Carol Stream" -City "IL, Champaign" -City "IL, Chicago" -City "IL, Cicero" -City "IL, Crystal Lake" -City "IL, Decatur" -City "IL, Dekalb" -City "IL, Des Plaines" -City "IL, Downers Grove" -City "IL, Elgin" -City "IL, Elmhurst" -City "IL, Evanston" -City "IL, Glenview" -City "IL, Hoffman Estates" -City "IL, Joliet" -City "IL, Lombard" -City "IL, Moline" -City "IL, Mount Prospect" -City "IL, Naperville" -City "IL, Normal" -City "IL, Oak Lawn" -City "IL, Oak Park" -City "IL, Orland Park" -City "IL, Palatine" -City "IL, Peoria" -City "IL, Quincy" -City "IL, Rock Island" -City "IL, Rockford" -City "IL, Schaumburg" -City "IL, Skokie" -City "IL, Springfield" -City "IL, Tinley Park" -City "IL, Urbana" -City "IL, Waukegan" -City "IL, Wheaton" -City "IL, Wheeling" -City "IN, Anderson" -City "IN, Bloomington" -City "IN, Carmel" -City "IN, Columbus" -City "IN, Elkhart" -City "IN, Evansville" -City "IN, Fishers" -City "IN, Fort Wayne" -City "IN, Gary" -City "IN, Greenwood" -City "IN, Hammond" -City "IN, Indianapolis City Balance" -City "IN, Jeffersonville" -City "IN, Kokomo" -City "IN, Lafayette" -City "IN, Lawrence" -City "IN, Mishawaka" -City "IN, Muncie" -City "IN, New Albany" -City "IN, Noblesville" -City "IN, Portage" -City "IN, Richmond" -City "IN, South Bend" -City "IN, Terre Haute" -City "KS, Hutchinson" -City "KS, Kansas City" -City "KS, Lawrence" -City "KS, Lenexa" -City "KS, Manhattan" -City "KS, Olathe" -City "KS, Overland Park" -City "KS, Salina" -City "KS, Shawnee" -City "KS, Topeka" -City "KS, Wichita" -City "KY, Bowling Green" -City "KY, Covington" -City "KY, Lexington-Fayette" -City "KY, Louisville Jefferson County Metro Government Balance" -City "KY, Owensboro" -City "LA, Alexandria" -City "LA, Baton Rouge" -City "LA, Bossier City" -City "LA, Kenner" -City "LA, Lafayette" -City "LA, Lake Charles" -City "LA, Metairie" -City "LA, Monroe" -City "LA, New Orleans" -City "LA, Shreveport" -City "MA, Arlington" -City "MA, Attleboro" -City "MA, Barnstable Town" -City "MA, Beverly" -City "MA, Boston" -City "MA, Brockton" -City "MA, Brookline" -City "MA, Cambridge" -City "MA, Chicopee" -City "MA, Everett" -City "MA, Fall River" -City "MA, Fitchburg" -City "MA, Framingham" -City "MA, Haverhill" -City "MA, Holyoke" -City "MA, Lawrence" -City "MA, Leominster" -City "MA, Lowell" -City "MA, Lynn" -City "MA, Malden" -City "MA, Marlborough" -City "MA, Medford" -City "MA, Methuen Town" -City "MA, New Bedford" -City "MA, Newton" -City "MA, Peabody" -City "MA, Pittsfield" -City "MA, Quincy" -City "MA, Revere" -City "MA, Salem" -City "MA, Somerville" -City "MA, Springfield" -City "MA, Taunton" -City "MA, Waltham" -City "MA, Watertown Town" -City "MA, Westfield" -City "MA, Weymouth Town" -City "MA, Woburn" -City "MA, Worcester" -City "MD, Annapolis" -City "MD, Aspen Hill" -City "MD, Baltimore" -City "MD, Bel Air South" -City "MD, Bethesda" -City "MD, Bowie" -City "MD, Catonsville" -City "MD, Columbia" -City "MD, Dundalk" -City "MD, Ellicott City" -City "MD, Essex" -City "MD, Frederick" -City "MD, Gaithersburg" -City "MD, Germantown" -City "MD, Glen Burnie" -City "MD, Hagerstown" -City "MD, North Bethesda" -City "MD, Ocean City" -City "MD, Odenton" -City "MD, Potomac" -City "MD, Rockville" -City "MD, Severn" -City "MD, Silver Spring" -City "MD, Towson" -City "MD, Waldorf" -City "MD, Wheaton" -City "MD, Woodlawn" -City "ME, Bangor" -City "ME, Lewiston" -City "ME, Portland" -City "MI, Ann Arbor" -City "MI, Battle Creek" -City "MI, Bay City" -City "MI, Dearborn Heights" -City "MI, Dearborn" -City "MI, Detroit" -City "MI, Farmington Hills" -City "MI, Flint" -City "MI, Grand Rapids" -City "MI, Jackson" -City "MI, Kalamazoo" -City "MI, Kentwood" -City "MI, Lansing" -City "MI, Lincoln Park" -City "MI, Livonia" -City "MI, Midland" -City "MI, Muskegon" -City "MI, Novi" -City "MI, Pontiac" -City "MI, Portage" -City "MI, Rochester Hills" -City "MI, Roseville" -City "MI, Royal Oak" -City "MI, Saginaw" -City "MI, Southfield" -City "MI, St Clair Shores" -City "MI, Sterling Heights" -City "MI, Taylor" -City "MI, Troy" -City "MI, Warren" -City "MI, Westland" -City "MI, Wyoming" -City "MN, Apple Valley" -City "MN, Blaine" -City "MN, Bloomington" -City "MN, Brooklyn Park" -City "MN, Burnsville" -City "MN, Coon Rapids" -City "MN, Duluth" -City "MN, Eagan" -City "MN, Eden Prairie" -City "MN, Edina" -City "MN, Lakeville" -City "MN, Mankato" -City "MN, Maple Grove" -City "MN, Maplewood" -City "MN, Minneapolis" -City "MN, Minnetonka" -City "MN, Moorhead" -City "MN, Plymouth" -City "MN, Richfield" -City "MN, Rochester" -City "MN, Roseville" -City "MN, St Cloud" -City "MN, St Louis Park" -City "MN, St Paul" -City "MN, Woodbury" -City "MO, Blue Springs" -City "MO, Cape Girardeau" -City "MO, Chesterfield" -City "MO, Columbia" -City "MO, Florissant" -City "MO, Independence" -City "MO, Jefferson City" -City "MO, Joplin" -City "MO, Kansas City" -City "MO, Lees Summit" -City "MO, Ofallon" -City "MO, Springfield" -City "MO, St Charles" -City "MO, St Joseph" -City "MO, St Louis" -City "MO, St Peters" -City "MO, University City" -City "MS, Biloxi" -City "MS, Gulfport" -City "MS, Hattiesburg" -City "MS, Jackson" -City "MS, Meridian" -City "MS, Southaven" -City "MS, Tupelo" -City "MT, Billings" -City "MT, Bozeman" -City "MT, Butte-Silver Bow Balance" -City "MT, Great Falls" -City "MT, Missoula" -City "NC, Asheville" -City "NC, Burlington" -City "NC, Cary" -City "NC, Chapel Hill" -City "NC, Charlotte" -City "NC, Concord" -City "NC, Durham" -City "NC, Fayetteville" -City "NC, Gastonia" -City "NC, Goldsboro" -City "NC, Greensboro" -City "NC, Greenville" -City "NC, Hickory" -City "NC, High Point" -City "NC, Huntersville" -City "NC, Jacksonville" -City "NC, Kannapolis" -City "NC, Raleigh" -City "NC, Rocky Mount" -City "NC, Wilmington" -City "NC, Wilson" -City "NC, Winston-Salem" -City "ND, Bismarck" -City "ND, Fargo" -City "ND, Grand Forks" -City "ND, Minot" -City "NE, Bellevue" -City "NE, Grand Island" -City "NE, Lincoln" -City "NE, Omaha" -City "NH, Concord" -City "NH, Manchester" -City "NH, Nashua" -City "NJ, Atlantic City" -City "NJ, Bayonne" -City "NJ, Camden" -City "NJ, Clifton" -City "NJ, East Orange" -City "NJ, Elizabeth" -City "NJ, Fort Lee" -City "NJ, Hackensack" -City "NJ, Hoboken" -City "NJ, Jersey City" -City "NJ, Linden" -City "NJ, New Brunswick" -City "NJ, Newark" -City "NJ, Ocean City" -City "NJ, Passaic" -City "NJ, Paterson" -City "NJ, Perth Amboy" -City "NJ, Plainfield" -City "NJ, Sayreville" -City "NJ, Toms River" -City "NJ, Trenton" -City "NJ, Union City" -City "NJ, Vineland" -City "NJ, West New York" -City "NM, Albuquerque" -City "NM, Clovis" -City "NM, Farmington" -City "NM, Las Cruces" -City "NM, Rio Rancho" -City "NM, Roswell" -City "NM, Santa Fe" -City "NM, South Valley" -City "NV, Carson City" -City "NV, Enterprise" -City "NV, Henderson" -City "NV, Las Vegas" -City "NV, North Las Vegas" -City "NV, Pahrump" -City "NV, Paradise" -City "NV, Reno" -City "NV, Sparks" -City "NV, Spring Valley" -City "NV, Sunrise Manor" -City "NV, Whitney" -City "NY, Albany" -City "NY, Binghamton" -City "NY, Brighton" -City "NY, Buffalo" -City "NY, Cheektowaga" -City "NY, Coram" -City "NY, Hempstead" -City "NY, Irondequoit" -City "NY, Levittown" -City "NY, Long Beach" -City "NY, Mount Vernon" -City "NY, New Rochelle" -City "NY, New York" -City "NY, Niagara Falls" -City "NY, Rochester" -City "NY, Rome" -City "NY, Schenectady" -City "NY, Syracuse" -City "NY, Tonawanda" -City "NY, Troy" -City "NY, Utica" -City "NY, West Seneca" -City "NY, White Plains" -City "NY, Yonkers" -City "OH, Akron" -City "OH, Beavercreek" -City "OH, Boardman" -City "OH, Canton" -City "OH, Cincinnati" -City "OH, Cleveland Heights" -City "OH, Cleveland" -City "OH, Columbus" -City "OH, Cuyahoga Falls" -City "OH, Dayton" -City "OH, Delaware" -City "OH, Dublin" -City "OH, Elyria" -City "OH, Euclid" -City "OH, Fairborn" -City "OH, Fairfield" -City "OH, Findlay" -City "OH, Grove City" -City "OH, Hamilton" -City "OH, Huber Heights" -City "OH, Kettering" -City "OH, Lakewood" -City "OH, Lancaster" -City "OH, Lima" -City "OH, Lorain" -City "OH, Mansfield" -City "OH, Marion" -City "OH, Mentor" -City "OH, Middletown" -City "OH, Newark" -City "OH, Parma" -City "OH, Springfield" -City "OH, Stow" -City "OH, Strongsville" -City "OH, Toledo" -City "OH, Warren" -City "OH, Youngstown" -City "OK, Bartlesville" -City "OK, Broken Arrow" -City "OK, Edmond" -City "OK, Enid" -City "OK, Lawton" -City "OK, Midwest City" -City "OK, Moore" -City "OK, Muskogee" -City "OK, Norman" -City "OK, Oklahoma City" -City "OK, Stillwater" -City "OK, Tulsa" -City "OR, Albany" -City "OR, Aloha" -City "OR, Beaverton" -City "OR, Bend" -City "OR, Corvallis" -City "OR, Eugene" -City "OR, Grants Pass" -City "OR, Gresham" -City "OR, Hillsboro" -City "OR, Lake Oswego" -City "OR, Medford" -City "OR, Portland" -City "OR, Salem" -City "OR, Springfield" -City "OR, Tigard" -City "PA, Allentown" -City "PA, Altoona" -City "PA, Bethlehem" -City "PA, Erie" -City "PA, Harrisburg" -City "PA, Lancaster" -City "PA, Levittown" -City "PA, Philadelphia" -City "PA, Pittsburgh" -City "PA, Reading" -City "PA, Scranton" -City "PA, Wilkes-Barre" -City "PA, York" -City "RI, Cranston" -City "RI, East Providence" -City "RI, Pawtucket" -City "RI, Providence" -City "RI, Warwick" -City "RI, Woonsocket" -City "SC, Charleston" -City "SC, Columbia" -City "SC, Florence" -City "SC, Goose Creek" -City "SC, Greenville" -City "SC, Hilton Head Island" -City "SC, Mount Pleasant" -City "SC, Myrtle Beach" -City "SC, North Charleston" -City "SC, North Myrtle Beach" -City "SC, Rock Hill" -City "SC, Spartanburg" -City "SC, Summerville" -City "SC, Sumter" -City "SD, Rapid City" -City "SD, Sioux Falls" -City "TN, Bartlett" -City "TN, Chattanooga" -City "TN, Clarksville" -City "TN, Cleveland" -City "TN, Collierville" -City "TN, Columbia" -City "TN, Franklin" -City "TN, Germantown" -City "TN, Hendersonville" -City "TN, Jackson" -City "TN, Johnson City" -City "TN, Kingsport" -City "TN, Knoxville" -City "TN, Memphis" -City "TN, Murfreesboro" -City "TN, Nashville-Davidson Metropolitan Government Balance" -City "TN, Smyrna" -City "TX, Abilene" -City "TX, Allen" -City "TX, Amarillo" -City "TX, Arlington" -City "TX, Atascocita" -City "TX, Austin" -City "TX, Baytown" -City "TX, Beaumont" -City "TX, Bedford" -City "TX, Brownsville" -City "TX, Bryan" -City "TX, Burleson" -City "TX, Carrollton" -City "TX, Cedar Hill" -City "TX, Cedar Park" -City "TX, College Station" -City "TX, Conroe" -City "TX, Coppell" -City "TX, Corpus Christi" -City "TX, Dallas" -City "TX, Denton" -City "TX, Desoto" -City "TX, Edinburg" -City "TX, El Paso" -City "TX, Euless" -City "TX, Flower Mound" -City "TX, Fort Worth" -City "TX, Frisco" -City "TX, Galveston" -City "TX, Garland" -City "TX, Georgetown" -City "TX, Grand Prairie" -City "TX, Grapevine" -City "TX, Haltom City" -City "TX, Harlingen" -City "TX, Houston" -City "TX, Hurst" -City "TX, Irving" -City "TX, Keller" -City "TX, Killeen" -City "TX, Laredo" -City "TX, League City" -City "TX, Lewisville" -City "TX, Longview" -City "TX, Lubbock" -City "TX, Lufkin" -City "TX, Mansfield" -City "TX, Mcallen" -City "TX, Mckinney" -City "TX, Mesquite" -City "TX, Midland" -City "TX, Mission" -City "TX, Missouri City" -City "TX, New Braunfels" -City "TX, North Richland Hills" -City "TX, Odessa" -City "TX, Pasadena" -City "TX, Pearland" -City "TX, Pflugerville" -City "TX, Pharr" -City "TX, Plano" -City "TX, Port Arthur" -City "TX, Richardson" -City "TX, Round Rock" -City "TX, Rowlett" -City "TX, San Angelo" -City "TX, San Antonio" -City "TX, San Marcos" -City "TX, Sherman" -City "TX, Spring" -City "TX, Sugar Land" -City "TX, Temple" -City "TX, Texarkana" -City "TX, Texas City" -City "TX, The Colony" -City "TX, The Woodlands" -City "TX, Tyler" -City "TX, Victoria" -City "TX, Waco" -City "TX, Wichita Falls" -City "TX, Wylie" -City "UT, Layton" -City "UT, Lehi" -City "UT, Logan" -City "UT, Millcreek" -City "UT, Murray" -City "UT, Ogden" -City "UT, Orem" -City "UT, Provo" -City "UT, Salt Lake City" -City "UT, Sandy" -City "UT, South Jordan" -City "UT, St George" -City "UT, Taylorsville" -City "UT, West Jordan" -City "UT, West Valley City" -City "VA, Alexandria" -City "VA, Arlington" -City "VA, Ashburn" -City "VA, Blacksburg" -City "VA, Centreville" -City "VA, Charlottesville" -City "VA, Chesapeake" -City "VA, Dale City" -City "VA, Danville" -City "VA, Hampton" -City "VA, Harrisonburg" -City "VA, Lake Ridge" -City "VA, Leesburg" -City "VA, Lynchburg" -City "VA, Mclean" -City "VA, Mechanicsville" -City "VA, Newport News" -City "VA, Norfolk" -City "VA, Petersburg" -City "VA, Portsmouth" -City "VA, Reston" -City "VA, Richmond" -City "VA, Roanoke" -City "VA, Suffolk" -City "VA, Tuckahoe" -City "VA, Virginia Beach" -City "VT, Burlington" -City "WA, Auburn" -City "WA, Bellevue" -City "WA, Bellingham" -City "WA, Bremerton" -City "WA, Edmonds" -City "WA, Everett" -City "WA, Federal Way" -City "WA, Kennewick" -City "WA, Kent" -City "WA, Kirkland" -City "WA, Lacey" -City "WA, Lakewood" -City "WA, Longview" -City "WA, Marysville" -City "WA, Olympia" -City "WA, Pasco" -City "WA, Puyallup" -City "WA, Redmond" -City "WA, Renton" -City "WA, Richland" -City "WA, Sammamish" -City "WA, Seattle" -City "WA, Shoreline" -City "WA, South Hill" -City "WA, Spokane Valley" -City "WA, Spokane" -City "WA, Tacoma" -City "WA, Vancouver" -City "WA, Yakima" -City "WI, Appleton" -City "WI, Beloit" -City "WI, Eau Claire" -City "WI, Fond Du Lac" -City "WI, Green Bay" -City "WI, Greenfield" -City "WI, Janesville" -City "WI, Kenosha" -City "WI, La Crosse" -City "WI, Madison" -City "WI, Manitowoc" -City "WI, Menomonee Falls" -City "WI, Milwaukee" -City "WI, New Berlin" -City "WI, Oshkosh" -City "WI, Racine" -City "WI, Sheboygan" -City "WI, Waukesha" -City "WI, Wausau" -City "WI, Wauwatosa" -City "WI, West Allis" -City "WV, Charleston" -City "WV, Huntington" -City "WV, Parkersburg" -City "WY, Casper" -City "WY, Cheyenne" -City In another census Place -City In another census Place -City Not in a census Place -City Not in a census Place -Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto -Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 -Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto -Clothes Dryer Void -Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 -Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 -Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 -Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 -Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 -Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 -Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 -Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 -Clothes Washer Void -Clothes Washer Presence None ResStockArguments clothes_washer_present=false -Clothes Washer Presence Void -Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true -Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 -Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 -Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 -Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto -Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto -Cooking Range Void -Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 -Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 -Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 -Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto -Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto -Cooling Setpoint Has Offset No -Cooling Setpoint Has Offset Yes -Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 -Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 -Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 -Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 -Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" -Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" -Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" -Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" -Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" -Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" -Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" -Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" -Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 -Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 -Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 -Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 -County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 -County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 -County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 -County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 -County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 -County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 -County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 -County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 -County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 -County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 -County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 -County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 -County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 -County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 -County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 -County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 -County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 -County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 -County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 -County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 -County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 -County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 -County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 -County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 -County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 -County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 -County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 -County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 -County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 -County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 -County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 -County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 -County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 -County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 -County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 -County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 -County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 -County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 -County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 -County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 -County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 -County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 -County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 -County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 -County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 -County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 -County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 -County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 -County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 -County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 -County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 -County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 -County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 -County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 -County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 -County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 -County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 -County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 -County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 -County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 -County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 -County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 -County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 -County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 -County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 -County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 -County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 -County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 -County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 -County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 -County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 -County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 -County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 -County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 -County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 -County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 -County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 -County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 -County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 -County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 -County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 -County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 -County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 -County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 -County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 -County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 -County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 -County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 -County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 -County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 -County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 -County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 -County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 -County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 -County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 -County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 -County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 -County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 -County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 -County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 -County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 -County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 -County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 -County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 -County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 -County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 -County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 -County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 -County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 -County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 -County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 -County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 -County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 -County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 -County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 -County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 -County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 -County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 -County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 -County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 -County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 -County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 -County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 -County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 -County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 -County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 -County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 -County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 -County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 -County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 -County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 -County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 -County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 -County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 -County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 -County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 -County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 -County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 -County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 -County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 -County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 -County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 -County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 -County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 -County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 -County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 -County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 -County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 -County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 -County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 -County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 -County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 -County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 -County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 -County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 -County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 -County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 -County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 -County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 -County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 -County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 -County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 -County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 -County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 -County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 -County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 -County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 -County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 -County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 -County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 -County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 -County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 -County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 -County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 -County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 -County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 -County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 -County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 -County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 -County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 -County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 -County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 -County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 -County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 -County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 -County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 -County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 -County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 -County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 -County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 -County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 -County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 -County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 -County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 -County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 -County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 -County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 -County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 -County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 -County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 -County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 -County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 -County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 -County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 -County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 -County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 -County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 -County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 -County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 -County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 -County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 -County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 -County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 -County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 -County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 -County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 -County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 -County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 -County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 -County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 -County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 -County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 -County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 -County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 -County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 -County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 -County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 -County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 -County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 -County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 -County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 -County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 -County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 -County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 -County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 -County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 -County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 -County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 -County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 -County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 -County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 -County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 -County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 -County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 -County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 -County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 -County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 -County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 -County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 -County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 -County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 -County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 -County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 -County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 -County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 -County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 -County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 -County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 -County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 -County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 -County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 -County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 -County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 -County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 -County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 -County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 -County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 -County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 -County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 -County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 -County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 -County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 -County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 -County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 -County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 -County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 -County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 -County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 -County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 -County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 -County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 -County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 -County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 -County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 -County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 -County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 -County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 -County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 -County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 -County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 -County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 -County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 -County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 -County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 -County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 -County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 -County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 -County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 -County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 -County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 -County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 -County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 -County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 -County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 -County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 -County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 -County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 -County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 -County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 -County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 -County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 -County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 -County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 -County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 -County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 -County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 -County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 -County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 -County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 -County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 -County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 -County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 -County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 -County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 -County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 -County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 -County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 -County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 -County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 -County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 -County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 -County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 -County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 -County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 -County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 -County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 -County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 -County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 -County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 -County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 -County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 -County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 -County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 -County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 -County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 -County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 -County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 -County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 -County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 -County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 -County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 -County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 -County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 -County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 -County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 -County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 -County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 -County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 -County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 -County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 -County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 -County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 -County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 -County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 -County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 -County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 -County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 -County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 -County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 -County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 -County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 -County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 -County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 -County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 -County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 -County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 -County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 -County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 -County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 -County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 -County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 -County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 -County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 -County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 -County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 -County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 -County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 -County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 -County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 -County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 -County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 -County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 -County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 -County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 -County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 -County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 -County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 -County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 -County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 -County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 -County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 -County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 -County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 -County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 -County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 -County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 -County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 -County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 -County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 -County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 -County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 -County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 -County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 -County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 -County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 -County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 -County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 -County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 -County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 -County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 -County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 -County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 -County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 -County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 -County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 -County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 -County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 -County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 -County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 -County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 -County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 -County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 -County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 -County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 -County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 -County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 -County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 -County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 -County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 -County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 -County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 -County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 -County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 -County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 -County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 -County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 -County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 -County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 -County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 -County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 -County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 -County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 -County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 -County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 -County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 -County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 -County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 -County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 -County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 -County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 -County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 -County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 -County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 -County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 -County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 -County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 -County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 -County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 -County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 -County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 -County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 -County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 -County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 -County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 -County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 -County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 -County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 -County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 -County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 -County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 -County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 -County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 -County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 -County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 -County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 -County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 -County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 -County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 -County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 -County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 -County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 -County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 -County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 -County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 -County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 -County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 -County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 -County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 -County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 -County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 -County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 -County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 -County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 -County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 -County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 -County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 -County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 -County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 -County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 -County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 -County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 -County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 -County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 -County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 -County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 -County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 -County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 -County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 -County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 -County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 -County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 -County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 -County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 -County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 -County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 -County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 -County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 -County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 -County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 -County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 -County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 -County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 -County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 -County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 -County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 -County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 -County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 -County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 -County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 -County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 -County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 -County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 -County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 -County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 -County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 -County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 -County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 -County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 -County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 -County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 -County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 -County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 -County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 -County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 -County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 -County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 -County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 -County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 -County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 -County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 -County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 -County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 -County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 -County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 -County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 -County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 -County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 -County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 -County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 -County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 -County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 -County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 -County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 -County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 -County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 -County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 -County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 -County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 -County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 -County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 -County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 -County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 -County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 -County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 -County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 -County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 -County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 -County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 -County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 -County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 -County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 -County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 -County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 -County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 -County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 -County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 -County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 -County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 -County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 -County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 -County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 -County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 -County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 -County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 -County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 -County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 -County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 -County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 -County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 -County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 -County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 -County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 -County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 -County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 -County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 -County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 -County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 -County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 -County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 -County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 -County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 -County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 -County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 -County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 -County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 -County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 -County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 -County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 -County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 -County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 -County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 -County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 -County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 -County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 -County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 -County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 -County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 -County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 -County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 -County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 -County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 -County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 -County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 -County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 -County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 -County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 -County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 -County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 -County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 -County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 -County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 -County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 -County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 -County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 -County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 -County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 -County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 -County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 -County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 -County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 -County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 -County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 -County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 -County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 -County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 -County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 -County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 -County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 -County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 -County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 -County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 -County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 -County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 -County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 -County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 -County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 -County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 -County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 -County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 -County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 -County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 -County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 -County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 -County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 -County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 -County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 -County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 -County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 -County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 -County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 -County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 -County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 -County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 -County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 -County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 -County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 -County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 -County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 -County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 -County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 -County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 -County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 -County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 -County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 -County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 -County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 -County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 -County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 -County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 -County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 -County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 -County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 -County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 -County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 -County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 -County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 -County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 -County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 -County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 -County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 -County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 -County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 -County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 -County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 -County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 -County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 -County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 -County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 -County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 -County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 -County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 -County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 -County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 -County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 -County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 -County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 -County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 -County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 -County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 -County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 -County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 -County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 -County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 -County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 -County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 -County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 -County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 -County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 -County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 -County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 -County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 -County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 -County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 -County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 -County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 -County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 -County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 -County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 -County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 -County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 -County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 -County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 -County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 -County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 -County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 -County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 -County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 -County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 -County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 -County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 -County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 -County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 -County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 -County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 -County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 -County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 -County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 -County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 -County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 -County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 -County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 -County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 -County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 -County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 -County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 -County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 -County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 -County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 -County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 -County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 -County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 -County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 -County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 -County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 -County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 -County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 -County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 -County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 -County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 -County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 -County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 -County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 -County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 -County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 -County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 -County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 -County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 -County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 -County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 -County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 -County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 -County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 -County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 -County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 -County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 -County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 -County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 -County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 -County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 -County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 -County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 -County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 -County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 -County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 -County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 -County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 -County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 -County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 -County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 -County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 -County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 -County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 -County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 -County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 -County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 -County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 -County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 -County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 -County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 -County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 -County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 -County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 -County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 -County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 -County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 -County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 -County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 -County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 -County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 -County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 -County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 -County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 -County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 -County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 -County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 -County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 -County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 -County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 -County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 -County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 -County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 -County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 -County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 -County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 -County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 -County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 -County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 -County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 -County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 -County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 -County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 -County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 -County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 -County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 -County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 -County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 -County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 -County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 -County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 -County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 -County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 -County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 -County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 -County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 -County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 -County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 -County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 -County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 -County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 -County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 -County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 -County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 -County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 -County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 -County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 -County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 -County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 -County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 -County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 -County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 -County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 -County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 -County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 -County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 -County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 -County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 -County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 -County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 -County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 -County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 -County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 -County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 -County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 -County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 -County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 -County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 -County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 -County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 -County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 -County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 -County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 -County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 -County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 -County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 -County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 -County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 -County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 -County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 -County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 -County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 -County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 -County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 -County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 -County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 -County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 -County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 -County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 -County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 -County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 -County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 -County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 -County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 -County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 -County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 -County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 -County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 -County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 -County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 -County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 -County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 -County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 -County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 -County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 -County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 -County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 -County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 -County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 -County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 -County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 -County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 -County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 -County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 -County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 -County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 -County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 -County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 -County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 -County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 -County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 -County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 -County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 -County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 -County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 -County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 -County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 -County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 -County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 -County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 -County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 -County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 -County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 -County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 -County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 -County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 -County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 -County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 -County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 -County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 -County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 -County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 -County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 -County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 -County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 -County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 -County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 -County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 -County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 -County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 -County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 -County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 -County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 -County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 -County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 -County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 -County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 -County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 -County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 -County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 -County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 -County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 -County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 -County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 -County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 -County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 -County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 -County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 -County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 -County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 -County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 -County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 -County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 -County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 -County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 -County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 -County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 -County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 -County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 -County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 -County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 -County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 -County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 -County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 -County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 -County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 -County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 -County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 -County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 -County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 -County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 -County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 -County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 -County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 -County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 -County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 -County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 -County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 -County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 -County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 -County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 -County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 -County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 -County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 -County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 -County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 -County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 -County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 -County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 -County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 -County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 -County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 -County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 -County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 -County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 -County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 -County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 -County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 -County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 -County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 -County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 -County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 -County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 -County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 -County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 -County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 -County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 -County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 -County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 -County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 -County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 -County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 -County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 -County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 -County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 -County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 -County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 -County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 -County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 -County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 -County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 -County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 -County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 -County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 -County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 -County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 -County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 -County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 -County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 -County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 -County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 -County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 -County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 -County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 -County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 -County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 -County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 -County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 -County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 -County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 -County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 -County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 -County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 -County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 -County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 -County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 -County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 -County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 -County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 -County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 -County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 -County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 -County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 -County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 -County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 -County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 -County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 -County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 -County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 -County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 -County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 -County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 -County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 -County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 -County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 -County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 -County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 -County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 -County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 -County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 -County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 -County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 -County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 -County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 -County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 -County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 -County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 -County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 -County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 -County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 -County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 -County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 -County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 -County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 -County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 -County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 -County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 -County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 -County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 -County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 -County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 -County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 -County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 -County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 -County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 -County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 -County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 -County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 -County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 -County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 -County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 -County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 -County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 -County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 -County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 -County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 -County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 -County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 -County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 -County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 -County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 -County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 -County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 -County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 -County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 -County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 -County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 -County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 -County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 -County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 -County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 -County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 -County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 -County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 -County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 -County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 -County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 -County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 -County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 -County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 -County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 -County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 -County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 -County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 -County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 -County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 -County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 -County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 -County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 -County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 -County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 -County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 -County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 -County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 -County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 -County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 -County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 -County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 -County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 -County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 -County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 -County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 -County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 -County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 -County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 -County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 -County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 -County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 -County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 -County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 -County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 -County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 -County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 -County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 -County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 -County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 -County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 -County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 -County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 -County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 -County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 -County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 -County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 -County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 -County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 -County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 -County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 -County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 -County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 -County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 -County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 -County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 -County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 -County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 -County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 -County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 -County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 -County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 -County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 -County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 -County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 -County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 -County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 -County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 -County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 -County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 -County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 -County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 -County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 -County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 -County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 -County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 -County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 -County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 -County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 -County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 -County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 -County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 -County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 -County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 -County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 -County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 -County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 -County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 -County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 -County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 -County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 -County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 -County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 -County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 -County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 -County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 -County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 -County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 -County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 -County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 -County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 -County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 -County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 -County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 -County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 -County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 -County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 -County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 -County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 -County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 -County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 -County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 -County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 -County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 -County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 -County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 -County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 -County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 -County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 -County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 -County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 -County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 -County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 -County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 -County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 -County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 -County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 -County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 -County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 -County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 -County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 -County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 -County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 -County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 -County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 -County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 -County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 -County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 -County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 -County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 -County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 -County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 -County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 -County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 -County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 -County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 -County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 -County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 -County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 -County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 -County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 -County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 -County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 -County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 -County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 -County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 -County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 -County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 -County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 -County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 -County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 -County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 -County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 -County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 -County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 -County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 -County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 -County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 -County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 -County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 -County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 -County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 -County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 -County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 -County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 -County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 -County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 -County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 -County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 -County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 -County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 -County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 -County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 -County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 -County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 -County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 -County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 -County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 -County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 -County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 -County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 -County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 -County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 -County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 -County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 -County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 -County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 -County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 -County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 -County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 -County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 -County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 -County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 -County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 -County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 -County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 -County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 -County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 -County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 -County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 -County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 -County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 -County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 -County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 -County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 -County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 -County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 -County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 -County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 -County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 -County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 -County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 -County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 -County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 -County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 -County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 -County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 -County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 -County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 -County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 -County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 -County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 -County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 -County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 -County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 -County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 -County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 -County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 -County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 -County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 -County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 -County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 -County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 -County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 -County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 -County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 -County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 -County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 -County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 -County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 -County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 -County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 -County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 -County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 -County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 -County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 -County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 -County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 -County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 -County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 -County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 -County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 -County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 -County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 -County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 -County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 -County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 -County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 -County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 -County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 -County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 -County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 -County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 -County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 -County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 -County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 -County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 -County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 -County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 -County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 -County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 -County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 -County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 -County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 -County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 -County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 -County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 -County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 -County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 -County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 -County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 -County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 -County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 -County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 -County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 -County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 -County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 -County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 -County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 -County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 -County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 -County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 -County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 -County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 -County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 -County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 -County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 -County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 -County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 -County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 -County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 -County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 -County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 -County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 -County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 -County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 -County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 -County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 -County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 -County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 -County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 -County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 -County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 -County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 -County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 -County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 -County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 -County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 -County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 -County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 -County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 -County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 -County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 -County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 -County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 -County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 -County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 -County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 -County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 -County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 -County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 -County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 -County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 -County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 -County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 -County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 -County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 -County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 -County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 -County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 -County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 -County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 -County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 -County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 -County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 -County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 -County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 -County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 -County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 -County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 -County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 -County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 -County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 -County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 -County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 -County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 -County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 -County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 -County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 -County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 -County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 -County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 -County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 -County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 -County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 -County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 -County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 -County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 -County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 -County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 -County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 -County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 -County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 -County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 -County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 -County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 -County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 -County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 -County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 -County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 -County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 -County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 -County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 -County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 -County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 -County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 -County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 -County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 -County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 -County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 -County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 -County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 -County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 -County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 -County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 -County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 -County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 -County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 -County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 -County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 -County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 -County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 -County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 -County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 -County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 -County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 -County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 -County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 -County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 -County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 -County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 -County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 -County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 -County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 -County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 -County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 -County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 -County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 -County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 -County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 -County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 -County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 -County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 -County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 -County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 -County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 -County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 -County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 -County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 -County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 -County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 -County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 -County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 -County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 -County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 -County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 -County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 -County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 -County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 -County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 -County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 -County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 -County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 -County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 -County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 -County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 -County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 -County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 -County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 -County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 -County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 -County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 -County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 -County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 -County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 -County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 -County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 -County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 -County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 -County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 -County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 -County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 -County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 -County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 -County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 -County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 -County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 -County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 -County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 -County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 -County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 -County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 -County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 -County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 -County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 -County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 -County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 -County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 -County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 -County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 -County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 -County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 -County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 -County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 -County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 -County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 -County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 -County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 -County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 -County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 -County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 -County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 -County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 -County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 -County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 -County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 -County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 -County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 -County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 -County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 -County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 -County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 -County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 -County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 -County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 -County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 -County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 -County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 -County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 -County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 -County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 -County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 -County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 -County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 -County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 -County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 -County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 -County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 -County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 -County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 -County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 -County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 -County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 -County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 -County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 -County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 -County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 -County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 -County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 -County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 -County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 -County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 -County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 -County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 -County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 -County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 -County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 -County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 -County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 -County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 -County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 -County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 -County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 -County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 -County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 -County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 -County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 -County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 -County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 -County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 -County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 -County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 -County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 -County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 -County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 -County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 -County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 -County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 -County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 -County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 -County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 -County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 -County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 -County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 -County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 -County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 -County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 -County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 -County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 -County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 -County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 -County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 -County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 -County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 -County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 -County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 -County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 -County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 -County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 -County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 -County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 -County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 -County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 -County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 -County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 -County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 -County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 -County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 -County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 -County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 -County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 -County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 -County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 -County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 -County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 -County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 -County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 -County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 -County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 -County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 -County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 -County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 -County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 -County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 -County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 -County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 -County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 -County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 -County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 -County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 -County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 -County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 -County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 -County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 -County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 -County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 -County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 -County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 -County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 -County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 -County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 -County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 -County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 -County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 -County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 -County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 -County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 -County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 -County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 -County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 -County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 -County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 -County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 -County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 -County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 -County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 -County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 -County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 -County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 -County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 -County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 -County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 -County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 -County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 -County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 -County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 -County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 -County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 -County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 -County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 -County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 -County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 -County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 -County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 -County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 -County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 -County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 -County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 -County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 -County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 -County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 -County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 -County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 -County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 -County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 -County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 -County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 -County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 -County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 -County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 -County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 -County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 -County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 -County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 -County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 -County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 -County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 -County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 -County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 -County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 -County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 -County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 -County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 -County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 -County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 -County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 -County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 -County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 -County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 -County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 -County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 -County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 -County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 -County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 -County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 -County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 -County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 -County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 -County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 -County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 -County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 -County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 -County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 -County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 -County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 -County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 -County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 -County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 -County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 -County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 -County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 -County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 -County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 -County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 -County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 -County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 -County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 -County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 -County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 -County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 -County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 -County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 -County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 -County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 -County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 -County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 -County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 -County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 -County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 -County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 -County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 -County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 -County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 -County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 -County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 -County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 -County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 -County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 -County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 -County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 -County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 -County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 -County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 -County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 -County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 -County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 -County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 -County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 -County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 -County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 -County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 -County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 -County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 -County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 -County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 -County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 -County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 -County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 -County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 -County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 -County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 -County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 -County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 -County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 -County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 -County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 -County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 -County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 -County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 -County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 -County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 -County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 -County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 -County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 -County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 -County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 -County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 -County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 -County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 -County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 -County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 -County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 -County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 -County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 -County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 -County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 -County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 -County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 -County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 -County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 -County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 -County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 -County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 -County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 -County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 -County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 -County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 -County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 -County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 -County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 -County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 -County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 -County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 -County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 -County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 -County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 -County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 -County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 -County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 -County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 -County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 -County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 -County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 -County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 -County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 -County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 -County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 -County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 -County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 -County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 -County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 -County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 -County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 -County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 -County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 -County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 -County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 -County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 -County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 -County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 -County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 -County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 -County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 -County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 -County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 -County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 -County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 -County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 -County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 -County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 -County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 -County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 -County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 -County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 -County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 -County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 -County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 -County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 -County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 -County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 -County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 -County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 -County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 -County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 -County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 -County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 -County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 -County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 -County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 -County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 -County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 -County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 -County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 -County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 -County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 -County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 -County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 -County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 -County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 -County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 -County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 -County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 -County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 -County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 -County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 -County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 -County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 -County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 -County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 -County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 -County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 -County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 -County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 -County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 -County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 -County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 -County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 -County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 -County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 -County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 -County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 -County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 -County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 -County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 -County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 -County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 -County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 -County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 -County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 -County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 -County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 -County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 -County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 -County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 -County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 -County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 -County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 -County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 -County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 -County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 -County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 -County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 -County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 -County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 -County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 -County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 -County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 -County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 -County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 -County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 -County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 -County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 -County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 -County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 -County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 -County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 -County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 -County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 -County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 -County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 -County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 -County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 -County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 -County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 -County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 -County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 -County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 -County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 -County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 -County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 -County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 -County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 -County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 -County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 -County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 -County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 -County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 -County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 -County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 -County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 -County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 -County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 -County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 -County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 -County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 -County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 -County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 -County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 -County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 -County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 -County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 -County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 -County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 -County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 -County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 -County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 -County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 -County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 -County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 -County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 -County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 -County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 -County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 -County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 -County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 -County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 -County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 -County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 -County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 -County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 -County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 -County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 -County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 -County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 -County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 -County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 -County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 -County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 -County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 -County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 -County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 -County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 -County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 -County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 -County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 -County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 -County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 -County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 -County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 -County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 -County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 -County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 -County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 -County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 -County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 -County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 -County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 -County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 -County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 -County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 -County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 -County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 -County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 -County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 -County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 -County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 -County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 -County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 -County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 -County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 -County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 -County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 -County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 -County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 -County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 -County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 -County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 -County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 -County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 -County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 -County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 -County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 -County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 -County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 -County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 -County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 -County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 -County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 -County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 -County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 -County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 -County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 -County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 -County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 -County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 -County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 -County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 -County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 -County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 -County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 -County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 -County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 -County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 -County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 -County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 -County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 -County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 -County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 -County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 -County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 -County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 -County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 -County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 -County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 -County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 -County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 -County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 -County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 -County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 -County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 -County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 -County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 -County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 -County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 -County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 -County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 -County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 -County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 -County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 -County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 -County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 -County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 -County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 -County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 -County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 -County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 -County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 -County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 -County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 -County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 -County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 -County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 -County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 -County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 -County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 -County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 -County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 -County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 -County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 -County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 -County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 -County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 -County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 -County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 -County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 -County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 -County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 -County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 -County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 -County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 -County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 -County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 -County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 -County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 -County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 -County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 -County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 -County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 -County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 -County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 -County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 -County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 -County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 -County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 -County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 -County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 -County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 -County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 -County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 -County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 -County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 -County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 -County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 -County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 -County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 -County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 -County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 -County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 -County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 -County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 -County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 -County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 -County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 -County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 -County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 -County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 -County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 -County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 -County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 -County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 -County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 -County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 -County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 -County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 -County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 -County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 -County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 -County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 -County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 -County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 -County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 -County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 -County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 -County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 -County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 -County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 -County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 -County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 -County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 -County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 -County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 -County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 -County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 -County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 -County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 -County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 -County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 -County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 -County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 -County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 -County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 -County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 -County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 -County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 -County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 -County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 -County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 -County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 -County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 -County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 -County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 -County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 -County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 -County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 -County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 -County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 -County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 -County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 -County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 -County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 -County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 -County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 -County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 -County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 -County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 -County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 -County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 -County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 -County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 -County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 -County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 -County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 -County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 -County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 -County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 -County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 -County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 -County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 -County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 -County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 -County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 -County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 -County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 -County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 -County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 -County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 -County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 -County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 -County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 -County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 -County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 -County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 -County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 -County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 -County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 -County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 -County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 -County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 -County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 -County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 -County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 -County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 -County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 -County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 -County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 -County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 -County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 -County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 -County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 -County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 -County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 -County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 -County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 -County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 -County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 -County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 -County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 -County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 -County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 -County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 -County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 -County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 -County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 -County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 -County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 -County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 -County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 -County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 -County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 -County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 -County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 -County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 -County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 -County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 -County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 -County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 -County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 -County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 -County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 -County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 -County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 -County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 -County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 -County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 -County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 -County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 -County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 -County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 -County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 -County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 -County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 -County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 -County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 -County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 -County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 -County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 -County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 -County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 -County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 -County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 -County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 -County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 -County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 -County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 -County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 -County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 -County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 -County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 -County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 -County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 -County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 -County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 -County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 -County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 -County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 -County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 -County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 -County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 -County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 -County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 -County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 -County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 -County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 -County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 -County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 -County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 -County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 -County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 -County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 -County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 -County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 -County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 -County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 -County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 -County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 -County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 -County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 -County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 -County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 -County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 -County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 -County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 -County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 -County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 -County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 -County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 -County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 -County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 -County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 -County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 -County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 -County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 -County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 -County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 -County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 -County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 -County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 -County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 -County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 -County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 -County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 -County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 -County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 -County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 -County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 -County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 -County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 -County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 -County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 -County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 -County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 -County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 -County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 -County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 -County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 -County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 -County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 -County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 -County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 -County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 -County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 -County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 -County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 -County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 -County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 -County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 -County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 -County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 -County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 -County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 -County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 -County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 -County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 -County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 -County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 -County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 -County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 -County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 -County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 -County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 -County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 -County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 -County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 -County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 -County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 -County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 -County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 -County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 -County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 -County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 -County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 -County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 -County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 -County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 -County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 -County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 -County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 -County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 -County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 -County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 -County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 -County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 -County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 -County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 -County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 -County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 -County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 -County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 -County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 -County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 -County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 -County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 -County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 -County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 -County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 -County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 -County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 -County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 -County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 -County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 -County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 -County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 -County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 -County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 -County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 -County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 -County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 -County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 -County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 -County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 -County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 -County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 -County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 -County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 -County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 -County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 -County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 -County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 -County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 -County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 -County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 -County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 -County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 -County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 -County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 -County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 -County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 -County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 -County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 -County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 -County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 -County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 -County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 -County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 -County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 -County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 -County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 -County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 -County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 -County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 -County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 -County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 -County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 -County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 -County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 -County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 -County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 -County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 -County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 -County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 -County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 -County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 -County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 -County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 -County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 -County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 -County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 -County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 -County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 -County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 -County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 -County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 -County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 -County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 -County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 -County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 -County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 -County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 -County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 -County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 -County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 -County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 -County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 -County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 -County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 -County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 -County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 -County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 -County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 -County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 -County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 -County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 -County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 -County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 -County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 -County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 -County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 -County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 -County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 -County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 -County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 -County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 -County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 -County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 -County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 -County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 -County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 -County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 -County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 -County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 -County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 -County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 -County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 -County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 -County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 -County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 -County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 -County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 -County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 -County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 -County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 -County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 -County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 -County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 -County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 -County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 -County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 -County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 -County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 -County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 -County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 -County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 -County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 -County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 -County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 -County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 -County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 -County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 -County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 -County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 -County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 -County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 -County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 -County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 -County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 -County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 -County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 -County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 -County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 -County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 -County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 -County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 -County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 -County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 -County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 -County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 -County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 -County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 -County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 -County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 -County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 -County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 -County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 -County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 -County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 -County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 -County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 -County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 -County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 -County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 -County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 -County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 -County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 -County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 -County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 -County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 -County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 -County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 -County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 -County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 -County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 -County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 -County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 -County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 -County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 -County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 -County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 -County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 -County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 -County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 -County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 -County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 -County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 -County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 -County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 -County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 -County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 -County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 -County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 -County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 -County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 -County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 -County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 -County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 -County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 -County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 -County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 -County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 -County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 -County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 -County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 -County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 -County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 -County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 -County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 -County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 -County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 -County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 -County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 -County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 -County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 -County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 -County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 -County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 -County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 -County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 -County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 -County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 -County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 -County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 -County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 -County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 -County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 -County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 -County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 -County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 -County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 -County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 -County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 -County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 -County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 -County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 -County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 -County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 -County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 -County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 -County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 -County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 -County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 -County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 -County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 -County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 -County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 -County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 -County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 -County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 -County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 -County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 -County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 -County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 -County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 -County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 -County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 -County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 -County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 -County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 -County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 -County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 -County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 -County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 -County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 -County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 -County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 -County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 -County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 -County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 -County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 -County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 -County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 -County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 -County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 -County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 -County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 -County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 -County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 -County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 -County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 -County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 -County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 -County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 -County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 -County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 -County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 -County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 -County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 -County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 -County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 -County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 -County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 -County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 -County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 -County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 -County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 -County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 -County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 -County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 -County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 -County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 -County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 -County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 -County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 -County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 -County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 -County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 -County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 -County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 -County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 -County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 -County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 -County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 -County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 -County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 -County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 -County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 -County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 -County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 -County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 -County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 -County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 -County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 -County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 -County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 -County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 -County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 -County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 -County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 -County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 -County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 -County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 -County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 -County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 -County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 -County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 -County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 -County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 -County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 -County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 -County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 -County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 -County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 -County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 -County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 -County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 -County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 -County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 -County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 -County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 -County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 -County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 -County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 -County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 -County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 -County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 -County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 -County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 -County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 -County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 -County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 -County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 -County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 -County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 -County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 -County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 -County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 -County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 -County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 -County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 -County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 -County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 -County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 -County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 -County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 -County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 -County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 -County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 -County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 -County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 -County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 -County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 -County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 -County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 -County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 -County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 -County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 -County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 -County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 -County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 -County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 -County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 -County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 -County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 -County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 -County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 -County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 -County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 -County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 -County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 -County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 -County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 -County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 -County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 -County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 -County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 -County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 -County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 -County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 -County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 -County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 -County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 -County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 -County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 -County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 -County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 -County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 -County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 -County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 -County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 -County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 -County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 -County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 -County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 -County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 -County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 -County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 -County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 -County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 -County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 -County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 -County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 -County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 -County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 -County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 -County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 -County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 -County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 -County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 -County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 -County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 -County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 -County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 -County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 -County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 -County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 -County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 -County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 -County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 -County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 -County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 -County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 -County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 -County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 -County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 -County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 -County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 -County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 -County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 -County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 -County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 -County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 -County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 -County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 -County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 -County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 -County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 -County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 -County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 -County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 -County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 -County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 -County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 -County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 -County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 -County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 -County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 -County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 -County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 -County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 -County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 -County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 -County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 -County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 -County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 -County and PUMA "G0100010, G01002100" -County and PUMA "G0100030, G01002600" -County and PUMA "G0100050, G01002400" -County and PUMA "G0100070, G01001700" -County and PUMA "G0100090, G01000800" -County and PUMA "G0100110, G01002400" -County and PUMA "G0100130, G01002300" -County and PUMA "G0100150, G01001100" -County and PUMA "G0100170, G01001800" -County and PUMA "G0100190, G01001000" -County and PUMA "G0100210, G01001800" -County and PUMA "G0100230, G01002200" -County and PUMA "G0100250, G01002200" -County and PUMA "G0100270, G01001000" -County and PUMA "G0100290, G01001000" -County and PUMA "G0100310, G01002300" -County and PUMA "G0100330, G01000100" -County and PUMA "G0100350, G01002200" -County and PUMA "G0100370, G01001800" -County and PUMA "G0100390, G01002300" -County and PUMA "G0100410, G01002300" -County and PUMA "G0100430, G01000700" -County and PUMA "G0100450, G01002500" -County and PUMA "G0100470, G01001700" -County and PUMA "G0100490, G01000400" -County and PUMA "G0100510, G01002100" -County and PUMA "G0100530, G01002200" -County and PUMA "G0100550, G01000900" -County and PUMA "G0100570, G01001400" -County and PUMA "G0100590, G01000100" -County and PUMA "G0100610, G01002500" -County and PUMA "G0100630, G01001700" -County and PUMA "G0100650, G01001700" -County and PUMA "G0100670, G01002500" -County and PUMA "G0100690, G01002500" -County and PUMA "G0100710, G01000400" -County and PUMA "G0100730, G01001301" -County and PUMA "G0100730, G01001302" -County and PUMA "G0100730, G01001303" -County and PUMA "G0100730, G01001304" -County and PUMA "G0100730, G01001305" -County and PUMA "G0100750, G01001400" -County and PUMA "G0100770, G01000100" -County and PUMA "G0100790, G01000600" -County and PUMA "G0100810, G01001900" -County and PUMA "G0100830, G01000200" -County and PUMA "G0100850, G01002100" -County and PUMA "G0100870, G01002400" -County and PUMA "G0100890, G01000200" -County and PUMA "G0100890, G01000301" -County and PUMA "G0100890, G01000302" -County and PUMA "G0100890, G01000500" -County and PUMA "G0100910, G01001700" -County and PUMA "G0100930, G01000100" -County and PUMA "G0100930, G01001400" -County and PUMA "G0100950, G01000500" -County and PUMA "G0100970, G01002701" -County and PUMA "G0100970, G01002702" -County and PUMA "G0100970, G01002703" -County and PUMA "G0100990, G01002200" -County and PUMA "G0101010, G01002000" -County and PUMA "G0101010, G01002100" -County and PUMA "G0101030, G01000600" -County and PUMA "G0101050, G01001700" -County and PUMA "G0101070, G01001500" -County and PUMA "G0101090, G01002400" -County and PUMA "G0101110, G01001000" -County and PUMA "G0101130, G01002400" -County and PUMA "G0101150, G01000800" -County and PUMA "G0101170, G01001200" -County and PUMA "G0101190, G01001700" -County and PUMA "G0101210, G01001000" -County and PUMA "G0101230, G01001800" -County and PUMA "G0101250, G01001500" -County and PUMA "G0101250, G01001600" -County and PUMA "G0101270, G01001400" -County and PUMA "G0101290, G01002200" -County and PUMA "G0101310, G01002200" -County and PUMA "G0101330, G01000700" -County and PUMA "G0200130, G02000400" -County and PUMA "G0200160, G02000400" -County and PUMA "G0200200, G02000101" -County and PUMA "G0200200, G02000102" -County and PUMA "G0200500, G02000400" -County and PUMA "G0200600, G02000400" -County and PUMA "G0200680, G02000300" -County and PUMA "G0200700, G02000400" -County and PUMA "G0200900, G02000300" -County and PUMA "G0201000, G02000300" -County and PUMA "G0201050, G02000400" -County and PUMA "G0201100, G02000300" -County and PUMA "G0201220, G02000200" -County and PUMA "G0201300, G02000300" -County and PUMA "G0201500, G02000400" -County and PUMA "G0201580, G02000400" -County and PUMA "G0201640, G02000400" -County and PUMA "G0201700, G02000200" -County and PUMA "G0201800, G02000400" -County and PUMA "G0201850, G02000400" -County and PUMA "G0201880, G02000400" -County and PUMA "G0201950, G02000400" -County and PUMA "G0201980, G02000400" -County and PUMA "G0202200, G02000400" -County and PUMA "G0202300, G02000300" -County and PUMA "G0202400, G02000300" -County and PUMA "G0202610, G02000300" -County and PUMA "G0202750, G02000400" -County and PUMA "G0202820, G02000400" -County and PUMA "G0202900, G02000400" -County and PUMA "G0400010, G04000300" -County and PUMA "G0400030, G04000900" -County and PUMA "G0400050, G04000400" -County and PUMA "G0400070, G04000800" -County and PUMA "G0400090, G04000800" -County and PUMA "G0400110, G04000800" -County and PUMA "G0400120, G04000600" -County and PUMA "G0400130, G04000100" -County and PUMA "G0400130, G04000101" -County and PUMA "G0400130, G04000102" -County and PUMA "G0400130, G04000103" -County and PUMA "G0400130, G04000104" -County and PUMA "G0400130, G04000105" -County and PUMA "G0400130, G04000106" -County and PUMA "G0400130, G04000107" -County and PUMA "G0400130, G04000108" -County and PUMA "G0400130, G04000109" -County and PUMA "G0400130, G04000110" -County and PUMA "G0400130, G04000111" -County and PUMA "G0400130, G04000112" -County and PUMA "G0400130, G04000113" -County and PUMA "G0400130, G04000114" -County and PUMA "G0400130, G04000115" -County and PUMA "G0400130, G04000116" -County and PUMA "G0400130, G04000117" -County and PUMA "G0400130, G04000118" -County and PUMA "G0400130, G04000119" -County and PUMA "G0400130, G04000120" -County and PUMA "G0400130, G04000121" -County and PUMA "G0400130, G04000122" -County and PUMA "G0400130, G04000123" -County and PUMA "G0400130, G04000124" -County and PUMA "G0400130, G04000125" -County and PUMA "G0400130, G04000126" -County and PUMA "G0400130, G04000127" -County and PUMA "G0400130, G04000128" -County and PUMA "G0400130, G04000129" -County and PUMA "G0400130, G04000130" -County and PUMA "G0400130, G04000131" -County and PUMA "G0400130, G04000132" -County and PUMA "G0400130, G04000133" -County and PUMA "G0400130, G04000134" -County and PUMA "G0400150, G04000600" -County and PUMA "G0400170, G04000300" -County and PUMA "G0400190, G04000201" -County and PUMA "G0400190, G04000202" -County and PUMA "G0400190, G04000203" -County and PUMA "G0400190, G04000204" -County and PUMA "G0400190, G04000205" -County and PUMA "G0400190, G04000206" -County and PUMA "G0400190, G04000207" -County and PUMA "G0400190, G04000208" -County and PUMA "G0400190, G04000209" -County and PUMA "G0400210, G04000800" -County and PUMA "G0400210, G04000803" -County and PUMA "G0400210, G04000805" -County and PUMA "G0400210, G04000807" -County and PUMA "G0400230, G04000900" -County and PUMA "G0400250, G04000500" -County and PUMA "G0400270, G04000700" -County and PUMA "G0500010, G05001700" -County and PUMA "G0500010, G05001800" -County and PUMA "G0500030, G05001800" -County and PUMA "G0500050, G05000300" -County and PUMA "G0500070, G05000100" -County and PUMA "G0500090, G05000300" -County and PUMA "G0500110, G05001800" -County and PUMA "G0500130, G05001900" -County and PUMA "G0500150, G05000300" -County and PUMA "G0500170, G05001800" -County and PUMA "G0500190, G05001600" -County and PUMA "G0500210, G05000500" -County and PUMA "G0500230, G05000400" -County and PUMA "G0500250, G05001800" -County and PUMA "G0500270, G05001900" -County and PUMA "G0500290, G05001300" -County and PUMA "G0500310, G05000500" -County and PUMA "G0500310, G05000600" -County and PUMA "G0500330, G05001400" -County and PUMA "G0500350, G05000600" -County and PUMA "G0500370, G05000700" -County and PUMA "G0500390, G05001900" -County and PUMA "G0500410, G05001800" -County and PUMA "G0500430, G05001800" -County and PUMA "G0500450, G05001100" -County and PUMA "G0500470, G05001500" -County and PUMA "G0500490, G05000400" -County and PUMA "G0500510, G05001600" -County and PUMA "G0500530, G05001700" -County and PUMA "G0500550, G05000500" -County and PUMA "G0500570, G05002000" -County and PUMA "G0500590, G05001600" -County and PUMA "G0500610, G05001500" -County and PUMA "G0500630, G05000400" -County and PUMA "G0500650, G05000400" -County and PUMA "G0500670, G05000800" -County and PUMA "G0500690, G05001700" -County and PUMA "G0500710, G05001300" -County and PUMA "G0500730, G05002000" -County and PUMA "G0500750, G05000500" -County and PUMA "G0500770, G05000700" -County and PUMA "G0500790, G05001800" -County and PUMA "G0500810, G05002000" -County and PUMA "G0500830, G05001500" -County and PUMA "G0500850, G05001100" -County and PUMA "G0500870, G05000300" -County and PUMA "G0500890, G05000300" -County and PUMA "G0500910, G05002000" -County and PUMA "G0500930, G05000600" -County and PUMA "G0500950, G05000700" -County and PUMA "G0500970, G05001600" -County and PUMA "G0500990, G05002000" -County and PUMA "G0501010, G05000300" -County and PUMA "G0501030, G05001900" -County and PUMA "G0501050, G05001300" -County and PUMA "G0501070, G05000700" -County and PUMA "G0501090, G05002000" -County and PUMA "G0501110, G05000700" -County and PUMA "G0501130, G05001500" -County and PUMA "G0501150, G05001300" -County and PUMA "G0501170, G05000800" -County and PUMA "G0501190, G05000900" -County and PUMA "G0501190, G05001000" -County and PUMA "G0501210, G05000500" -County and PUMA "G0501230, G05000700" -County and PUMA "G0501250, G05001200" -County and PUMA "G0501270, G05001500" -County and PUMA "G0501290, G05000300" -County and PUMA "G0501310, G05001400" -County and PUMA "G0501330, G05001500" -County and PUMA "G0501350, G05000400" -County and PUMA "G0501370, G05000400" -County and PUMA "G0501390, G05001900" -County and PUMA "G0501410, G05000400" -County and PUMA "G0501430, G05000200" -County and PUMA "G0501450, G05000800" -County and PUMA "G0501470, G05000800" -County and PUMA "G0501490, G05001300" -County and PUMA "G0600010, G06000101" -County and PUMA "G0600010, G06000102" -County and PUMA "G0600010, G06000103" -County and PUMA "G0600010, G06000104" -County and PUMA "G0600010, G06000105" -County and PUMA "G0600010, G06000106" -County and PUMA "G0600010, G06000107" -County and PUMA "G0600010, G06000108" -County and PUMA "G0600010, G06000109" -County and PUMA "G0600010, G06000110" -County and PUMA "G0600030, G06000300" -County and PUMA "G0600050, G06000300" -County and PUMA "G0600070, G06000701" -County and PUMA "G0600070, G06000702" -County and PUMA "G0600090, G06000300" -County and PUMA "G0600110, G06001100" -County and PUMA "G0600130, G06001301" -County and PUMA "G0600130, G06001302" -County and PUMA "G0600130, G06001303" -County and PUMA "G0600130, G06001304" -County and PUMA "G0600130, G06001305" -County and PUMA "G0600130, G06001306" -County and PUMA "G0600130, G06001307" -County and PUMA "G0600130, G06001308" -County and PUMA "G0600130, G06001309" -County and PUMA "G0600150, G06001500" -County and PUMA "G0600170, G06001700" -County and PUMA "G0600190, G06001901" -County and PUMA "G0600190, G06001902" -County and PUMA "G0600190, G06001903" -County and PUMA "G0600190, G06001904" -County and PUMA "G0600190, G06001905" -County and PUMA "G0600190, G06001906" -County and PUMA "G0600190, G06001907" -County and PUMA "G0600210, G06001100" -County and PUMA "G0600230, G06002300" -County and PUMA "G0600250, G06002500" -County and PUMA "G0600270, G06000300" -County and PUMA "G0600290, G06002901" -County and PUMA "G0600290, G06002902" -County and PUMA "G0600290, G06002903" -County and PUMA "G0600290, G06002904" -County and PUMA "G0600290, G06002905" -County and PUMA "G0600310, G06003100" -County and PUMA "G0600330, G06003300" -County and PUMA "G0600350, G06001500" -County and PUMA "G0600370, G06003701" -County and PUMA "G0600370, G06003702" -County and PUMA "G0600370, G06003703" -County and PUMA "G0600370, G06003704" -County and PUMA "G0600370, G06003705" -County and PUMA "G0600370, G06003706" -County and PUMA "G0600370, G06003707" -County and PUMA "G0600370, G06003708" -County and PUMA "G0600370, G06003709" -County and PUMA "G0600370, G06003710" -County and PUMA "G0600370, G06003711" -County and PUMA "G0600370, G06003712" -County and PUMA "G0600370, G06003713" -County and PUMA "G0600370, G06003714" -County and PUMA "G0600370, G06003715" -County and PUMA "G0600370, G06003716" -County and PUMA "G0600370, G06003717" -County and PUMA "G0600370, G06003718" -County and PUMA "G0600370, G06003719" -County and PUMA "G0600370, G06003720" -County and PUMA "G0600370, G06003721" -County and PUMA "G0600370, G06003722" -County and PUMA "G0600370, G06003723" -County and PUMA "G0600370, G06003724" -County and PUMA "G0600370, G06003725" -County and PUMA "G0600370, G06003726" -County and PUMA "G0600370, G06003727" -County and PUMA "G0600370, G06003728" -County and PUMA "G0600370, G06003729" -County and PUMA "G0600370, G06003730" -County and PUMA "G0600370, G06003731" -County and PUMA "G0600370, G06003732" -County and PUMA "G0600370, G06003733" -County and PUMA "G0600370, G06003734" -County and PUMA "G0600370, G06003735" -County and PUMA "G0600370, G06003736" -County and PUMA "G0600370, G06003737" -County and PUMA "G0600370, G06003738" -County and PUMA "G0600370, G06003739" -County and PUMA "G0600370, G06003740" -County and PUMA "G0600370, G06003741" -County and PUMA "G0600370, G06003742" -County and PUMA "G0600370, G06003743" -County and PUMA "G0600370, G06003744" -County and PUMA "G0600370, G06003745" -County and PUMA "G0600370, G06003746" -County and PUMA "G0600370, G06003747" -County and PUMA "G0600370, G06003748" -County and PUMA "G0600370, G06003749" -County and PUMA "G0600370, G06003750" -County and PUMA "G0600370, G06003751" -County and PUMA "G0600370, G06003752" -County and PUMA "G0600370, G06003753" -County and PUMA "G0600370, G06003754" -County and PUMA "G0600370, G06003755" -County and PUMA "G0600370, G06003756" -County and PUMA "G0600370, G06003757" -County and PUMA "G0600370, G06003758" -County and PUMA "G0600370, G06003759" -County and PUMA "G0600370, G06003760" -County and PUMA "G0600370, G06003761" -County and PUMA "G0600370, G06003762" -County and PUMA "G0600370, G06003763" -County and PUMA "G0600370, G06003764" -County and PUMA "G0600370, G06003765" -County and PUMA "G0600370, G06003766" -County and PUMA "G0600370, G06003767" -County and PUMA "G0600370, G06003768" -County and PUMA "G0600370, G06003769" -County and PUMA "G0600390, G06003900" -County and PUMA "G0600410, G06004101" -County and PUMA "G0600410, G06004102" -County and PUMA "G0600430, G06000300" -County and PUMA "G0600450, G06003300" -County and PUMA "G0600470, G06004701" -County and PUMA "G0600470, G06004702" -County and PUMA "G0600490, G06001500" -County and PUMA "G0600510, G06000300" -County and PUMA "G0600530, G06005301" -County and PUMA "G0600530, G06005302" -County and PUMA "G0600530, G06005303" -County and PUMA "G0600550, G06005500" -County and PUMA "G0600570, G06005700" -County and PUMA "G0600590, G06005901" -County and PUMA "G0600590, G06005902" -County and PUMA "G0600590, G06005903" -County and PUMA "G0600590, G06005904" -County and PUMA "G0600590, G06005905" -County and PUMA "G0600590, G06005906" -County and PUMA "G0600590, G06005907" -County and PUMA "G0600590, G06005908" -County and PUMA "G0600590, G06005909" -County and PUMA "G0600590, G06005910" -County and PUMA "G0600590, G06005911" -County and PUMA "G0600590, G06005912" -County and PUMA "G0600590, G06005913" -County and PUMA "G0600590, G06005914" -County and PUMA "G0600590, G06005915" -County and PUMA "G0600590, G06005916" -County and PUMA "G0600590, G06005917" -County and PUMA "G0600590, G06005918" -County and PUMA "G0600610, G06006101" -County and PUMA "G0600610, G06006102" -County and PUMA "G0600610, G06006103" -County and PUMA "G0600630, G06001500" -County and PUMA "G0600650, G06006501" -County and PUMA "G0600650, G06006502" -County and PUMA "G0600650, G06006503" -County and PUMA "G0600650, G06006504" -County and PUMA "G0600650, G06006505" -County and PUMA "G0600650, G06006506" -County and PUMA "G0600650, G06006507" -County and PUMA "G0600650, G06006508" -County and PUMA "G0600650, G06006509" -County and PUMA "G0600650, G06006510" -County and PUMA "G0600650, G06006511" -County and PUMA "G0600650, G06006512" -County and PUMA "G0600650, G06006513" -County and PUMA "G0600650, G06006514" -County and PUMA "G0600650, G06006515" -County and PUMA "G0600670, G06006701" -County and PUMA "G0600670, G06006702" -County and PUMA "G0600670, G06006703" -County and PUMA "G0600670, G06006704" -County and PUMA "G0600670, G06006705" -County and PUMA "G0600670, G06006706" -County and PUMA "G0600670, G06006707" -County and PUMA "G0600670, G06006708" -County and PUMA "G0600670, G06006709" -County and PUMA "G0600670, G06006710" -County and PUMA "G0600670, G06006711" -County and PUMA "G0600670, G06006712" -County and PUMA "G0600690, G06005303" -County and PUMA "G0600710, G06007101" -County and PUMA "G0600710, G06007102" -County and PUMA "G0600710, G06007103" -County and PUMA "G0600710, G06007104" -County and PUMA "G0600710, G06007105" -County and PUMA "G0600710, G06007106" -County and PUMA "G0600710, G06007107" -County and PUMA "G0600710, G06007108" -County and PUMA "G0600710, G06007109" -County and PUMA "G0600710, G06007110" -County and PUMA "G0600710, G06007111" -County and PUMA "G0600710, G06007112" -County and PUMA "G0600710, G06007113" -County and PUMA "G0600710, G06007114" -County and PUMA "G0600710, G06007115" -County and PUMA "G0600730, G06007301" -County and PUMA "G0600730, G06007302" -County and PUMA "G0600730, G06007303" -County and PUMA "G0600730, G06007304" -County and PUMA "G0600730, G06007305" -County and PUMA "G0600730, G06007306" -County and PUMA "G0600730, G06007307" -County and PUMA "G0600730, G06007308" -County and PUMA "G0600730, G06007309" -County and PUMA "G0600730, G06007310" -County and PUMA "G0600730, G06007311" -County and PUMA "G0600730, G06007312" -County and PUMA "G0600730, G06007313" -County and PUMA "G0600730, G06007314" -County and PUMA "G0600730, G06007315" -County and PUMA "G0600730, G06007316" -County and PUMA "G0600730, G06007317" -County and PUMA "G0600730, G06007318" -County and PUMA "G0600730, G06007319" -County and PUMA "G0600730, G06007320" -County and PUMA "G0600730, G06007321" -County and PUMA "G0600730, G06007322" -County and PUMA "G0600750, G06007501" -County and PUMA "G0600750, G06007502" -County and PUMA "G0600750, G06007503" -County and PUMA "G0600750, G06007504" -County and PUMA "G0600750, G06007505" -County and PUMA "G0600750, G06007506" -County and PUMA "G0600750, G06007507" -County and PUMA "G0600770, G06007701" -County and PUMA "G0600770, G06007702" -County and PUMA "G0600770, G06007703" -County and PUMA "G0600770, G06007704" -County and PUMA "G0600790, G06007901" -County and PUMA "G0600790, G06007902" -County and PUMA "G0600810, G06008101" -County and PUMA "G0600810, G06008102" -County and PUMA "G0600810, G06008103" -County and PUMA "G0600810, G06008104" -County and PUMA "G0600810, G06008105" -County and PUMA "G0600810, G06008106" -County and PUMA "G0600830, G06008301" -County and PUMA "G0600830, G06008302" -County and PUMA "G0600830, G06008303" -County and PUMA "G0600850, G06008501" -County and PUMA "G0600850, G06008502" -County and PUMA "G0600850, G06008503" -County and PUMA "G0600850, G06008504" -County and PUMA "G0600850, G06008505" -County and PUMA "G0600850, G06008506" -County and PUMA "G0600850, G06008507" -County and PUMA "G0600850, G06008508" -County and PUMA "G0600850, G06008509" -County and PUMA "G0600850, G06008510" -County and PUMA "G0600850, G06008511" -County and PUMA "G0600850, G06008512" -County and PUMA "G0600850, G06008513" -County and PUMA "G0600850, G06008514" -County and PUMA "G0600870, G06008701" -County and PUMA "G0600870, G06008702" -County and PUMA "G0600890, G06008900" -County and PUMA "G0600910, G06005700" -County and PUMA "G0600930, G06001500" -County and PUMA "G0600950, G06009501" -County and PUMA "G0600950, G06009502" -County and PUMA "G0600950, G06009503" -County and PUMA "G0600970, G06009701" -County and PUMA "G0600970, G06009702" -County and PUMA "G0600970, G06009703" -County and PUMA "G0600990, G06009901" -County and PUMA "G0600990, G06009902" -County and PUMA "G0600990, G06009903" -County and PUMA "G0600990, G06009904" -County and PUMA "G0601010, G06010100" -County and PUMA "G0601030, G06001100" -County and PUMA "G0601050, G06001100" -County and PUMA "G0601070, G06010701" -County and PUMA "G0601070, G06010702" -County and PUMA "G0601070, G06010703" -County and PUMA "G0601090, G06000300" -County and PUMA "G0601110, G06011101" -County and PUMA "G0601110, G06011102" -County and PUMA "G0601110, G06011103" -County and PUMA "G0601110, G06011104" -County and PUMA "G0601110, G06011105" -County and PUMA "G0601110, G06011106" -County and PUMA "G0601130, G06011300" -County and PUMA "G0601150, G06010100" -County and PUMA "G0800010, G08000804" -County and PUMA "G0800010, G08000805" -County and PUMA "G0800010, G08000806" -County and PUMA "G0800010, G08000807" -County and PUMA "G0800010, G08000809" -County and PUMA "G0800010, G08000810" -County and PUMA "G0800010, G08000817" -County and PUMA "G0800010, G08000824" -County and PUMA "G0800030, G08000800" -County and PUMA "G0800050, G08000808" -County and PUMA "G0800050, G08000809" -County and PUMA "G0800050, G08000810" -County and PUMA "G0800050, G08000811" -County and PUMA "G0800050, G08000815" -County and PUMA "G0800050, G08000820" -County and PUMA "G0800050, G08000824" -County and PUMA "G0800070, G08000900" -County and PUMA "G0800090, G08000800" -County and PUMA "G0800110, G08000100" -County and PUMA "G0800130, G08000801" -County and PUMA "G0800130, G08000802" -County and PUMA "G0800130, G08000803" -County and PUMA "G0800130, G08000804" -County and PUMA "G0800140, G08000804" -County and PUMA "G0800140, G08000805" -County and PUMA "G0800150, G08000600" -County and PUMA "G0800170, G08000100" -County and PUMA "G0800190, G08000801" -County and PUMA "G0800210, G08000800" -County and PUMA "G0800230, G08000800" -County and PUMA "G0800250, G08000100" -County and PUMA "G0800270, G08000600" -County and PUMA "G0800290, G08001002" -County and PUMA "G0800310, G08000812" -County and PUMA "G0800310, G08000813" -County and PUMA "G0800310, G08000814" -County and PUMA "G0800310, G08000815" -County and PUMA "G0800310, G08000816" -County and PUMA "G0800330, G08000900" -County and PUMA "G0800350, G08000821" -County and PUMA "G0800350, G08000822" -County and PUMA "G0800350, G08000823" -County and PUMA "G0800370, G08000400" -County and PUMA "G0800390, G08000100" -County and PUMA "G0800390, G08000823" -County and PUMA "G0800410, G08004101" -County and PUMA "G0800410, G08004102" -County and PUMA "G0800410, G08004103" -County and PUMA "G0800410, G08004104" -County and PUMA "G0800410, G08004105" -County and PUMA "G0800410, G08004106" -County and PUMA "G0800430, G08000600" -County and PUMA "G0800450, G08000200" -County and PUMA "G0800470, G08000801" -County and PUMA "G0800490, G08000400" -County and PUMA "G0800510, G08000900" -County and PUMA "G0800530, G08000900" -County and PUMA "G0800550, G08000600" -County and PUMA "G0800570, G08000400" -County and PUMA "G0800590, G08000801" -County and PUMA "G0800590, G08000804" -County and PUMA "G0800590, G08000805" -County and PUMA "G0800590, G08000817" -County and PUMA "G0800590, G08000818" -County and PUMA "G0800590, G08000819" -County and PUMA "G0800590, G08000820" -County and PUMA "G0800590, G08000821" -County and PUMA "G0800610, G08000100" -County and PUMA "G0800630, G08000100" -County and PUMA "G0800650, G08000600" -County and PUMA "G0800670, G08000900" -County and PUMA "G0800690, G08000102" -County and PUMA "G0800690, G08000103" -County and PUMA "G0800710, G08000800" -County and PUMA "G0800730, G08000100" -County and PUMA "G0800750, G08000100" -County and PUMA "G0800770, G08001001" -County and PUMA "G0800770, G08001002" -County and PUMA "G0800790, G08000800" -County and PUMA "G0800810, G08000200" -County and PUMA "G0800830, G08000900" -County and PUMA "G0800850, G08001002" -County and PUMA "G0800870, G08000100" -County and PUMA "G0800890, G08000800" -County and PUMA "G0800910, G08001002" -County and PUMA "G0800930, G08000600" -County and PUMA "G0800950, G08000100" -County and PUMA "G0800970, G08000400" -County and PUMA "G0800990, G08000800" -County and PUMA "G0801010, G08000600" -County and PUMA "G0801010, G08000700" -County and PUMA "G0801010, G08000800" -County and PUMA "G0801030, G08000200" -County and PUMA "G0801050, G08000800" -County and PUMA "G0801070, G08000200" -County and PUMA "G0801090, G08000800" -County and PUMA "G0801110, G08000900" -County and PUMA "G0801130, G08001002" -County and PUMA "G0801150, G08000100" -County and PUMA "G0801170, G08000400" -County and PUMA "G0801190, G08004101" -County and PUMA "G0801210, G08000100" -County and PUMA "G0801230, G08000100" -County and PUMA "G0801230, G08000300" -County and PUMA "G0801230, G08000802" -County and PUMA "G0801230, G08000824" -County and PUMA "G0801250, G08000100" -County and PUMA "G0900010, G09000100" -County and PUMA "G0900010, G09000101" -County and PUMA "G0900010, G09000102" -County and PUMA "G0900010, G09000103" -County and PUMA "G0900010, G09000104" -County and PUMA "G0900010, G09000105" -County and PUMA "G0900030, G09000300" -County and PUMA "G0900030, G09000301" -County and PUMA "G0900030, G09000302" -County and PUMA "G0900030, G09000303" -County and PUMA "G0900030, G09000304" -County and PUMA "G0900030, G09000305" -County and PUMA "G0900030, G09000306" -County and PUMA "G0900050, G09000500" -County and PUMA "G0900070, G09000700" -County and PUMA "G0900090, G09000900" -County and PUMA "G0900090, G09000901" -County and PUMA "G0900090, G09000902" -County and PUMA "G0900090, G09000903" -County and PUMA "G0900090, G09000904" -County and PUMA "G0900090, G09000905" -County and PUMA "G0900090, G09000906" -County and PUMA "G0900110, G09001100" -County and PUMA "G0900110, G09001101" -County and PUMA "G0900130, G09001300" -County and PUMA "G0900150, G09001500" -County and PUMA "G1000010, G10000200" -County and PUMA "G1000030, G10000101" -County and PUMA "G1000030, G10000102" -County and PUMA "G1000030, G10000103" -County and PUMA "G1000030, G10000104" -County and PUMA "G1000050, G10000300" -County and PUMA "G1100010, G11000101" -County and PUMA "G1100010, G11000102" -County and PUMA "G1100010, G11000103" -County and PUMA "G1100010, G11000104" -County and PUMA "G1100010, G11000105" -County and PUMA "G1200010, G12000101" -County and PUMA "G1200010, G12000102" -County and PUMA "G1200030, G12008900" -County and PUMA "G1200050, G12000500" -County and PUMA "G1200070, G12002300" -County and PUMA "G1200090, G12000901" -County and PUMA "G1200090, G12000902" -County and PUMA "G1200090, G12000903" -County and PUMA "G1200090, G12000904" -County and PUMA "G1200110, G12001101" -County and PUMA "G1200110, G12001102" -County and PUMA "G1200110, G12001103" -County and PUMA "G1200110, G12001104" -County and PUMA "G1200110, G12001105" -County and PUMA "G1200110, G12001106" -County and PUMA "G1200110, G12001107" -County and PUMA "G1200110, G12001108" -County and PUMA "G1200110, G12001109" -County and PUMA "G1200110, G12001110" -County and PUMA "G1200110, G12001111" -County and PUMA "G1200110, G12001112" -County and PUMA "G1200110, G12001113" -County and PUMA "G1200110, G12001114" -County and PUMA "G1200130, G12006300" -County and PUMA "G1200150, G12001500" -County and PUMA "G1200170, G12001701" -County and PUMA "G1200190, G12001900" -County and PUMA "G1200210, G12002101" -County and PUMA "G1200210, G12002102" -County and PUMA "G1200210, G12002103" -County and PUMA "G1200230, G12002300" -County and PUMA "G1200270, G12002700" -County and PUMA "G1200290, G12002300" -County and PUMA "G1200310, G12003101" -County and PUMA "G1200310, G12003102" -County and PUMA "G1200310, G12003103" -County and PUMA "G1200310, G12003104" -County and PUMA "G1200310, G12003105" -County and PUMA "G1200310, G12003106" -County and PUMA "G1200310, G12003107" -County and PUMA "G1200330, G12003301" -County and PUMA "G1200330, G12003302" -County and PUMA "G1200350, G12003500" -County and PUMA "G1200370, G12006300" -County and PUMA "G1200390, G12006300" -County and PUMA "G1200410, G12002300" -County and PUMA "G1200430, G12009300" -County and PUMA "G1200450, G12006300" -County and PUMA "G1200470, G12012100" -County and PUMA "G1200490, G12002700" -County and PUMA "G1200510, G12009300" -County and PUMA "G1200530, G12005301" -County and PUMA "G1200550, G12002700" -County and PUMA "G1200550, G12009300" -County and PUMA "G1200570, G12005701" -County and PUMA "G1200570, G12005702" -County and PUMA "G1200570, G12005703" -County and PUMA "G1200570, G12005704" -County and PUMA "G1200570, G12005705" -County and PUMA "G1200570, G12005706" -County and PUMA "G1200570, G12005707" -County and PUMA "G1200570, G12005708" -County and PUMA "G1200590, G12000500" -County and PUMA "G1200610, G12006100" -County and PUMA "G1200630, G12006300" -County and PUMA "G1200650, G12006300" -County and PUMA "G1200670, G12012100" -County and PUMA "G1200690, G12006901" -County and PUMA "G1200690, G12006902" -County and PUMA "G1200690, G12006903" -County and PUMA "G1200710, G12007101" -County and PUMA "G1200710, G12007102" -County and PUMA "G1200710, G12007103" -County and PUMA "G1200710, G12007104" -County and PUMA "G1200710, G12007105" -County and PUMA "G1200730, G12007300" -County and PUMA "G1200730, G12007301" -County and PUMA "G1200750, G12002300" -County and PUMA "G1200770, G12006300" -County and PUMA "G1200790, G12012100" -County and PUMA "G1200810, G12008101" -County and PUMA "G1200810, G12008102" -County and PUMA "G1200810, G12008103" -County and PUMA "G1200830, G12008301" -County and PUMA "G1200830, G12008302" -County and PUMA "G1200830, G12008303" -County and PUMA "G1200850, G12008500" -County and PUMA "G1200860, G12008601" -County and PUMA "G1200860, G12008602" -County and PUMA "G1200860, G12008603" -County and PUMA "G1200860, G12008604" -County and PUMA "G1200860, G12008605" -County and PUMA "G1200860, G12008606" -County and PUMA "G1200860, G12008607" -County and PUMA "G1200860, G12008608" -County and PUMA "G1200860, G12008609" -County and PUMA "G1200860, G12008610" -County and PUMA "G1200860, G12008611" -County and PUMA "G1200860, G12008612" -County and PUMA "G1200860, G12008613" -County and PUMA "G1200860, G12008614" -County and PUMA "G1200860, G12008615" -County and PUMA "G1200860, G12008616" -County and PUMA "G1200860, G12008617" -County and PUMA "G1200860, G12008618" -County and PUMA "G1200860, G12008619" -County and PUMA "G1200860, G12008620" -County and PUMA "G1200860, G12008621" -County and PUMA "G1200860, G12008622" -County and PUMA "G1200860, G12008623" -County and PUMA "G1200860, G12008624" -County and PUMA "G1200860, G12008700" -County and PUMA "G1200870, G12008700" -County and PUMA "G1200890, G12008900" -County and PUMA "G1200910, G12009100" -County and PUMA "G1200930, G12009300" -County and PUMA "G1200950, G12009501" -County and PUMA "G1200950, G12009502" -County and PUMA "G1200950, G12009503" -County and PUMA "G1200950, G12009504" -County and PUMA "G1200950, G12009505" -County and PUMA "G1200950, G12009506" -County and PUMA "G1200950, G12009507" -County and PUMA "G1200950, G12009508" -County and PUMA "G1200950, G12009509" -County and PUMA "G1200950, G12009510" -County and PUMA "G1200970, G12009701" -County and PUMA "G1200970, G12009702" -County and PUMA "G1200990, G12009901" -County and PUMA "G1200990, G12009902" -County and PUMA "G1200990, G12009903" -County and PUMA "G1200990, G12009904" -County and PUMA "G1200990, G12009905" -County and PUMA "G1200990, G12009906" -County and PUMA "G1200990, G12009907" -County and PUMA "G1200990, G12009908" -County and PUMA "G1200990, G12009909" -County and PUMA "G1200990, G12009910" -County and PUMA "G1200990, G12009911" -County and PUMA "G1201010, G12010101" -County and PUMA "G1201010, G12010102" -County and PUMA "G1201010, G12010103" -County and PUMA "G1201010, G12010104" -County and PUMA "G1201030, G12010301" -County and PUMA "G1201030, G12010302" -County and PUMA "G1201030, G12010303" -County and PUMA "G1201030, G12010304" -County and PUMA "G1201030, G12010305" -County and PUMA "G1201030, G12010306" -County and PUMA "G1201030, G12010307" -County and PUMA "G1201030, G12010308" -County and PUMA "G1201050, G12010501" -County and PUMA "G1201050, G12010502" -County and PUMA "G1201050, G12010503" -County and PUMA "G1201050, G12010504" -County and PUMA "G1201070, G12010700" -County and PUMA "G1201090, G12010700" -County and PUMA "G1201090, G12010900" -County and PUMA "G1201110, G12011101" -County and PUMA "G1201110, G12011102" -County and PUMA "G1201130, G12011300" -County and PUMA "G1201150, G12011501" -County and PUMA "G1201150, G12011502" -County and PUMA "G1201150, G12011503" -County and PUMA "G1201170, G12011701" -County and PUMA "G1201170, G12011702" -County and PUMA "G1201170, G12011703" -County and PUMA "G1201170, G12011704" -County and PUMA "G1201190, G12006902" -County and PUMA "G1201190, G12006903" -County and PUMA "G1201210, G12012100" -County and PUMA "G1201230, G12012100" -County and PUMA "G1201250, G12002300" -County and PUMA "G1201270, G12003500" -County and PUMA "G1201270, G12012701" -County and PUMA "G1201270, G12012702" -County and PUMA "G1201270, G12012703" -County and PUMA "G1201270, G12012704" -County and PUMA "G1201290, G12006300" -County and PUMA "G1201310, G12000500" -County and PUMA "G1201330, G12000500" -County and PUMA "G1300010, G13001200" -County and PUMA "G1300030, G13000500" -County and PUMA "G1300050, G13000500" -County and PUMA "G1300070, G13001100" -County and PUMA "G1300090, G13001600" -County and PUMA "G1300110, G13003500" -County and PUMA "G1300130, G13003800" -County and PUMA "G1300150, G13002900" -County and PUMA "G1300170, G13000700" -County and PUMA "G1300190, G13000700" -County and PUMA "G1300210, G13001400" -County and PUMA "G1300230, G13001300" -County and PUMA "G1300250, G13000500" -County and PUMA "G1300270, G13000700" -County and PUMA "G1300290, G13000200" -County and PUMA "G1300310, G13000300" -County and PUMA "G1300330, G13004200" -County and PUMA "G1300350, G13001900" -County and PUMA "G1300370, G13001100" -County and PUMA "G1300390, G13000100" -County and PUMA "G1300430, G13001300" -County and PUMA "G1300450, G13002300" -County and PUMA "G1300470, G13002600" -County and PUMA "G1300490, G13000500" -County and PUMA "G1300510, G13000401" -County and PUMA "G1300510, G13000402" -County and PUMA "G1300530, G13001700" -County and PUMA "G1300550, G13002600" -County and PUMA "G1300570, G13003101" -County and PUMA "G1300570, G13003102" -County and PUMA "G1300590, G13003600" -County and PUMA "G1300610, G13001800" -County and PUMA "G1300630, G13005001" -County and PUMA "G1300630, G13005002" -County and PUMA "G1300650, G13000500" -County and PUMA "G1300670, G13003001" -County and PUMA "G1300670, G13003002" -County and PUMA "G1300670, G13003003" -County and PUMA "G1300670, G13003004" -County and PUMA "G1300670, G13003005" -County and PUMA "G1300690, G13000500" -County and PUMA "G1300710, G13000800" -County and PUMA "G1300730, G13004100" -County and PUMA "G1300750, G13000700" -County and PUMA "G1300770, G13002100" -County and PUMA "G1300790, G13001600" -County and PUMA "G1300810, G13001800" -County and PUMA "G1300830, G13002600" -County and PUMA "G1300850, G13003200" -County and PUMA "G1300870, G13001100" -County and PUMA "G1300890, G13001007" -County and PUMA "G1300890, G13001008" -County and PUMA "G1300890, G13002001" -County and PUMA "G1300890, G13002002" -County and PUMA "G1300890, G13002003" -County and PUMA "G1300890, G13002004" -County and PUMA "G1300910, G13001300" -County and PUMA "G1300930, G13001800" -County and PUMA "G1300950, G13000900" -County and PUMA "G1300970, G13004400" -County and PUMA "G1300990, G13001100" -County and PUMA "G1301010, G13000500" -County and PUMA "G1301030, G13000300" -County and PUMA "G1301050, G13003700" -County and PUMA "G1301070, G13001300" -County and PUMA "G1301090, G13001200" -County and PUMA "G1301110, G13002800" -County and PUMA "G1301130, G13002400" -County and PUMA "G1301150, G13002500" -County and PUMA "G1301170, G13003300" -County and PUMA "G1301190, G13003500" -County and PUMA "G1301210, G13001001" -County and PUMA "G1301210, G13001002" -County and PUMA "G1301210, G13001003" -County and PUMA "G1301210, G13001004" -County and PUMA "G1301210, G13001005" -County and PUMA "G1301210, G13001006" -County and PUMA "G1301210, G13001007" -County and PUMA "G1301210, G13004600" -County and PUMA "G1301230, G13002800" -County and PUMA "G1301250, G13004200" -County and PUMA "G1301270, G13000100" -County and PUMA "G1301290, G13002800" -County and PUMA "G1301310, G13001100" -County and PUMA "G1301330, G13003700" -County and PUMA "G1301350, G13004001" -County and PUMA "G1301350, G13004002" -County and PUMA "G1301350, G13004003" -County and PUMA "G1301350, G13004004" -County and PUMA "G1301350, G13004005" -County and PUMA "G1301350, G13004006" -County and PUMA "G1301370, G13003500" -County and PUMA "G1301390, G13003400" -County and PUMA "G1301410, G13004200" -County and PUMA "G1301430, G13002500" -County and PUMA "G1301450, G13001800" -County and PUMA "G1301470, G13003500" -County and PUMA "G1301490, G13002200" -County and PUMA "G1301510, G13006001" -County and PUMA "G1301510, G13006002" -County and PUMA "G1301530, G13001500" -County and PUMA "G1301550, G13000700" -County and PUMA "G1301570, G13003800" -County and PUMA "G1301590, G13003900" -County and PUMA "G1301610, G13001200" -County and PUMA "G1301630, G13004200" -County and PUMA "G1301650, G13004200" -County and PUMA "G1301670, G13001300" -County and PUMA "G1301690, G13001600" -County and PUMA "G1301710, G13001900" -County and PUMA "G1301730, G13000500" -County and PUMA "G1301750, G13001300" -County and PUMA "G1301770, G13000900" -County and PUMA "G1301790, G13000200" -County and PUMA "G1301810, G13004200" -County and PUMA "G1301830, G13000200" -County and PUMA "G1301850, G13000600" -County and PUMA "G1301870, G13003200" -County and PUMA "G1301890, G13004200" -County and PUMA "G1301910, G13000100" -County and PUMA "G1301930, G13001800" -County and PUMA "G1301950, G13003700" -County and PUMA "G1301970, G13001800" -County and PUMA "G1301990, G13002200" -County and PUMA "G1302010, G13001100" -County and PUMA "G1302050, G13001100" -County and PUMA "G1302070, G13001600" -County and PUMA "G1302090, G13001200" -County and PUMA "G1302110, G13003900" -County and PUMA "G1302130, G13002800" -County and PUMA "G1302150, G13001700" -County and PUMA "G1302170, G13004300" -County and PUMA "G1302190, G13003700" -County and PUMA "G1302210, G13003700" -County and PUMA "G1302230, G13004500" -County and PUMA "G1302250, G13001600" -County and PUMA "G1302270, G13002800" -County and PUMA "G1302290, G13000500" -County and PUMA "G1302310, G13001900" -County and PUMA "G1302330, G13002500" -County and PUMA "G1302350, G13001500" -County and PUMA "G1302370, G13001600" -County and PUMA "G1302390, G13001800" -County and PUMA "G1302410, G13003200" -County and PUMA "G1302430, G13001800" -County and PUMA "G1302450, G13004000" -County and PUMA "G1302470, G13004300" -County and PUMA "G1302490, G13001800" -County and PUMA "G1302510, G13000300" -County and PUMA "G1302530, G13001100" -County and PUMA "G1302550, G13001900" -County and PUMA "G1302570, G13003500" -County and PUMA "G1302590, G13001800" -County and PUMA "G1302610, G13001800" -County and PUMA "G1302630, G13001800" -County and PUMA "G1302650, G13004200" -County and PUMA "G1302670, G13001200" -County and PUMA "G1302690, G13001800" -County and PUMA "G1302710, G13001200" -County and PUMA "G1302730, G13001100" -County and PUMA "G1302750, G13000800" -County and PUMA "G1302770, G13000700" -County and PUMA "G1302790, G13001200" -County and PUMA "G1302810, G13003200" -County and PUMA "G1302830, G13001300" -County and PUMA "G1302850, G13002200" -County and PUMA "G1302870, G13000700" -County and PUMA "G1302890, G13001600" -County and PUMA "G1302910, G13003200" -County and PUMA "G1302930, G13001900" -County and PUMA "G1302950, G13002600" -County and PUMA "G1302970, G13003900" -County and PUMA "G1302990, G13000500" -County and PUMA "G1303010, G13004200" -County and PUMA "G1303030, G13004200" -County and PUMA "G1303050, G13001200" -County and PUMA "G1303070, G13001800" -County and PUMA "G1303090, G13001200" -County and PUMA "G1303110, G13003200" -County and PUMA "G1303130, G13002700" -County and PUMA "G1303150, G13001300" -County and PUMA "G1303170, G13004200" -County and PUMA "G1303190, G13001600" -County and PUMA "G1303210, G13000800" -County and PUMA "G1500010, G15000200" -County and PUMA "G1500030, G15000301" -County and PUMA "G1500030, G15000302" -County and PUMA "G1500030, G15000303" -County and PUMA "G1500030, G15000304" -County and PUMA "G1500030, G15000305" -County and PUMA "G1500030, G15000306" -County and PUMA "G1500030, G15000307" -County and PUMA "G1500030, G15000308" -County and PUMA "G1500050, G15000100" -County and PUMA "G1500070, G15000100" -County and PUMA "G1500090, G15000100" -County and PUMA "G1600010, G16000400" -County and PUMA "G1600010, G16000600" -County and PUMA "G1600010, G16000701" -County and PUMA "G1600010, G16000702" -County and PUMA "G1600010, G16000800" -County and PUMA "G1600030, G16000300" -County and PUMA "G1600050, G16001300" -County and PUMA "G1600070, G16001300" -County and PUMA "G1600090, G16000100" -County and PUMA "G1600110, G16001100" -County and PUMA "G1600110, G16001300" -County and PUMA "G1600130, G16001000" -County and PUMA "G1600150, G16000300" -County and PUMA "G1600170, G16000100" -County and PUMA "G1600190, G16001200" -County and PUMA "G1600210, G16000100" -County and PUMA "G1600230, G16000300" -County and PUMA "G1600250, G16001000" -County and PUMA "G1600270, G16000400" -County and PUMA "G1600270, G16000500" -County and PUMA "G1600270, G16000600" -County and PUMA "G1600290, G16001300" -County and PUMA "G1600310, G16000900" -County and PUMA "G1600330, G16000300" -County and PUMA "G1600350, G16000300" -County and PUMA "G1600370, G16000300" -County and PUMA "G1600390, G16001000" -County and PUMA "G1600410, G16001300" -County and PUMA "G1600430, G16001100" -County and PUMA "G1600450, G16000400" -County and PUMA "G1600470, G16001000" -County and PUMA "G1600490, G16000300" -County and PUMA "G1600510, G16001100" -County and PUMA "G1600530, G16001000" -County and PUMA "G1600550, G16000100" -County and PUMA "G1600550, G16000200" -County and PUMA "G1600570, G16000100" -County and PUMA "G1600590, G16000300" -County and PUMA "G1600610, G16000300" -County and PUMA "G1600630, G16001000" -County and PUMA "G1600650, G16001100" -County and PUMA "G1600670, G16001000" -County and PUMA "G1600690, G16000300" -County and PUMA "G1600710, G16001300" -County and PUMA "G1600730, G16000500" -County and PUMA "G1600750, G16000400" -County and PUMA "G1600770, G16001300" -County and PUMA "G1600790, G16000100" -County and PUMA "G1600810, G16001100" -County and PUMA "G1600830, G16000900" -County and PUMA "G1600850, G16000300" -County and PUMA "G1600870, G16000400" -County and PUMA "G1700010, G17000300" -County and PUMA "G1700030, G17000800" -County and PUMA "G1700050, G17000501" -County and PUMA "G1700070, G17002901" -County and PUMA "G1700090, G17000300" -County and PUMA "G1700110, G17002501" -County and PUMA "G1700130, G17000401" -County and PUMA "G1700150, G17000104" -County and PUMA "G1700170, G17000401" -County and PUMA "G1700190, G17002100" -County and PUMA "G1700210, G17001602" -County and PUMA "G1700230, G17000700" -County and PUMA "G1700250, G17000700" -County and PUMA "G1700270, G17000501" -County and PUMA "G1700290, G17000600" -County and PUMA "G1700310, G17003401" -County and PUMA "G1700310, G17003407" -County and PUMA "G1700310, G17003408" -County and PUMA "G1700310, G17003409" -County and PUMA "G1700310, G17003410" -County and PUMA "G1700310, G17003411" -County and PUMA "G1700310, G17003412" -County and PUMA "G1700310, G17003413" -County and PUMA "G1700310, G17003414" -County and PUMA "G1700310, G17003415" -County and PUMA "G1700310, G17003416" -County and PUMA "G1700310, G17003417" -County and PUMA "G1700310, G17003418" -County and PUMA "G1700310, G17003419" -County and PUMA "G1700310, G17003420" -County and PUMA "G1700310, G17003421" -County and PUMA "G1700310, G17003422" -County and PUMA "G1700310, G17003501" -County and PUMA "G1700310, G17003502" -County and PUMA "G1700310, G17003503" -County and PUMA "G1700310, G17003504" -County and PUMA "G1700310, G17003520" -County and PUMA "G1700310, G17003521" -County and PUMA "G1700310, G17003522" -County and PUMA "G1700310, G17003523" -County and PUMA "G1700310, G17003524" -County and PUMA "G1700310, G17003525" -County and PUMA "G1700310, G17003526" -County and PUMA "G1700310, G17003527" -County and PUMA "G1700310, G17003528" -County and PUMA "G1700310, G17003529" -County and PUMA "G1700310, G17003530" -County and PUMA "G1700310, G17003531" -County and PUMA "G1700310, G17003532" -County and PUMA "G1700330, G17000700" -County and PUMA "G1700350, G17000600" -County and PUMA "G1700370, G17002601" -County and PUMA "G1700390, G17001602" -County and PUMA "G1700410, G17000600" -County and PUMA "G1700430, G17003202" -County and PUMA "G1700430, G17003203" -County and PUMA "G1700430, G17003204" -County and PUMA "G1700430, G17003205" -County and PUMA "G1700430, G17003207" -County and PUMA "G1700430, G17003208" -County and PUMA "G1700430, G17003209" -County and PUMA "G1700450, G17000600" -County and PUMA "G1700470, G17000800" -County and PUMA "G1700490, G17000501" -County and PUMA "G1700510, G17000501" -County and PUMA "G1700530, G17002200" -County and PUMA "G1700550, G17000900" -County and PUMA "G1700570, G17000202" -County and PUMA "G1700590, G17000800" -County and PUMA "G1700610, G17000401" -County and PUMA "G1700630, G17003700" -County and PUMA "G1700650, G17000800" -County and PUMA "G1700670, G17000202" -County and PUMA "G1700690, G17000800" -County and PUMA "G1700710, G17000202" -County and PUMA "G1700730, G17000202" -County and PUMA "G1700750, G17002200" -County and PUMA "G1700770, G17000900" -County and PUMA "G1700790, G17000700" -County and PUMA "G1700810, G17001001" -County and PUMA "G1700830, G17000401" -County and PUMA "G1700850, G17000104" -County and PUMA "G1700870, G17000800" -County and PUMA "G1700890, G17003005" -County and PUMA "G1700890, G17003007" -County and PUMA "G1700890, G17003008" -County and PUMA "G1700890, G17003009" -County and PUMA "G1700910, G17002300" -County and PUMA "G1700930, G17003700" -County and PUMA "G1700950, G17002501" -County and PUMA "G1700970, G17003306" -County and PUMA "G1700970, G17003307" -County and PUMA "G1700970, G17003308" -County and PUMA "G1700970, G17003309" -County and PUMA "G1700970, G17003310" -County and PUMA "G1700990, G17002400" -County and PUMA "G1701010, G17000700" -County and PUMA "G1701030, G17000104" -County and PUMA "G1701050, G17002200" -County and PUMA "G1701070, G17001602" -County and PUMA "G1701090, G17000202" -County and PUMA "G1701110, G17003601" -County and PUMA "G1701110, G17003602" -County and PUMA "G1701130, G17002000" -County and PUMA "G1701150, G17001500" -County and PUMA "G1701170, G17000401" -County and PUMA "G1701190, G17001204" -County and PUMA "G1701190, G17001205" -County and PUMA "G1701210, G17001001" -County and PUMA "G1701230, G17002501" -County and PUMA "G1701250, G17000300" -County and PUMA "G1701270, G17000800" -County and PUMA "G1701290, G17001602" -County and PUMA "G1701310, G17000202" -County and PUMA "G1701330, G17001001" -County and PUMA "G1701350, G17000501" -County and PUMA "G1701370, G17000401" -County and PUMA "G1701390, G17001602" -County and PUMA "G1701410, G17002700" -County and PUMA "G1701430, G17001701" -County and PUMA "G1701450, G17000900" -County and PUMA "G1701470, G17001602" -County and PUMA "G1701490, G17000300" -County and PUMA "G1701510, G17000800" -County and PUMA "G1701530, G17000800" -County and PUMA "G1701550, G17002501" -County and PUMA "G1701570, G17001001" -County and PUMA "G1701590, G17000700" -County and PUMA "G1701610, G17000105" -County and PUMA "G1701630, G17001104" -County and PUMA "G1701630, G17001105" -County and PUMA "G1701650, G17000800" -County and PUMA "G1701670, G17001300" -County and PUMA "G1701690, G17000300" -County and PUMA "G1701710, G17000401" -County and PUMA "G1701730, G17001602" -County and PUMA "G1701750, G17002501" -County and PUMA "G1701770, G17002700" -County and PUMA "G1701790, G17001900" -County and PUMA "G1701810, G17000800" -County and PUMA "G1701830, G17002200" -County and PUMA "G1701850, G17000800" -County and PUMA "G1701870, G17000202" -County and PUMA "G1701890, G17001001" -County and PUMA "G1701910, G17000700" -County and PUMA "G1701930, G17000800" -County and PUMA "G1701950, G17000104" -County and PUMA "G1701970, G17003102" -County and PUMA "G1701970, G17003105" -County and PUMA "G1701970, G17003106" -County and PUMA "G1701970, G17003107" -County and PUMA "G1701970, G17003108" -County and PUMA "G1701990, G17000900" -County and PUMA "G1702010, G17002801" -County and PUMA "G1702010, G17002901" -County and PUMA "G1702030, G17002501" -County and PUMA "G1800010, G18000900" -County and PUMA "G1800030, G18001001" -County and PUMA "G1800030, G18001002" -County and PUMA "G1800030, G18001003" -County and PUMA "G1800050, G18002900" -County and PUMA "G1800070, G18001100" -County and PUMA "G1800090, G18001500" -County and PUMA "G1800110, G18001801" -County and PUMA "G1800130, G18002100" -County and PUMA "G1800150, G18001100" -County and PUMA "G1800170, G18001300" -County and PUMA "G1800190, G18003600" -County and PUMA "G1800210, G18001600" -County and PUMA "G1800230, G18001100" -County and PUMA "G1800250, G18003400" -County and PUMA "G1800270, G18002700" -County and PUMA "G1800290, G18003100" -County and PUMA "G1800310, G18003000" -County and PUMA "G1800330, G18000600" -County and PUMA "G1800350, G18002000" -County and PUMA "G1800370, G18003400" -County and PUMA "G1800390, G18000500" -County and PUMA "G1800410, G18002600" -County and PUMA "G1800430, G18003500" -County and PUMA "G1800450, G18001600" -County and PUMA "G1800470, G18003100" -County and PUMA "G1800490, G18000700" -County and PUMA "G1800510, G18003200" -County and PUMA "G1800530, G18001400" -County and PUMA "G1800550, G18002700" -County and PUMA "G1800570, G18001801" -County and PUMA "G1800570, G18001802" -County and PUMA "G1800570, G18001803" -County and PUMA "G1800590, G18002500" -County and PUMA "G1800610, G18003500" -County and PUMA "G1800630, G18002200" -County and PUMA "G1800650, G18001500" -County and PUMA "G1800670, G18001300" -County and PUMA "G1800690, G18000900" -County and PUMA "G1800710, G18002900" -County and PUMA "G1800730, G18000700" -County and PUMA "G1800750, G18001500" -County and PUMA "G1800770, G18003000" -County and PUMA "G1800790, G18003000" -County and PUMA "G1800810, G18002400" -County and PUMA "G1800830, G18003400" -County and PUMA "G1800850, G18000800" -County and PUMA "G1800870, G18000600" -County and PUMA "G1800890, G18000101" -County and PUMA "G1800890, G18000102" -County and PUMA "G1800890, G18000103" -County and PUMA "G1800890, G18000104" -County and PUMA "G1800910, G18000300" -County and PUMA "G1800930, G18002700" -County and PUMA "G1800950, G18001900" -County and PUMA "G1800970, G18002301" -County and PUMA "G1800970, G18002302" -County and PUMA "G1800970, G18002303" -County and PUMA "G1800970, G18002304" -County and PUMA "G1800970, G18002305" -County and PUMA "G1800970, G18002306" -County and PUMA "G1800970, G18002307" -County and PUMA "G1800990, G18000800" -County and PUMA "G1801010, G18002700" -County and PUMA "G1801030, G18001400" -County and PUMA "G1801050, G18002800" -County and PUMA "G1801070, G18001100" -County and PUMA "G1801090, G18002100" -County and PUMA "G1801110, G18000700" -County and PUMA "G1801130, G18000600" -County and PUMA "G1801150, G18003100" -County and PUMA "G1801170, G18002700" -County and PUMA "G1801190, G18002700" -County and PUMA "G1801210, G18001600" -County and PUMA "G1801230, G18003400" -County and PUMA "G1801250, G18003400" -County and PUMA "G1801270, G18000200" -County and PUMA "G1801290, G18003200" -County and PUMA "G1801310, G18000700" -County and PUMA "G1801330, G18002100" -County and PUMA "G1801350, G18001500" -County and PUMA "G1801370, G18003100" -County and PUMA "G1801390, G18002600" -County and PUMA "G1801410, G18000401" -County and PUMA "G1801410, G18000402" -County and PUMA "G1801430, G18003000" -County and PUMA "G1801450, G18002500" -County and PUMA "G1801470, G18003400" -County and PUMA "G1801490, G18000700" -County and PUMA "G1801510, G18000600" -County and PUMA "G1801530, G18001600" -County and PUMA "G1801550, G18003100" -County and PUMA "G1801570, G18001200" -County and PUMA "G1801590, G18001300" -County and PUMA "G1801610, G18002600" -County and PUMA "G1801630, G18003300" -County and PUMA "G1801650, G18001600" -County and PUMA "G1801670, G18001700" -County and PUMA "G1801690, G18001400" -County and PUMA "G1801710, G18001600" -County and PUMA "G1801730, G18003200" -County and PUMA "G1801750, G18003500" -County and PUMA "G1801770, G18002600" -County and PUMA "G1801790, G18000900" -County and PUMA "G1801810, G18001100" -County and PUMA "G1801830, G18000900" -County and PUMA "G1900010, G19001800" -County and PUMA "G1900030, G19001800" -County and PUMA "G1900050, G19000400" -County and PUMA "G1900070, G19001800" -County and PUMA "G1900090, G19001800" -County and PUMA "G1900110, G19001200" -County and PUMA "G1900130, G19000500" -County and PUMA "G1900150, G19001300" -County and PUMA "G1900170, G19000400" -County and PUMA "G1900190, G19000700" -County and PUMA "G1900210, G19001900" -County and PUMA "G1900230, G19000600" -County and PUMA "G1900250, G19001900" -County and PUMA "G1900270, G19001900" -County and PUMA "G1900290, G19002100" -County and PUMA "G1900310, G19000800" -County and PUMA "G1900330, G19000200" -County and PUMA "G1900350, G19001900" -County and PUMA "G1900370, G19000400" -County and PUMA "G1900390, G19001800" -County and PUMA "G1900410, G19000100" -County and PUMA "G1900430, G19000400" -County and PUMA "G1900450, G19000800" -County and PUMA "G1900470, G19001900" -County and PUMA "G1900490, G19001400" -County and PUMA "G1900490, G19001500" -County and PUMA "G1900510, G19002200" -County and PUMA "G1900530, G19001800" -County and PUMA "G1900550, G19000700" -County and PUMA "G1900570, G19002300" -County and PUMA "G1900590, G19000100" -County and PUMA "G1900610, G19000700" -County and PUMA "G1900630, G19000100" -County and PUMA "G1900650, G19000400" -County and PUMA "G1900670, G19000200" -County and PUMA "G1900690, G19000600" -County and PUMA "G1900710, G19002100" -County and PUMA "G1900730, G19001900" -County and PUMA "G1900750, G19000600" -County and PUMA "G1900770, G19001800" -County and PUMA "G1900790, G19000600" -County and PUMA "G1900810, G19000200" -County and PUMA "G1900830, G19000600" -County and PUMA "G1900850, G19002100" -County and PUMA "G1900870, G19002300" -County and PUMA "G1900890, G19000400" -County and PUMA "G1900910, G19000600" -County and PUMA "G1900930, G19001900" -County and PUMA "G1900950, G19001200" -County and PUMA "G1900970, G19000700" -County and PUMA "G1900990, G19001400" -County and PUMA "G1901010, G19002200" -County and PUMA "G1901030, G19001100" -County and PUMA "G1901050, G19000800" -County and PUMA "G1901070, G19002200" -County and PUMA "G1901090, G19000200" -County and PUMA "G1901110, G19002300" -County and PUMA "G1901130, G19001000" -County and PUMA "G1901150, G19002300" -County and PUMA "G1901170, G19001800" -County and PUMA "G1901190, G19000100" -County and PUMA "G1901210, G19001400" -County and PUMA "G1901230, G19002200" -County and PUMA "G1901250, G19001400" -County and PUMA "G1901270, G19001200" -County and PUMA "G1901290, G19002100" -County and PUMA "G1901310, G19000200" -County and PUMA "G1901330, G19001900" -County and PUMA "G1901350, G19001800" -County and PUMA "G1901370, G19002100" -County and PUMA "G1901390, G19000800" -County and PUMA "G1901410, G19000100" -County and PUMA "G1901430, G19000100" -County and PUMA "G1901450, G19002100" -County and PUMA "G1901470, G19000100" -County and PUMA "G1901490, G19002000" -County and PUMA "G1901510, G19001900" -County and PUMA "G1901530, G19001500" -County and PUMA "G1901530, G19001600" -County and PUMA "G1901530, G19001700" -County and PUMA "G1901550, G19002100" -County and PUMA "G1901570, G19001200" -County and PUMA "G1901590, G19001800" -County and PUMA "G1901610, G19001900" -County and PUMA "G1901630, G19000900" -County and PUMA "G1901650, G19002100" -County and PUMA "G1901670, G19000100" -County and PUMA "G1901690, G19001300" -County and PUMA "G1901710, G19001200" -County and PUMA "G1901730, G19001800" -County and PUMA "G1901750, G19001800" -County and PUMA "G1901770, G19002200" -County and PUMA "G1901790, G19002200" -County and PUMA "G1901810, G19001400" -County and PUMA "G1901830, G19002200" -County and PUMA "G1901850, G19001800" -County and PUMA "G1901870, G19000600" -County and PUMA "G1901890, G19000200" -County and PUMA "G1901910, G19000400" -County and PUMA "G1901930, G19002000" -County and PUMA "G1901950, G19000200" -County and PUMA "G1901970, G19000600" -County and PUMA "G2000010, G20001400" -County and PUMA "G2000030, G20001400" -County and PUMA "G2000050, G20000400" -County and PUMA "G2000070, G20001100" -County and PUMA "G2000090, G20001100" -County and PUMA "G2000110, G20001400" -County and PUMA "G2000130, G20000802" -County and PUMA "G2000150, G20001302" -County and PUMA "G2000150, G20001304" -County and PUMA "G2000170, G20000900" -County and PUMA "G2000190, G20000900" -County and PUMA "G2000210, G20001500" -County and PUMA "G2000230, G20000100" -County and PUMA "G2000250, G20001200" -County and PUMA "G2000270, G20000200" -County and PUMA "G2000290, G20000200" -County and PUMA "G2000310, G20000900" -County and PUMA "G2000330, G20001100" -County and PUMA "G2000350, G20000900" -County and PUMA "G2000350, G20001100" -County and PUMA "G2000370, G20001500" -County and PUMA "G2000390, G20000100" -County and PUMA "G2000410, G20000200" -County and PUMA "G2000430, G20000400" -County and PUMA "G2000450, G20000700" -County and PUMA "G2000470, G20001100" -County and PUMA "G2000490, G20000900" -County and PUMA "G2000510, G20000100" -County and PUMA "G2000530, G20000200" -County and PUMA "G2000550, G20001200" -County and PUMA "G2000570, G20001200" -County and PUMA "G2000590, G20001400" -County and PUMA "G2000610, G20000300" -County and PUMA "G2000630, G20000100" -County and PUMA "G2000650, G20000100" -County and PUMA "G2000670, G20001200" -County and PUMA "G2000690, G20001200" -County and PUMA "G2000710, G20000100" -County and PUMA "G2000730, G20000900" -County and PUMA "G2000750, G20001200" -County and PUMA "G2000770, G20001100" -County and PUMA "G2000790, G20001301" -County and PUMA "G2000810, G20001200" -County and PUMA "G2000830, G20001200" -County and PUMA "G2000850, G20000802" -County and PUMA "G2000870, G20000400" -County and PUMA "G2000890, G20000200" -County and PUMA "G2000910, G20000601" -County and PUMA "G2000910, G20000602" -County and PUMA "G2000910, G20000603" -County and PUMA "G2000910, G20000604" -County and PUMA "G2000930, G20001200" -County and PUMA "G2000950, G20001100" -County and PUMA "G2000970, G20001100" -County and PUMA "G2000990, G20001500" -County and PUMA "G2001010, G20000100" -County and PUMA "G2001030, G20000400" -County and PUMA "G2001050, G20000200" -County and PUMA "G2001070, G20001400" -County and PUMA "G2001090, G20000100" -County and PUMA "G2001110, G20000900" -County and PUMA "G2001130, G20001000" -County and PUMA "G2001150, G20000900" -County and PUMA "G2001170, G20000200" -County and PUMA "G2001190, G20001200" -County and PUMA "G2001210, G20001400" -County and PUMA "G2001230, G20000200" -County and PUMA "G2001250, G20001500" -County and PUMA "G2001270, G20000900" -County and PUMA "G2001290, G20001200" -County and PUMA "G2001310, G20000200" -County and PUMA "G2001330, G20001500" -County and PUMA "G2001350, G20000100" -County and PUMA "G2001370, G20000100" -County and PUMA "G2001390, G20000802" -County and PUMA "G2001410, G20000100" -County and PUMA "G2001430, G20000200" -County and PUMA "G2001450, G20001100" -County and PUMA "G2001470, G20000100" -County and PUMA "G2001490, G20000300" -County and PUMA "G2001510, G20001100" -County and PUMA "G2001530, G20000100" -County and PUMA "G2001550, G20001000" -County and PUMA "G2001570, G20000200" -County and PUMA "G2001590, G20001000" -County and PUMA "G2001610, G20000300" -County and PUMA "G2001630, G20000100" -County and PUMA "G2001650, G20001100" -County and PUMA "G2001670, G20000100" -County and PUMA "G2001690, G20000200" -County and PUMA "G2001710, G20000100" -County and PUMA "G2001730, G20001301" -County and PUMA "G2001730, G20001302" -County and PUMA "G2001730, G20001303" -County and PUMA "G2001730, G20001304" -County and PUMA "G2001750, G20001200" -County and PUMA "G2001770, G20000801" -County and PUMA "G2001770, G20000802" -County and PUMA "G2001790, G20000100" -County and PUMA "G2001810, G20000100" -County and PUMA "G2001830, G20000100" -County and PUMA "G2001850, G20001100" -County and PUMA "G2001870, G20001200" -County and PUMA "G2001890, G20001200" -County and PUMA "G2001910, G20001100" -County and PUMA "G2001930, G20000100" -County and PUMA "G2001950, G20000100" -County and PUMA "G2001970, G20000802" -County and PUMA "G2001990, G20000100" -County and PUMA "G2002010, G20000200" -County and PUMA "G2002030, G20000100" -County and PUMA "G2002050, G20000900" -County and PUMA "G2002070, G20000900" -County and PUMA "G2002090, G20000500" -County and PUMA "G2100010, G21000600" -County and PUMA "G2100030, G21000400" -County and PUMA "G2100050, G21002000" -County and PUMA "G2100070, G21000100" -County and PUMA "G2100090, G21000400" -County and PUMA "G2100110, G21002700" -County and PUMA "G2100130, G21000900" -County and PUMA "G2100150, G21002500" -County and PUMA "G2100170, G21002300" -County and PUMA "G2100190, G21002800" -County and PUMA "G2100210, G21002100" -County and PUMA "G2100230, G21002700" -County and PUMA "G2100250, G21001000" -County and PUMA "G2100270, G21001300" -County and PUMA "G2100290, G21001600" -County and PUMA "G2100310, G21000400" -County and PUMA "G2100330, G21000200" -County and PUMA "G2100350, G21000100" -County and PUMA "G2100370, G21002600" -County and PUMA "G2100390, G21000100" -County and PUMA "G2100410, G21002600" -County and PUMA "G2100430, G21002800" -County and PUMA "G2100450, G21000600" -County and PUMA "G2100470, G21000300" -County and PUMA "G2100490, G21002300" -County and PUMA "G2100510, G21000800" -County and PUMA "G2100530, G21000600" -County and PUMA "G2100550, G21000200" -County and PUMA "G2100570, G21000600" -County and PUMA "G2100590, G21001500" -County and PUMA "G2100610, G21000400" -County and PUMA "G2100630, G21002800" -County and PUMA "G2100650, G21002200" -County and PUMA "G2100670, G21001901" -County and PUMA "G2100670, G21001902" -County and PUMA "G2100690, G21002700" -County and PUMA "G2100710, G21001100" -County and PUMA "G2100730, G21002000" -County and PUMA "G2100750, G21000100" -County and PUMA "G2100770, G21002600" -County and PUMA "G2100790, G21002100" -County and PUMA "G2100810, G21002600" -County and PUMA "G2100830, G21000100" -County and PUMA "G2100850, G21001300" -County and PUMA "G2100870, G21000600" -County and PUMA "G2100890, G21002800" -County and PUMA "G2100910, G21001500" -County and PUMA "G2100930, G21001200" -County and PUMA "G2100930, G21001300" -County and PUMA "G2100950, G21000900" -County and PUMA "G2100970, G21002300" -County and PUMA "G2100990, G21000400" -County and PUMA "G2101010, G21001400" -County and PUMA "G2101030, G21001800" -County and PUMA "G2101050, G21000100" -County and PUMA "G2101070, G21000200" -County and PUMA "G2101090, G21000800" -County and PUMA "G2101110, G21001701" -County and PUMA "G2101110, G21001702" -County and PUMA "G2101110, G21001703" -County and PUMA "G2101110, G21001704" -County and PUMA "G2101110, G21001705" -County and PUMA "G2101110, G21001706" -County and PUMA "G2101130, G21002100" -County and PUMA "G2101150, G21001100" -County and PUMA "G2101170, G21002400" -County and PUMA "G2101190, G21001000" -County and PUMA "G2101210, G21000900" -County and PUMA "G2101230, G21001200" -County and PUMA "G2101250, G21000800" -County and PUMA "G2101270, G21002800" -County and PUMA "G2101290, G21001000" -County and PUMA "G2101310, G21001000" -County and PUMA "G2101330, G21001000" -County and PUMA "G2101350, G21002700" -County and PUMA "G2101370, G21002100" -County and PUMA "G2101390, G21000200" -County and PUMA "G2101410, G21000400" -County and PUMA "G2101430, G21000300" -County and PUMA "G2101450, G21000100" -County and PUMA "G2101470, G21000700" -County and PUMA "G2101490, G21001400" -County and PUMA "G2101510, G21002200" -County and PUMA "G2101530, G21001100" -County and PUMA "G2101550, G21001200" -County and PUMA "G2101570, G21000100" -County and PUMA "G2101590, G21001100" -County and PUMA "G2101610, G21002700" -County and PUMA "G2101630, G21001300" -County and PUMA "G2101650, G21002700" -County and PUMA "G2101670, G21002000" -County and PUMA "G2101690, G21000400" -County and PUMA "G2101710, G21000400" -County and PUMA "G2101730, G21002700" -County and PUMA "G2101750, G21002700" -County and PUMA "G2101770, G21000200" -County and PUMA "G2101790, G21001200" -County and PUMA "G2101810, G21002300" -County and PUMA "G2101830, G21001400" -County and PUMA "G2101850, G21001800" -County and PUMA "G2101870, G21002600" -County and PUMA "G2101890, G21001000" -County and PUMA "G2101910, G21002600" -County and PUMA "G2101930, G21001000" -County and PUMA "G2101950, G21001100" -County and PUMA "G2101970, G21002200" -County and PUMA "G2101990, G21000700" -County and PUMA "G2102010, G21002700" -County and PUMA "G2102030, G21000800" -County and PUMA "G2102050, G21002700" -County and PUMA "G2102070, G21000600" -County and PUMA "G2102090, G21002300" -County and PUMA "G2102110, G21001600" -County and PUMA "G2102110, G21001800" -County and PUMA "G2102130, G21000400" -County and PUMA "G2102150, G21001600" -County and PUMA "G2102170, G21000600" -County and PUMA "G2102190, G21000300" -County and PUMA "G2102210, G21000300" -County and PUMA "G2102230, G21001800" -County and PUMA "G2102250, G21001400" -County and PUMA "G2102270, G21000500" -County and PUMA "G2102290, G21001200" -County and PUMA "G2102310, G21000700" -County and PUMA "G2102330, G21001400" -County and PUMA "G2102350, G21000900" -County and PUMA "G2102370, G21001000" -County and PUMA "G2102390, G21002000" -County and PUMA "G2200010, G22001100" -County and PUMA "G2200030, G22000800" -County and PUMA "G2200050, G22001600" -County and PUMA "G2200070, G22002000" -County and PUMA "G2200090, G22000600" -County and PUMA "G2200110, G22000800" -County and PUMA "G2200130, G22000300" -County and PUMA "G2200150, G22000200" -County and PUMA "G2200170, G22000100" -County and PUMA "G2200170, G22000101" -County and PUMA "G2200190, G22000800" -County and PUMA "G2200190, G22000900" -County and PUMA "G2200210, G22000500" -County and PUMA "G2200230, G22000900" -County and PUMA "G2200250, G22000600" -County and PUMA "G2200270, G22000300" -County and PUMA "G2200290, G22000600" -County and PUMA "G2200310, G22000300" -County and PUMA "G2200330, G22001500" -County and PUMA "G2200330, G22001501" -County and PUMA "G2200330, G22001502" -County and PUMA "G2200350, G22000500" -County and PUMA "G2200370, G22001400" -County and PUMA "G2200390, G22001000" -County and PUMA "G2200410, G22000500" -County and PUMA "G2200430, G22000600" -County and PUMA "G2200450, G22001300" -County and PUMA "G2200470, G22001400" -County and PUMA "G2200490, G22000500" -County and PUMA "G2200510, G22002300" -County and PUMA "G2200510, G22002301" -County and PUMA "G2200510, G22002302" -County and PUMA "G2200510, G22002500" -County and PUMA "G2200530, G22000900" -County and PUMA "G2200550, G22001200" -County and PUMA "G2200550, G22001201" -County and PUMA "G2200570, G22002000" -County and PUMA "G2200590, G22000600" -County and PUMA "G2200610, G22000300" -County and PUMA "G2200630, G22001700" -County and PUMA "G2200650, G22000500" -County and PUMA "G2200670, G22000500" -County and PUMA "G2200690, G22000300" -County and PUMA "G2200710, G22002400" -County and PUMA "G2200710, G22002401" -County and PUMA "G2200710, G22002402" -County and PUMA "G2200730, G22000400" -County and PUMA "G2200750, G22002500" -County and PUMA "G2200770, G22001400" -County and PUMA "G2200790, G22000700" -County and PUMA "G2200810, G22000300" -County and PUMA "G2200830, G22000500" -County and PUMA "G2200850, G22000300" -County and PUMA "G2200870, G22002500" -County and PUMA "G2200890, G22001900" -County and PUMA "G2200910, G22001700" -County and PUMA "G2200930, G22001900" -County and PUMA "G2200950, G22001900" -County and PUMA "G2200970, G22001000" -County and PUMA "G2200990, G22001300" -County and PUMA "G2201010, G22001300" -County and PUMA "G2201030, G22002200" -County and PUMA "G2201030, G22002201" -County and PUMA "G2201050, G22001800" -County and PUMA "G2201070, G22000500" -County and PUMA "G2201090, G22002100" -County and PUMA "G2201110, G22000500" -County and PUMA "G2201130, G22001100" -County and PUMA "G2201150, G22000700" -County and PUMA "G2201170, G22001800" -County and PUMA "G2201190, G22000200" -County and PUMA "G2201210, G22001400" -County and PUMA "G2201230, G22000500" -County and PUMA "G2201250, G22001400" -County and PUMA "G2201270, G22000600" -County and PUMA "G2300010, G23000600" -County and PUMA "G2300030, G23000100" -County and PUMA "G2300050, G23000700" -County and PUMA "G2300050, G23000800" -County and PUMA "G2300050, G23000900" -County and PUMA "G2300050, G23001000" -County and PUMA "G2300070, G23000200" -County and PUMA "G2300090, G23000500" -County and PUMA "G2300110, G23000400" -County and PUMA "G2300130, G23000500" -County and PUMA "G2300150, G23000500" -County and PUMA "G2300170, G23000200" -County and PUMA "G2300190, G23000300" -County and PUMA "G2300210, G23000200" -County and PUMA "G2300230, G23000700" -County and PUMA "G2300250, G23000200" -County and PUMA "G2300270, G23000500" -County and PUMA "G2300290, G23000100" -County and PUMA "G2300310, G23000800" -County and PUMA "G2300310, G23000900" -County and PUMA "G2400010, G24000100" -County and PUMA "G2400030, G24001201" -County and PUMA "G2400030, G24001202" -County and PUMA "G2400030, G24001203" -County and PUMA "G2400030, G24001204" -County and PUMA "G2400050, G24000501" -County and PUMA "G2400050, G24000502" -County and PUMA "G2400050, G24000503" -County and PUMA "G2400050, G24000504" -County and PUMA "G2400050, G24000505" -County and PUMA "G2400050, G24000506" -County and PUMA "G2400050, G24000507" -County and PUMA "G2400090, G24001500" -County and PUMA "G2400110, G24001300" -County and PUMA "G2400130, G24000400" -County and PUMA "G2400150, G24000700" -County and PUMA "G2400170, G24001600" -County and PUMA "G2400190, G24001300" -County and PUMA "G2400210, G24000301" -County and PUMA "G2400210, G24000302" -County and PUMA "G2400230, G24000100" -County and PUMA "G2400250, G24000601" -County and PUMA "G2400250, G24000602" -County and PUMA "G2400270, G24000901" -County and PUMA "G2400270, G24000902" -County and PUMA "G2400290, G24001300" -County and PUMA "G2400310, G24001001" -County and PUMA "G2400310, G24001002" -County and PUMA "G2400310, G24001003" -County and PUMA "G2400310, G24001004" -County and PUMA "G2400310, G24001005" -County and PUMA "G2400310, G24001006" -County and PUMA "G2400310, G24001007" -County and PUMA "G2400330, G24001101" -County and PUMA "G2400330, G24001102" -County and PUMA "G2400330, G24001103" -County and PUMA "G2400330, G24001104" -County and PUMA "G2400330, G24001105" -County and PUMA "G2400330, G24001106" -County and PUMA "G2400330, G24001107" -County and PUMA "G2400350, G24001300" -County and PUMA "G2400370, G24001500" -County and PUMA "G2400390, G24001400" -County and PUMA "G2400410, G24001300" -County and PUMA "G2400430, G24000200" -County and PUMA "G2400450, G24001400" -County and PUMA "G2400470, G24001400" -County and PUMA "G2405100, G24000801" -County and PUMA "G2405100, G24000802" -County and PUMA "G2405100, G24000803" -County and PUMA "G2405100, G24000804" -County and PUMA "G2405100, G24000805" -County and PUMA "G2500010, G25004700" -County and PUMA "G2500010, G25004800" -County and PUMA "G2500030, G25000100" -County and PUMA "G2500050, G25004200" -County and PUMA "G2500050, G25004301" -County and PUMA "G2500050, G25004302" -County and PUMA "G2500050, G25004303" -County and PUMA "G2500050, G25004500" -County and PUMA "G2500050, G25004901" -County and PUMA "G2500070, G25004800" -County and PUMA "G2500090, G25000701" -County and PUMA "G2500090, G25000702" -County and PUMA "G2500090, G25000703" -County and PUMA "G2500090, G25000704" -County and PUMA "G2500090, G25001000" -County and PUMA "G2500090, G25001300" -County and PUMA "G2500090, G25002800" -County and PUMA "G2500110, G25000200" -County and PUMA "G2500130, G25001600" -County and PUMA "G2500130, G25001900" -County and PUMA "G2500130, G25001901" -County and PUMA "G2500130, G25001902" -County and PUMA "G2500150, G25000200" -County and PUMA "G2500150, G25001600" -County and PUMA "G2500170, G25000400" -County and PUMA "G2500170, G25000501" -County and PUMA "G2500170, G25000502" -County and PUMA "G2500170, G25000503" -County and PUMA "G2500170, G25000504" -County and PUMA "G2500170, G25000505" -County and PUMA "G2500170, G25000506" -County and PUMA "G2500170, G25000507" -County and PUMA "G2500170, G25000508" -County and PUMA "G2500170, G25001000" -County and PUMA "G2500170, G25001300" -County and PUMA "G2500170, G25001400" -County and PUMA "G2500170, G25002400" -County and PUMA "G2500170, G25002800" -County and PUMA "G2500170, G25003400" -County and PUMA "G2500170, G25003500" -County and PUMA "G2500190, G25004800" -County and PUMA "G2500210, G25002400" -County and PUMA "G2500210, G25003400" -County and PUMA "G2500210, G25003500" -County and PUMA "G2500210, G25003601" -County and PUMA "G2500210, G25003602" -County and PUMA "G2500210, G25003603" -County and PUMA "G2500210, G25003900" -County and PUMA "G2500210, G25004000" -County and PUMA "G2500210, G25004200" -County and PUMA "G2500230, G25003900" -County and PUMA "G2500230, G25004000" -County and PUMA "G2500230, G25004301" -County and PUMA "G2500230, G25004901" -County and PUMA "G2500230, G25004902" -County and PUMA "G2500230, G25004903" -County and PUMA "G2500250, G25003301" -County and PUMA "G2500250, G25003302" -County and PUMA "G2500250, G25003303" -County and PUMA "G2500250, G25003304" -County and PUMA "G2500250, G25003305" -County and PUMA "G2500250, G25003306" -County and PUMA "G2500270, G25000300" -County and PUMA "G2500270, G25000301" -County and PUMA "G2500270, G25000302" -County and PUMA "G2500270, G25000303" -County and PUMA "G2500270, G25000304" -County and PUMA "G2500270, G25000400" -County and PUMA "G2500270, G25001400" -County and PUMA "G2500270, G25002400" -County and PUMA "G2600010, G26000300" -County and PUMA "G2600030, G26000200" -County and PUMA "G2600050, G26000900" -County and PUMA "G2600070, G26000300" -County and PUMA "G2600090, G26000400" -County and PUMA "G2600110, G26001300" -County and PUMA "G2600130, G26000100" -County and PUMA "G2600150, G26002000" -County and PUMA "G2600170, G26001400" -County and PUMA "G2600190, G26000500" -County and PUMA "G2600210, G26002400" -County and PUMA "G2600230, G26002200" -County and PUMA "G2600250, G26002000" -County and PUMA "G2600270, G26002300" -County and PUMA "G2600290, G26000400" -County and PUMA "G2600310, G26000300" -County and PUMA "G2600330, G26000200" -County and PUMA "G2600350, G26001200" -County and PUMA "G2600370, G26001900" -County and PUMA "G2600390, G26000300" -County and PUMA "G2600410, G26000200" -County and PUMA "G2600430, G26000100" -County and PUMA "G2600450, G26001900" -County and PUMA "G2600470, G26000400" -County and PUMA "G2600490, G26001701" -County and PUMA "G2600490, G26001702" -County and PUMA "G2600490, G26001703" -County and PUMA "G2600490, G26001704" -County and PUMA "G2600510, G26001300" -County and PUMA "G2600530, G26000100" -County and PUMA "G2600550, G26000500" -County and PUMA "G2600570, G26001200" -County and PUMA "G2600590, G26002500" -County and PUMA "G2600610, G26000100" -County and PUMA "G2600630, G26001600" -County and PUMA "G2600650, G26001801" -County and PUMA "G2600650, G26001802" -County and PUMA "G2600670, G26001100" -County and PUMA "G2600690, G26001300" -County and PUMA "G2600710, G26000100" -County and PUMA "G2600730, G26001200" -County and PUMA "G2600750, G26002600" -County and PUMA "G2600770, G26002101" -County and PUMA "G2600770, G26002102" -County and PUMA "G2600790, G26000400" -County and PUMA "G2600810, G26001001" -County and PUMA "G2600810, G26001002" -County and PUMA "G2600810, G26001003" -County and PUMA "G2600810, G26001004" -County and PUMA "G2600830, G26000100" -County and PUMA "G2600850, G26000600" -County and PUMA "G2600870, G26001701" -County and PUMA "G2600890, G26000500" -County and PUMA "G2600910, G26002500" -County and PUMA "G2600930, G26002800" -County and PUMA "G2600950, G26000200" -County and PUMA "G2600970, G26000200" -County and PUMA "G2600990, G26003001" -County and PUMA "G2600990, G26003002" -County and PUMA "G2600990, G26003003" -County and PUMA "G2600990, G26003004" -County and PUMA "G2600990, G26003005" -County and PUMA "G2600990, G26003006" -County and PUMA "G2601010, G26000500" -County and PUMA "G2601030, G26000100" -County and PUMA "G2601050, G26000600" -County and PUMA "G2601070, G26001100" -County and PUMA "G2601090, G26000200" -County and PUMA "G2601110, G26001400" -County and PUMA "G2601130, G26000400" -County and PUMA "G2601150, G26003300" -County and PUMA "G2601170, G26001100" -County and PUMA "G2601190, G26000300" -County and PUMA "G2601210, G26000700" -County and PUMA "G2601230, G26000600" -County and PUMA "G2601250, G26002901" -County and PUMA "G2601250, G26002902" -County and PUMA "G2601250, G26002903" -County and PUMA "G2601250, G26002904" -County and PUMA "G2601250, G26002905" -County and PUMA "G2601250, G26002906" -County and PUMA "G2601250, G26002907" -County and PUMA "G2601250, G26002908" -County and PUMA "G2601270, G26000600" -County and PUMA "G2601290, G26001300" -County and PUMA "G2601310, G26000100" -County and PUMA "G2601330, G26001100" -County and PUMA "G2601350, G26000300" -County and PUMA "G2601370, G26000300" -County and PUMA "G2601390, G26000801" -County and PUMA "G2601390, G26000802" -County and PUMA "G2601410, G26000300" -County and PUMA "G2601430, G26001300" -County and PUMA "G2601450, G26001500" -County and PUMA "G2601470, G26003100" -County and PUMA "G2601490, G26002200" -County and PUMA "G2601510, G26001600" -County and PUMA "G2601530, G26000200" -County and PUMA "G2601550, G26001704" -County and PUMA "G2601570, G26001600" -County and PUMA "G2601590, G26002300" -County and PUMA "G2601610, G26002701" -County and PUMA "G2601610, G26002702" -County and PUMA "G2601610, G26002703" -County and PUMA "G2601630, G26003201" -County and PUMA "G2601630, G26003202" -County and PUMA "G2601630, G26003203" -County and PUMA "G2601630, G26003204" -County and PUMA "G2601630, G26003205" -County and PUMA "G2601630, G26003206" -County and PUMA "G2601630, G26003207" -County and PUMA "G2601630, G26003208" -County and PUMA "G2601630, G26003209" -County and PUMA "G2601630, G26003210" -County and PUMA "G2601630, G26003211" -County and PUMA "G2601630, G26003212" -County and PUMA "G2601630, G26003213" -County and PUMA "G2601650, G26000400" -County and PUMA "G2700010, G27000300" -County and PUMA "G2700030, G27001101" -County and PUMA "G2700030, G27001102" -County and PUMA "G2700030, G27001103" -County and PUMA "G2700050, G27000200" -County and PUMA "G2700070, G27000200" -County and PUMA "G2700090, G27001000" -County and PUMA "G2700110, G27000800" -County and PUMA "G2700130, G27002200" -County and PUMA "G2700150, G27002000" -County and PUMA "G2700170, G27000300" -County and PUMA "G2700170, G27000400" -County and PUMA "G2700190, G27001700" -County and PUMA "G2700210, G27000300" -County and PUMA "G2700230, G27002000" -County and PUMA "G2700250, G27000600" -County and PUMA "G2700270, G27000100" -County and PUMA "G2700290, G27000200" -County and PUMA "G2700310, G27000400" -County and PUMA "G2700330, G27002100" -County and PUMA "G2700350, G27000700" -County and PUMA "G2700370, G27001501" -County and PUMA "G2700370, G27001502" -County and PUMA "G2700370, G27001503" -County and PUMA "G2700390, G27002400" -County and PUMA "G2700410, G27000800" -County and PUMA "G2700430, G27002100" -County and PUMA "G2700450, G27002600" -County and PUMA "G2700470, G27002400" -County and PUMA "G2700490, G27002300" -County and PUMA "G2700510, G27000800" -County and PUMA "G2700530, G27001401" -County and PUMA "G2700530, G27001402" -County and PUMA "G2700530, G27001403" -County and PUMA "G2700530, G27001404" -County and PUMA "G2700530, G27001405" -County and PUMA "G2700530, G27001406" -County and PUMA "G2700530, G27001407" -County and PUMA "G2700530, G27001408" -County and PUMA "G2700530, G27001409" -County and PUMA "G2700530, G27001410" -County and PUMA "G2700550, G27002600" -County and PUMA "G2700570, G27000200" -County and PUMA "G2700590, G27000600" -County and PUMA "G2700610, G27000300" -County and PUMA "G2700630, G27002100" -County and PUMA "G2700650, G27000600" -County and PUMA "G2700670, G27001900" -County and PUMA "G2700690, G27000100" -County and PUMA "G2700710, G27000400" -County and PUMA "G2700730, G27002000" -County and PUMA "G2700750, G27000400" -County and PUMA "G2700770, G27000200" -County and PUMA "G2700790, G27002300" -County and PUMA "G2700810, G27002000" -County and PUMA "G2700830, G27002000" -County and PUMA "G2700850, G27001900" -County and PUMA "G2700870, G27000200" -County and PUMA "G2700890, G27000100" -County and PUMA "G2700910, G27002100" -County and PUMA "G2700930, G27001900" -County and PUMA "G2700950, G27000600" -County and PUMA "G2700970, G27000700" -County and PUMA "G2700990, G27002400" -County and PUMA "G2701010, G27002100" -County and PUMA "G2701030, G27002200" -County and PUMA "G2701050, G27002100" -County and PUMA "G2701070, G27000100" -County and PUMA "G2701090, G27002500" -County and PUMA "G2701110, G27000800" -County and PUMA "G2701130, G27000100" -County and PUMA "G2701150, G27000600" -County and PUMA "G2701170, G27002100" -County and PUMA "G2701190, G27000100" -County and PUMA "G2701210, G27000800" -County and PUMA "G2701230, G27001301" -County and PUMA "G2701230, G27001302" -County and PUMA "G2701230, G27001303" -County and PUMA "G2701230, G27001304" -County and PUMA "G2701250, G27000100" -County and PUMA "G2701270, G27002000" -County and PUMA "G2701290, G27001900" -County and PUMA "G2701310, G27002300" -County and PUMA "G2701330, G27002100" -County and PUMA "G2701350, G27000100" -County and PUMA "G2701370, G27000400" -County and PUMA "G2701370, G27000500" -County and PUMA "G2701390, G27001600" -County and PUMA "G2701390, G27001700" -County and PUMA "G2701410, G27001000" -County and PUMA "G2701430, G27001900" -County and PUMA "G2701450, G27000900" -County and PUMA "G2701470, G27002400" -County and PUMA "G2701490, G27000800" -County and PUMA "G2701510, G27000800" -County and PUMA "G2701530, G27000700" -County and PUMA "G2701550, G27000800" -County and PUMA "G2701570, G27002600" -County and PUMA "G2701590, G27000700" -County and PUMA "G2701610, G27002200" -County and PUMA "G2701630, G27001201" -County and PUMA "G2701630, G27001202" -County and PUMA "G2701650, G27002100" -County and PUMA "G2701670, G27000800" -County and PUMA "G2701690, G27002600" -County and PUMA "G2701710, G27001800" -County and PUMA "G2701730, G27002000" -County and PUMA "G2800010, G28001600" -County and PUMA "G2800030, G28000200" -County and PUMA "G2800050, G28001600" -County and PUMA "G2800070, G28000700" -County and PUMA "G2800090, G28000200" -County and PUMA "G2800110, G28000800" -County and PUMA "G2800130, G28000400" -County and PUMA "G2800150, G28000700" -County and PUMA "G2800170, G28000400" -County and PUMA "G2800190, G28000600" -County and PUMA "G2800210, G28001600" -County and PUMA "G2800230, G28001500" -County and PUMA "G2800250, G28000600" -County and PUMA "G2800270, G28000300" -County and PUMA "G2800290, G28001200" -County and PUMA "G2800310, G28001700" -County and PUMA "G2800330, G28000100" -County and PUMA "G2800350, G28001800" -County and PUMA "G2800370, G28001600" -County and PUMA "G2800390, G28001900" -County and PUMA "G2800410, G28001700" -County and PUMA "G2800430, G28000700" -County and PUMA "G2800450, G28001900" -County and PUMA "G2800470, G28002000" -County and PUMA "G2800490, G28001000" -County and PUMA "G2800490, G28001100" -County and PUMA "G2800490, G28001200" -County and PUMA "G2800510, G28000700" -County and PUMA "G2800530, G28000800" -County and PUMA "G2800550, G28000800" -County and PUMA "G2800570, G28000400" -County and PUMA "G2800590, G28002100" -County and PUMA "G2800610, G28001400" -County and PUMA "G2800630, G28001600" -County and PUMA "G2800650, G28001700" -County and PUMA "G2800670, G28001700" -County and PUMA "G2800690, G28001400" -County and PUMA "G2800710, G28000400" -County and PUMA "G2800730, G28001800" -County and PUMA "G2800750, G28001500" -County and PUMA "G2800770, G28001600" -County and PUMA "G2800790, G28001400" -County and PUMA "G2800810, G28000500" -County and PUMA "G2800830, G28000700" -County and PUMA "G2800850, G28001600" -County and PUMA "G2800870, G28000600" -County and PUMA "G2800890, G28000900" -County and PUMA "G2800890, G28001000" -County and PUMA "G2800910, G28001800" -County and PUMA "G2800930, G28000200" -County and PUMA "G2800950, G28000400" -County and PUMA "G2800970, G28000700" -County and PUMA "G2800990, G28001400" -County and PUMA "G2801010, G28001500" -County and PUMA "G2801030, G28000600" -County and PUMA "G2801050, G28000600" -County and PUMA "G2801070, G28000300" -County and PUMA "G2801090, G28001900" -County and PUMA "G2801110, G28001800" -County and PUMA "G2801130, G28001600" -County and PUMA "G2801150, G28000500" -County and PUMA "G2801170, G28000200" -County and PUMA "G2801190, G28000300" -County and PUMA "G2801210, G28001300" -County and PUMA "G2801230, G28001400" -County and PUMA "G2801250, G28000800" -County and PUMA "G2801270, G28001300" -County and PUMA "G2801290, G28001400" -County and PUMA "G2801310, G28001900" -County and PUMA "G2801330, G28000800" -County and PUMA "G2801350, G28000300" -County and PUMA "G2801370, G28000300" -County and PUMA "G2801390, G28000200" -County and PUMA "G2801410, G28000200" -County and PUMA "G2801430, G28000300" -County and PUMA "G2801450, G28000500" -County and PUMA "G2801470, G28001600" -County and PUMA "G2801490, G28001200" -County and PUMA "G2801510, G28000800" -County and PUMA "G2801530, G28001700" -County and PUMA "G2801550, G28000600" -County and PUMA "G2801570, G28001600" -County and PUMA "G2801590, G28000600" -County and PUMA "G2801610, G28000700" -County and PUMA "G2801630, G28000900" -County and PUMA "G2900010, G29000300" -County and PUMA "G2900030, G29000200" -County and PUMA "G2900050, G29000100" -County and PUMA "G2900070, G29000400" -County and PUMA "G2900090, G29002700" -County and PUMA "G2900110, G29001200" -County and PUMA "G2900130, G29001100" -County and PUMA "G2900150, G29001300" -County and PUMA "G2900170, G29002200" -County and PUMA "G2900190, G29000600" -County and PUMA "G2900210, G29000200" -County and PUMA "G2900230, G29002400" -County and PUMA "G2900250, G29000800" -County and PUMA "G2900270, G29000500" -County and PUMA "G2900290, G29001400" -County and PUMA "G2900310, G29002200" -County and PUMA "G2900330, G29000700" -County and PUMA "G2900350, G29002400" -County and PUMA "G2900370, G29001100" -County and PUMA "G2900390, G29001200" -County and PUMA "G2900410, G29000700" -County and PUMA "G2900430, G29002601" -County and PUMA "G2900450, G29000300" -County and PUMA "G2900470, G29000901" -County and PUMA "G2900470, G29000902" -County and PUMA "G2900470, G29000903" -County and PUMA "G2900490, G29000800" -County and PUMA "G2900510, G29000500" -County and PUMA "G2900530, G29000700" -County and PUMA "G2900550, G29001500" -County and PUMA "G2900570, G29001200" -County and PUMA "G2900590, G29001300" -County and PUMA "G2900610, G29000100" -County and PUMA "G2900630, G29000200" -County and PUMA "G2900650, G29001500" -County and PUMA "G2900670, G29002500" -County and PUMA "G2900690, G29002300" -County and PUMA "G2900710, G29001600" -County and PUMA "G2900730, G29001500" -County and PUMA "G2900750, G29000100" -County and PUMA "G2900770, G29002601" -County and PUMA "G2900770, G29002602" -County and PUMA "G2900770, G29002603" -County and PUMA "G2900790, G29000100" -County and PUMA "G2900810, G29000100" -County and PUMA "G2900830, G29001200" -County and PUMA "G2900850, G29001300" -County and PUMA "G2900870, G29000100" -County and PUMA "G2900890, G29000700" -County and PUMA "G2900910, G29002500" -County and PUMA "G2900930, G29002400" -County and PUMA "G2900950, G29001001" -County and PUMA "G2900950, G29001002" -County and PUMA "G2900950, G29001003" -County and PUMA "G2900950, G29001004" -County and PUMA "G2900950, G29001005" -County and PUMA "G2900970, G29002800" -County and PUMA "G2900990, G29002001" -County and PUMA "G2900990, G29002002" -County and PUMA "G2901010, G29000800" -County and PUMA "G2901030, G29000300" -County and PUMA "G2901050, G29001300" -County and PUMA "G2901070, G29000800" -County and PUMA "G2901090, G29001200" -County and PUMA "G2901110, G29000300" -County and PUMA "G2901130, G29000400" -County and PUMA "G2901150, G29000100" -County and PUMA "G2901170, G29000100" -County and PUMA "G2901190, G29002700" -County and PUMA "G2901210, G29000300" -County and PUMA "G2901230, G29002400" -County and PUMA "G2901250, G29001500" -County and PUMA "G2901270, G29000300" -County and PUMA "G2901290, G29000100" -County and PUMA "G2901310, G29001400" -County and PUMA "G2901330, G29002300" -County and PUMA "G2901350, G29000500" -County and PUMA "G2901370, G29000300" -County and PUMA "G2901390, G29000400" -County and PUMA "G2901410, G29001400" -County and PUMA "G2901430, G29002300" -County and PUMA "G2901450, G29002800" -County and PUMA "G2901470, G29000100" -County and PUMA "G2901490, G29002500" -County and PUMA "G2901510, G29000500" -County and PUMA "G2901530, G29002500" -County and PUMA "G2901550, G29002300" -County and PUMA "G2901570, G29002100" -County and PUMA "G2901590, G29000700" -County and PUMA "G2901610, G29001500" -County and PUMA "G2901630, G29000400" -County and PUMA "G2901650, G29000903" -County and PUMA "G2901670, G29001300" -County and PUMA "G2901690, G29001400" -County and PUMA "G2901710, G29000100" -County and PUMA "G2901730, G29000300" -County and PUMA "G2901750, G29000700" -County and PUMA "G2901770, G29000800" -County and PUMA "G2901790, G29002400" -County and PUMA "G2901810, G29002400" -County and PUMA "G2901830, G29001701" -County and PUMA "G2901830, G29001702" -County and PUMA "G2901830, G29001703" -County and PUMA "G2901850, G29001200" -County and PUMA "G2901860, G29002100" -County and PUMA "G2901870, G29002100" -County and PUMA "G2901890, G29001801" -County and PUMA "G2901890, G29001802" -County and PUMA "G2901890, G29001803" -County and PUMA "G2901890, G29001804" -County and PUMA "G2901890, G29001805" -County and PUMA "G2901890, G29001806" -County and PUMA "G2901890, G29001807" -County and PUMA "G2901890, G29001808" -County and PUMA "G2901950, G29000700" -County and PUMA "G2901970, G29000300" -County and PUMA "G2901990, G29000300" -County and PUMA "G2902010, G29002200" -County and PUMA "G2902030, G29002500" -County and PUMA "G2902050, G29000300" -County and PUMA "G2902070, G29002300" -County and PUMA "G2902090, G29002700" -County and PUMA "G2902110, G29000100" -County and PUMA "G2902130, G29002700" -County and PUMA "G2902150, G29002500" -County and PUMA "G2902170, G29001200" -County and PUMA "G2902190, G29000400" -County and PUMA "G2902210, G29002100" -County and PUMA "G2902230, G29002400" -County and PUMA "G2902250, G29002601" -County and PUMA "G2902270, G29000100" -County and PUMA "G2902290, G29002500" -County and PUMA "G2905100, G29001901" -County and PUMA "G2905100, G29001902" -County and PUMA "G3000010, G30000300" -County and PUMA "G3000030, G30000600" -County and PUMA "G3000050, G30000400" -County and PUMA "G3000070, G30000300" -County and PUMA "G3000090, G30000500" -County and PUMA "G3000110, G30000600" -County and PUMA "G3000130, G30000400" -County and PUMA "G3000150, G30000400" -County and PUMA "G3000170, G30000600" -County and PUMA "G3000190, G30000600" -County and PUMA "G3000210, G30000600" -County and PUMA "G3000230, G30000300" -County and PUMA "G3000250, G30000600" -County and PUMA "G3000270, G30000400" -County and PUMA "G3000290, G30000100" -County and PUMA "G3000310, G30000500" -County and PUMA "G3000330, G30000600" -County and PUMA "G3000350, G30000100" -County and PUMA "G3000370, G30000600" -County and PUMA "G3000390, G30000300" -County and PUMA "G3000410, G30000400" -County and PUMA "G3000430, G30000300" -County and PUMA "G3000450, G30000400" -County and PUMA "G3000470, G30000200" -County and PUMA "G3000490, G30000300" -County and PUMA "G3000510, G30000400" -County and PUMA "G3000530, G30000100" -County and PUMA "G3000550, G30000600" -County and PUMA "G3000570, G30000300" -County and PUMA "G3000590, G30000400" -County and PUMA "G3000610, G30000200" -County and PUMA "G3000630, G30000200" -County and PUMA "G3000650, G30000600" -County and PUMA "G3000670, G30000500" -County and PUMA "G3000690, G30000400" -County and PUMA "G3000710, G30000600" -County and PUMA "G3000730, G30000400" -County and PUMA "G3000750, G30000600" -County and PUMA "G3000770, G30000300" -County and PUMA "G3000790, G30000600" -County and PUMA "G3000810, G30000200" -County and PUMA "G3000830, G30000600" -County and PUMA "G3000850, G30000600" -County and PUMA "G3000870, G30000600" -County and PUMA "G3000890, G30000200" -County and PUMA "G3000910, G30000600" -County and PUMA "G3000930, G30000300" -County and PUMA "G3000950, G30000500" -County and PUMA "G3000970, G30000500" -County and PUMA "G3000990, G30000400" -County and PUMA "G3001010, G30000400" -County and PUMA "G3001030, G30000600" -County and PUMA "G3001050, G30000600" -County and PUMA "G3001070, G30000400" -County and PUMA "G3001090, G30000600" -County and PUMA "G3001110, G30000600" -County and PUMA "G3001110, G30000700" -County and PUMA "G3100010, G31000500" -County and PUMA "G3100030, G31000200" -County and PUMA "G3100050, G31000400" -County and PUMA "G3100070, G31000100" -County and PUMA "G3100090, G31000300" -County and PUMA "G3100110, G31000200" -County and PUMA "G3100130, G31000100" -County and PUMA "G3100150, G31000100" -County and PUMA "G3100170, G31000100" -County and PUMA "G3100190, G31000500" -County and PUMA "G3100210, G31000200" -County and PUMA "G3100230, G31000600" -County and PUMA "G3100250, G31000701" -County and PUMA "G3100270, G31000200" -County and PUMA "G3100290, G31000400" -County and PUMA "G3100310, G31000100" -County and PUMA "G3100330, G31000100" -County and PUMA "G3100350, G31000500" -County and PUMA "G3100370, G31000200" -County and PUMA "G3100390, G31000200" -County and PUMA "G3100410, G31000300" -County and PUMA "G3100430, G31000200" -County and PUMA "G3100450, G31000100" -County and PUMA "G3100470, G31000400" -County and PUMA "G3100490, G31000100" -County and PUMA "G3100510, G31000200" -County and PUMA "G3100530, G31000701" -County and PUMA "G3100550, G31000901" -County and PUMA "G3100550, G31000902" -County and PUMA "G3100550, G31000903" -County and PUMA "G3100550, G31000904" -County and PUMA "G3100570, G31000400" -County and PUMA "G3100590, G31000600" -County and PUMA "G3100610, G31000500" -County and PUMA "G3100630, G31000400" -County and PUMA "G3100650, G31000400" -County and PUMA "G3100670, G31000600" -County and PUMA "G3100690, G31000100" -County and PUMA "G3100710, G31000300" -County and PUMA "G3100730, G31000400" -County and PUMA "G3100750, G31000400" -County and PUMA "G3100770, G31000300" -County and PUMA "G3100790, G31000300" -County and PUMA "G3100810, G31000300" -County and PUMA "G3100830, G31000500" -County and PUMA "G3100850, G31000400" -County and PUMA "G3100870, G31000400" -County and PUMA "G3100890, G31000100" -County and PUMA "G3100910, G31000400" -County and PUMA "G3100930, G31000300" -County and PUMA "G3100950, G31000600" -County and PUMA "G3100970, G31000600" -County and PUMA "G3100990, G31000500" -County and PUMA "G3101010, G31000400" -County and PUMA "G3101030, G31000100" -County and PUMA "G3101050, G31000100" -County and PUMA "G3101070, G31000200" -County and PUMA "G3101090, G31000801" -County and PUMA "G3101090, G31000802" -County and PUMA "G3101110, G31000400" -County and PUMA "G3101130, G31000400" -County and PUMA "G3101150, G31000300" -County and PUMA "G3101170, G31000400" -County and PUMA "G3101190, G31000200" -County and PUMA "G3101210, G31000300" -County and PUMA "G3101230, G31000100" -County and PUMA "G3101250, G31000200" -County and PUMA "G3101270, G31000600" -County and PUMA "G3101290, G31000500" -County and PUMA "G3101310, G31000600" -County and PUMA "G3101330, G31000600" -County and PUMA "G3101350, G31000400" -County and PUMA "G3101370, G31000500" -County and PUMA "G3101390, G31000200" -County and PUMA "G3101410, G31000200" -County and PUMA "G3101430, G31000600" -County and PUMA "G3101450, G31000400" -County and PUMA "G3101470, G31000600" -County and PUMA "G3101490, G31000100" -County and PUMA "G3101510, G31000600" -County and PUMA "G3101530, G31000702" -County and PUMA "G3101550, G31000701" -County and PUMA "G3101570, G31000100" -County and PUMA "G3101590, G31000600" -County and PUMA "G3101610, G31000100" -County and PUMA "G3101630, G31000300" -County and PUMA "G3101650, G31000100" -County and PUMA "G3101670, G31000200" -County and PUMA "G3101690, G31000600" -County and PUMA "G3101710, G31000400" -County and PUMA "G3101730, G31000200" -County and PUMA "G3101750, G31000300" -County and PUMA "G3101770, G31000701" -County and PUMA "G3101790, G31000200" -County and PUMA "G3101810, G31000500" -County and PUMA "G3101830, G31000300" -County and PUMA "G3101850, G31000600" -County and PUMA "G3200010, G32000300" -County and PUMA "G3200030, G32000401" -County and PUMA "G3200030, G32000402" -County and PUMA "G3200030, G32000403" -County and PUMA "G3200030, G32000404" -County and PUMA "G3200030, G32000405" -County and PUMA "G3200030, G32000406" -County and PUMA "G3200030, G32000407" -County and PUMA "G3200030, G32000408" -County and PUMA "G3200030, G32000409" -County and PUMA "G3200030, G32000410" -County and PUMA "G3200030, G32000411" -County and PUMA "G3200030, G32000412" -County and PUMA "G3200030, G32000413" -County and PUMA "G3200050, G32000200" -County and PUMA "G3200070, G32000300" -County and PUMA "G3200090, G32000300" -County and PUMA "G3200110, G32000300" -County and PUMA "G3200130, G32000300" -County and PUMA "G3200150, G32000300" -County and PUMA "G3200170, G32000300" -County and PUMA "G3200190, G32000200" -County and PUMA "G3200210, G32000300" -County and PUMA "G3200230, G32000300" -County and PUMA "G3200270, G32000300" -County and PUMA "G3200290, G32000200" -County and PUMA "G3200310, G32000101" -County and PUMA "G3200310, G32000102" -County and PUMA "G3200310, G32000103" -County and PUMA "G3200330, G32000300" -County and PUMA "G3205100, G32000200" -County and PUMA "G3300010, G33000200" -County and PUMA "G3300030, G33000200" -County and PUMA "G3300030, G33000300" -County and PUMA "G3300050, G33000500" -County and PUMA "G3300070, G33000100" -County and PUMA "G3300090, G33000100" -County and PUMA "G3300110, G33000600" -County and PUMA "G3300110, G33000700" -County and PUMA "G3300110, G33000800" -County and PUMA "G3300110, G33000900" -County and PUMA "G3300130, G33000200" -County and PUMA "G3300130, G33000400" -County and PUMA "G3300130, G33000700" -County and PUMA "G3300150, G33000300" -County and PUMA "G3300150, G33000700" -County and PUMA "G3300150, G33001000" -County and PUMA "G3300170, G33000300" -County and PUMA "G3300190, G33000500" -County and PUMA "G3400010, G34000101" -County and PUMA "G3400010, G34000102" -County and PUMA "G3400010, G34002600" -County and PUMA "G3400030, G34000301" -County and PUMA "G3400030, G34000302" -County and PUMA "G3400030, G34000303" -County and PUMA "G3400030, G34000304" -County and PUMA "G3400030, G34000305" -County and PUMA "G3400030, G34000306" -County and PUMA "G3400030, G34000307" -County and PUMA "G3400030, G34000308" -County and PUMA "G3400050, G34002001" -County and PUMA "G3400050, G34002002" -County and PUMA "G3400050, G34002003" -County and PUMA "G3400070, G34002101" -County and PUMA "G3400070, G34002102" -County and PUMA "G3400070, G34002103" -County and PUMA "G3400070, G34002104" -County and PUMA "G3400090, G34002600" -County and PUMA "G3400110, G34002400" -County and PUMA "G3400110, G34002500" -County and PUMA "G3400130, G34001301" -County and PUMA "G3400130, G34001302" -County and PUMA "G3400130, G34001401" -County and PUMA "G3400130, G34001402" -County and PUMA "G3400130, G34001403" -County and PUMA "G3400130, G34001404" -County and PUMA "G3400150, G34002201" -County and PUMA "G3400150, G34002202" -County and PUMA "G3400170, G34000601" -County and PUMA "G3400170, G34000602" -County and PUMA "G3400170, G34000701" -County and PUMA "G3400170, G34000702" -County and PUMA "G3400170, G34000703" -County and PUMA "G3400190, G34000800" -County and PUMA "G3400210, G34002301" -County and PUMA "G3400210, G34002302" -County and PUMA "G3400210, G34002303" -County and PUMA "G3400230, G34000901" -County and PUMA "G3400230, G34000902" -County and PUMA "G3400230, G34000903" -County and PUMA "G3400230, G34000904" -County and PUMA "G3400230, G34000905" -County and PUMA "G3400230, G34000906" -County and PUMA "G3400230, G34000907" -County and PUMA "G3400250, G34001101" -County and PUMA "G3400250, G34001102" -County and PUMA "G3400250, G34001103" -County and PUMA "G3400250, G34001104" -County and PUMA "G3400250, G34001105" -County and PUMA "G3400250, G34001106" -County and PUMA "G3400270, G34001501" -County and PUMA "G3400270, G34001502" -County and PUMA "G3400270, G34001503" -County and PUMA "G3400270, G34001504" -County and PUMA "G3400290, G34001201" -County and PUMA "G3400290, G34001202" -County and PUMA "G3400290, G34001203" -County and PUMA "G3400290, G34001204" -County and PUMA "G3400290, G34001205" -County and PUMA "G3400310, G34000400" -County and PUMA "G3400310, G34000501" -County and PUMA "G3400310, G34000502" -County and PUMA "G3400310, G34000503" -County and PUMA "G3400330, G34002500" -County and PUMA "G3400350, G34001001" -County and PUMA "G3400350, G34001002" -County and PUMA "G3400350, G34001003" -County and PUMA "G3400370, G34001600" -County and PUMA "G3400390, G34001800" -County and PUMA "G3400390, G34001901" -County and PUMA "G3400390, G34001902" -County and PUMA "G3400390, G34001903" -County and PUMA "G3400390, G34001904" -County and PUMA "G3400410, G34001700" -County and PUMA "G3500010, G35000700" -County and PUMA "G3500010, G35000801" -County and PUMA "G3500010, G35000802" -County and PUMA "G3500010, G35000803" -County and PUMA "G3500010, G35000804" -County and PUMA "G3500010, G35000805" -County and PUMA "G3500010, G35000806" -County and PUMA "G3500030, G35000900" -County and PUMA "G3500050, G35001100" -County and PUMA "G3500060, G35000100" -County and PUMA "G3500070, G35000400" -County and PUMA "G3500090, G35000400" -County and PUMA "G3500110, G35000400" -County and PUMA "G3500130, G35001001" -County and PUMA "G3500130, G35001002" -County and PUMA "G3500150, G35001200" -County and PUMA "G3500170, G35000900" -County and PUMA "G3500190, G35000400" -County and PUMA "G3500210, G35000400" -County and PUMA "G3500230, G35000900" -County and PUMA "G3500250, G35001200" -County and PUMA "G3500270, G35001100" -County and PUMA "G3500280, G35000300" -County and PUMA "G3500290, G35000900" -County and PUMA "G3500310, G35000100" -County and PUMA "G3500330, G35000300" -County and PUMA "G3500350, G35001100" -County and PUMA "G3500370, G35000400" -County and PUMA "G3500390, G35000300" -County and PUMA "G3500410, G35000400" -County and PUMA "G3500430, G35000600" -County and PUMA "G3500450, G35000100" -County and PUMA "G3500450, G35000200" -County and PUMA "G3500470, G35000300" -County and PUMA "G3500490, G35000500" -County and PUMA "G3500510, G35000900" -County and PUMA "G3500530, G35000900" -County and PUMA "G3500550, G35000300" -County and PUMA "G3500570, G35000900" -County and PUMA "G3500590, G35000400" -County and PUMA "G3500610, G35000700" -County and PUMA "G3600010, G36002001" -County and PUMA "G3600010, G36002002" -County and PUMA "G3600030, G36002500" -County and PUMA "G3600050, G36003701" -County and PUMA "G3600050, G36003702" -County and PUMA "G3600050, G36003703" -County and PUMA "G3600050, G36003704" -County and PUMA "G3600050, G36003705" -County and PUMA "G3600050, G36003706" -County and PUMA "G3600050, G36003707" -County and PUMA "G3600050, G36003708" -County and PUMA "G3600050, G36003709" -County and PUMA "G3600050, G36003710" -County and PUMA "G3600070, G36002201" -County and PUMA "G3600070, G36002202" -County and PUMA "G3600070, G36002203" -County and PUMA "G3600090, G36002500" -County and PUMA "G3600110, G36000704" -County and PUMA "G3600130, G36002600" -County and PUMA "G3600150, G36002401" -County and PUMA "G3600150, G36002402" -County and PUMA "G3600170, G36002203" -County and PUMA "G3600190, G36000200" -County and PUMA "G3600210, G36002100" -County and PUMA "G3600230, G36001500" -County and PUMA "G3600250, G36002203" -County and PUMA "G3600270, G36002801" -County and PUMA "G3600270, G36002802" -County and PUMA "G3600290, G36001201" -County and PUMA "G3600290, G36001202" -County and PUMA "G3600290, G36001203" -County and PUMA "G3600290, G36001204" -County and PUMA "G3600290, G36001205" -County and PUMA "G3600290, G36001206" -County and PUMA "G3600290, G36001207" -County and PUMA "G3600310, G36000200" -County and PUMA "G3600330, G36000200" -County and PUMA "G3600350, G36001600" -County and PUMA "G3600370, G36001000" -County and PUMA "G3600390, G36002100" -County and PUMA "G3600410, G36000200" -County and PUMA "G3600430, G36000401" -County and PUMA "G3600430, G36000403" -County and PUMA "G3600450, G36000500" -County and PUMA "G3600470, G36004001" -County and PUMA "G3600470, G36004002" -County and PUMA "G3600470, G36004003" -County and PUMA "G3600470, G36004004" -County and PUMA "G3600470, G36004005" -County and PUMA "G3600470, G36004006" -County and PUMA "G3600470, G36004007" -County and PUMA "G3600470, G36004008" -County and PUMA "G3600470, G36004009" -County and PUMA "G3600470, G36004010" -County and PUMA "G3600470, G36004011" -County and PUMA "G3600470, G36004012" -County and PUMA "G3600470, G36004013" -County and PUMA "G3600470, G36004014" -County and PUMA "G3600470, G36004015" -County and PUMA "G3600470, G36004016" -County and PUMA "G3600470, G36004017" -County and PUMA "G3600470, G36004018" -County and PUMA "G3600490, G36000500" -County and PUMA "G3600510, G36001300" -County and PUMA "G3600530, G36001500" -County and PUMA "G3600550, G36000901" -County and PUMA "G3600550, G36000902" -County and PUMA "G3600550, G36000903" -County and PUMA "G3600550, G36000904" -County and PUMA "G3600550, G36000905" -County and PUMA "G3600550, G36000906" -County and PUMA "G3600570, G36001600" -County and PUMA "G3600590, G36003201" -County and PUMA "G3600590, G36003202" -County and PUMA "G3600590, G36003203" -County and PUMA "G3600590, G36003204" -County and PUMA "G3600590, G36003205" -County and PUMA "G3600590, G36003206" -County and PUMA "G3600590, G36003207" -County and PUMA "G3600590, G36003208" -County and PUMA "G3600590, G36003209" -County and PUMA "G3600590, G36003210" -County and PUMA "G3600590, G36003211" -County and PUMA "G3600590, G36003212" -County and PUMA "G3600610, G36003801" -County and PUMA "G3600610, G36003802" -County and PUMA "G3600610, G36003803" -County and PUMA "G3600610, G36003804" -County and PUMA "G3600610, G36003805" -County and PUMA "G3600610, G36003806" -County and PUMA "G3600610, G36003807" -County and PUMA "G3600610, G36003808" -County and PUMA "G3600610, G36003809" -County and PUMA "G3600610, G36003810" -County and PUMA "G3600630, G36001101" -County and PUMA "G3600630, G36001102" -County and PUMA "G3600650, G36000401" -County and PUMA "G3600650, G36000402" -County and PUMA "G3600650, G36000403" -County and PUMA "G3600670, G36000701" -County and PUMA "G3600670, G36000702" -County and PUMA "G3600670, G36000703" -County and PUMA "G3600670, G36000704" -County and PUMA "G3600690, G36001400" -County and PUMA "G3600710, G36002901" -County and PUMA "G3600710, G36002902" -County and PUMA "G3600710, G36002903" -County and PUMA "G3600730, G36001000" -County and PUMA "G3600750, G36000600" -County and PUMA "G3600770, G36000403" -County and PUMA "G3600790, G36003101" -County and PUMA "G3600810, G36004101" -County and PUMA "G3600810, G36004102" -County and PUMA "G3600810, G36004103" -County and PUMA "G3600810, G36004104" -County and PUMA "G3600810, G36004105" -County and PUMA "G3600810, G36004106" -County and PUMA "G3600810, G36004107" -County and PUMA "G3600810, G36004108" -County and PUMA "G3600810, G36004109" -County and PUMA "G3600810, G36004110" -County and PUMA "G3600810, G36004111" -County and PUMA "G3600810, G36004112" -County and PUMA "G3600810, G36004113" -County and PUMA "G3600810, G36004114" -County and PUMA "G3600830, G36001900" -County and PUMA "G3600850, G36003901" -County and PUMA "G3600850, G36003902" -County and PUMA "G3600850, G36003903" -County and PUMA "G3600870, G36003001" -County and PUMA "G3600870, G36003002" -County and PUMA "G3600870, G36003003" -County and PUMA "G3600890, G36000100" -County and PUMA "G3600910, G36001801" -County and PUMA "G3600910, G36001802" -County and PUMA "G3600930, G36001700" -County and PUMA "G3600950, G36000403" -County and PUMA "G3600970, G36002402" -County and PUMA "G3600990, G36000800" -County and PUMA "G3601010, G36002401" -County and PUMA "G3601010, G36002402" -County and PUMA "G3601030, G36003301" -County and PUMA "G3601030, G36003302" -County and PUMA "G3601030, G36003303" -County and PUMA "G3601030, G36003304" -County and PUMA "G3601030, G36003305" -County and PUMA "G3601030, G36003306" -County and PUMA "G3601030, G36003307" -County and PUMA "G3601030, G36003308" -County and PUMA "G3601030, G36003309" -County and PUMA "G3601030, G36003310" -County and PUMA "G3601030, G36003311" -County and PUMA "G3601030, G36003312" -County and PUMA "G3601030, G36003313" -County and PUMA "G3601050, G36002701" -County and PUMA "G3601070, G36002202" -County and PUMA "G3601090, G36002300" -County and PUMA "G3601110, G36002701" -County and PUMA "G3601110, G36002702" -County and PUMA "G3601130, G36000300" -County and PUMA "G3601150, G36000300" -County and PUMA "G3601170, G36000800" -County and PUMA "G3601190, G36003101" -County and PUMA "G3601190, G36003102" -County and PUMA "G3601190, G36003103" -County and PUMA "G3601190, G36003104" -County and PUMA "G3601190, G36003105" -County and PUMA "G3601190, G36003106" -County and PUMA "G3601190, G36003107" -County and PUMA "G3601210, G36001300" -County and PUMA "G3601230, G36001400" -County and PUMA "G3700010, G37001600" -County and PUMA "G3700030, G37002000" -County and PUMA "G3700050, G37000200" -County and PUMA "G3700070, G37005300" -County and PUMA "G3700090, G37000100" -County and PUMA "G3700110, G37000100" -County and PUMA "G3700130, G37004400" -County and PUMA "G3700150, G37000800" -County and PUMA "G3700170, G37004900" -County and PUMA "G3700190, G37004800" -County and PUMA "G3700210, G37002201" -County and PUMA "G3700210, G37002202" -County and PUMA "G3700230, G37002100" -County and PUMA "G3700250, G37003200" -County and PUMA "G3700250, G37003300" -County and PUMA "G3700270, G37002000" -County and PUMA "G3700290, G37000700" -County and PUMA "G3700310, G37004400" -County and PUMA "G3700330, G37000400" -County and PUMA "G3700350, G37002800" -County and PUMA "G3700370, G37001500" -County and PUMA "G3700390, G37002400" -County and PUMA "G3700410, G37000700" -County and PUMA "G3700430, G37002400" -County and PUMA "G3700450, G37002600" -County and PUMA "G3700450, G37002700" -County and PUMA "G3700470, G37004900" -County and PUMA "G3700490, G37004300" -County and PUMA "G3700510, G37005001" -County and PUMA "G3700510, G37005002" -County and PUMA "G3700510, G37005003" -County and PUMA "G3700530, G37000700" -County and PUMA "G3700550, G37000800" -County and PUMA "G3700570, G37003500" -County and PUMA "G3700590, G37001900" -County and PUMA "G3700610, G37003900" -County and PUMA "G3700630, G37001301" -County and PUMA "G3700630, G37001302" -County and PUMA "G3700650, G37000900" -County and PUMA "G3700670, G37001801" -County and PUMA "G3700670, G37001802" -County and PUMA "G3700670, G37001803" -County and PUMA "G3700690, G37000500" -County and PUMA "G3700710, G37003001" -County and PUMA "G3700710, G37003002" -County and PUMA "G3700730, G37000700" -County and PUMA "G3700750, G37002300" -County and PUMA "G3700770, G37000400" -County and PUMA "G3700790, G37001000" -County and PUMA "G3700810, G37001701" -County and PUMA "G3700810, G37001702" -County and PUMA "G3700810, G37001703" -County and PUMA "G3700810, G37001704" -County and PUMA "G3700830, G37000600" -County and PUMA "G3700850, G37003800" -County and PUMA "G3700870, G37002300" -County and PUMA "G3700890, G37002500" -County and PUMA "G3700910, G37000600" -County and PUMA "G3700930, G37005200" -County and PUMA "G3700950, G37000800" -County and PUMA "G3700970, G37001900" -County and PUMA "G3700970, G37002900" -County and PUMA "G3700990, G37002300" -County and PUMA "G3700990, G37002400" -County and PUMA "G3701010, G37001100" -County and PUMA "G3701030, G37004100" -County and PUMA "G3701050, G37001500" -County and PUMA "G3701070, G37004100" -County and PUMA "G3701090, G37002700" -County and PUMA "G3701110, G37002100" -County and PUMA "G3701130, G37002400" -County and PUMA "G3701150, G37002300" -County and PUMA "G3701170, G37000800" -County and PUMA "G3701190, G37003101" -County and PUMA "G3701190, G37003102" -County and PUMA "G3701190, G37003103" -County and PUMA "G3701190, G37003104" -County and PUMA "G3701190, G37003105" -County and PUMA "G3701190, G37003106" -County and PUMA "G3701190, G37003107" -County and PUMA "G3701190, G37003108" -County and PUMA "G3701210, G37000100" -County and PUMA "G3701230, G37003700" -County and PUMA "G3701250, G37003700" -County and PUMA "G3701270, G37000900" -County and PUMA "G3701290, G37004600" -County and PUMA "G3701290, G37004700" -County and PUMA "G3701310, G37000600" -County and PUMA "G3701330, G37004100" -County and PUMA "G3701330, G37004500" -County and PUMA "G3701350, G37001400" -County and PUMA "G3701370, G37004400" -County and PUMA "G3701390, G37000700" -County and PUMA "G3701410, G37004600" -County and PUMA "G3701430, G37000700" -County and PUMA "G3701450, G37000400" -County and PUMA "G3701470, G37004200" -County and PUMA "G3701490, G37002600" -County and PUMA "G3701510, G37003600" -County and PUMA "G3701530, G37005200" -County and PUMA "G3701550, G37004900" -County and PUMA "G3701550, G37005100" -County and PUMA "G3701570, G37000300" -County and PUMA "G3701590, G37003400" -County and PUMA "G3701610, G37002600" -County and PUMA "G3701630, G37003900" -County and PUMA "G3701650, G37005200" -County and PUMA "G3701670, G37003300" -County and PUMA "G3701690, G37000300" -County and PUMA "G3701710, G37000200" -County and PUMA "G3701730, G37002300" -County and PUMA "G3701750, G37002500" -County and PUMA "G3701770, G37000800" -County and PUMA "G3701790, G37005300" -County and PUMA "G3701790, G37005400" -County and PUMA "G3701810, G37000500" -County and PUMA "G3701830, G37001201" -County and PUMA "G3701830, G37001202" -County and PUMA "G3701830, G37001203" -County and PUMA "G3701830, G37001204" -County and PUMA "G3701830, G37001205" -County and PUMA "G3701830, G37001206" -County and PUMA "G3701830, G37001207" -County and PUMA "G3701830, G37001208" -County and PUMA "G3701850, G37000500" -County and PUMA "G3701850, G37000600" -County and PUMA "G3701870, G37000800" -County and PUMA "G3701890, G37000100" -County and PUMA "G3701910, G37004000" -County and PUMA "G3701930, G37000200" -County and PUMA "G3701950, G37001000" -County and PUMA "G3701970, G37001900" -County and PUMA "G3701990, G37000100" -County and PUMA "G3800010, G38000100" -County and PUMA "G3800030, G38000200" -County and PUMA "G3800050, G38000200" -County and PUMA "G3800070, G38000100" -County and PUMA "G3800090, G38000200" -County and PUMA "G3800110, G38000100" -County and PUMA "G3800130, G38000100" -County and PUMA "G3800150, G38000300" -County and PUMA "G3800170, G38000500" -County and PUMA "G3800190, G38000400" -County and PUMA "G3800210, G38000200" -County and PUMA "G3800230, G38000100" -County and PUMA "G3800250, G38000100" -County and PUMA "G3800270, G38000200" -County and PUMA "G3800290, G38000300" -County and PUMA "G3800310, G38000200" -County and PUMA "G3800330, G38000100" -County and PUMA "G3800350, G38000400" -County and PUMA "G3800370, G38000100" -County and PUMA "G3800390, G38000400" -County and PUMA "G3800410, G38000100" -County and PUMA "G3800430, G38000300" -County and PUMA "G3800450, G38000200" -County and PUMA "G3800470, G38000300" -County and PUMA "G3800490, G38000100" -County and PUMA "G3800510, G38000300" -County and PUMA "G3800530, G38000100" -County and PUMA "G3800550, G38000100" -County and PUMA "G3800570, G38000100" -County and PUMA "G3800590, G38000300" -County and PUMA "G3800610, G38000100" -County and PUMA "G3800630, G38000200" -County and PUMA "G3800650, G38000100" -County and PUMA "G3800670, G38000400" -County and PUMA "G3800690, G38000200" -County and PUMA "G3800710, G38000200" -County and PUMA "G3800730, G38000200" -County and PUMA "G3800750, G38000100" -County and PUMA "G3800770, G38000200" -County and PUMA "G3800790, G38000200" -County and PUMA "G3800810, G38000200" -County and PUMA "G3800830, G38000200" -County and PUMA "G3800850, G38000100" -County and PUMA "G3800870, G38000100" -County and PUMA "G3800890, G38000100" -County and PUMA "G3800910, G38000400" -County and PUMA "G3800930, G38000200" -County and PUMA "G3800950, G38000400" -County and PUMA "G3800970, G38000400" -County and PUMA "G3800990, G38000400" -County and PUMA "G3801010, G38000100" -County and PUMA "G3801030, G38000200" -County and PUMA "G3801050, G38000100" -County and PUMA "G3900010, G39005200" -County and PUMA "G3900030, G39002500" -County and PUMA "G3900050, G39002100" -County and PUMA "G3900070, G39001300" -County and PUMA "G3900090, G39005000" -County and PUMA "G3900110, G39002600" -County and PUMA "G3900130, G39003500" -County and PUMA "G3900150, G39005700" -County and PUMA "G3900170, G39005401" -County and PUMA "G3900170, G39005402" -County and PUMA "G3900170, G39005403" -County and PUMA "G3900190, G39003300" -County and PUMA "G3900210, G39002700" -County and PUMA "G3900230, G39004300" -County and PUMA "G3900250, G39005600" -County and PUMA "G3900250, G39005700" -County and PUMA "G3900270, G39005200" -County and PUMA "G3900290, G39003400" -County and PUMA "G3900310, G39002900" -County and PUMA "G3900330, G39002300" -County and PUMA "G3900350, G39000901" -County and PUMA "G3900350, G39000902" -County and PUMA "G3900350, G39000903" -County and PUMA "G3900350, G39000904" -County and PUMA "G3900350, G39000905" -County and PUMA "G3900350, G39000906" -County and PUMA "G3900350, G39000907" -County and PUMA "G3900350, G39000908" -County and PUMA "G3900350, G39000909" -County and PUMA "G3900350, G39000910" -County and PUMA "G3900370, G39004500" -County and PUMA "G3900390, G39000100" -County and PUMA "G3900410, G39004000" -County and PUMA "G3900430, G39000700" -County and PUMA "G3900450, G39003900" -County and PUMA "G3900470, G39004800" -County and PUMA "G3900490, G39004101" -County and PUMA "G3900490, G39004102" -County and PUMA "G3900490, G39004103" -County and PUMA "G3900490, G39004104" -County and PUMA "G3900490, G39004105" -County and PUMA "G3900490, G39004106" -County and PUMA "G3900490, G39004107" -County and PUMA "G3900490, G39004108" -County and PUMA "G3900490, G39004109" -County and PUMA "G3900490, G39004110" -County and PUMA "G3900490, G39004111" -County and PUMA "G3900510, G39000200" -County and PUMA "G3900530, G39005000" -County and PUMA "G3900550, G39001200" -County and PUMA "G3900570, G39004700" -County and PUMA "G3900590, G39002900" -County and PUMA "G3900610, G39005501" -County and PUMA "G3900610, G39005502" -County and PUMA "G3900610, G39005503" -County and PUMA "G3900610, G39005504" -County and PUMA "G3900610, G39005505" -County and PUMA "G3900610, G39005506" -County and PUMA "G3900610, G39005507" -County and PUMA "G3900630, G39002400" -County and PUMA "G3900650, G39002700" -County and PUMA "G3900670, G39003000" -County and PUMA "G3900690, G39000100" -County and PUMA "G3900710, G39005200" -County and PUMA "G3900730, G39004900" -County and PUMA "G3900750, G39002900" -County and PUMA "G3900770, G39002100" -County and PUMA "G3900790, G39004900" -County and PUMA "G3900810, G39003500" -County and PUMA "G3900830, G39002800" -County and PUMA "G3900850, G39001000" -County and PUMA "G3900850, G39001100" -County and PUMA "G3900850, G39001200" -County and PUMA "G3900870, G39005100" -County and PUMA "G3900890, G39003800" -County and PUMA "G3900910, G39002700" -County and PUMA "G3900930, G39000801" -County and PUMA "G3900930, G39000802" -County and PUMA "G3900950, G39000200" -County and PUMA "G3900950, G39000300" -County and PUMA "G3900950, G39000400" -County and PUMA "G3900950, G39000500" -County and PUMA "G3900950, G39000600" -County and PUMA "G3900970, G39004200" -County and PUMA "G3900990, G39001400" -County and PUMA "G3900990, G39001500" -County and PUMA "G3901010, G39002800" -County and PUMA "G3901030, G39001900" -County and PUMA "G3901050, G39005000" -County and PUMA "G3901070, G39002600" -County and PUMA "G3901090, G39004400" -County and PUMA "G3901110, G39003600" -County and PUMA "G3901130, G39004601" -County and PUMA "G3901130, G39004602" -County and PUMA "G3901130, G39004603" -County and PUMA "G3901130, G39004604" -County and PUMA "G3901150, G39003600" -County and PUMA "G3901170, G39002800" -County and PUMA "G3901190, G39003700" -County and PUMA "G3901210, G39003600" -County and PUMA "G3901230, G39000600" -County and PUMA "G3901250, G39000100" -County and PUMA "G3901270, G39003700" -County and PUMA "G3901290, G39004200" -County and PUMA "G3901310, G39004900" -County and PUMA "G3901330, G39001700" -County and PUMA "G3901350, G39004500" -County and PUMA "G3901370, G39002400" -County and PUMA "G3901390, G39002200" -County and PUMA "G3901410, G39004800" -County and PUMA "G3901430, G39000700" -County and PUMA "G3901450, G39005100" -County and PUMA "G3901470, G39002300" -County and PUMA "G3901490, G39004500" -County and PUMA "G3901510, G39003100" -County and PUMA "G3901510, G39003200" -County and PUMA "G3901510, G39003300" -County and PUMA "G3901530, G39001801" -County and PUMA "G3901530, G39001802" -County and PUMA "G3901530, G39001803" -County and PUMA "G3901530, G39001804" -County and PUMA "G3901530, G39001805" -County and PUMA "G3901550, G39001400" -County and PUMA "G3901550, G39001600" -County and PUMA "G3901570, G39003000" -County and PUMA "G3901590, G39004200" -County and PUMA "G3901610, G39002600" -County and PUMA "G3901630, G39004900" -County and PUMA "G3901650, G39005301" -County and PUMA "G3901650, G39005302" -County and PUMA "G3901670, G39003600" -County and PUMA "G3901690, G39002000" -County and PUMA "G3901710, G39000100" -County and PUMA "G3901730, G39000200" -County and PUMA "G3901730, G39000300" -County and PUMA "G3901730, G39000600" -County and PUMA "G3901750, G39002300" -County and PUMA "G4000010, G40000200" -County and PUMA "G4000030, G40000500" -County and PUMA "G4000050, G40000702" -County and PUMA "G4000070, G40000500" -County and PUMA "G4000090, G40000400" -County and PUMA "G4000110, G40000500" -County and PUMA "G4000130, G40000702" -County and PUMA "G4000150, G40000602" -County and PUMA "G4000170, G40000800" -County and PUMA "G4000190, G40000701" -County and PUMA "G4000210, G40000200" -County and PUMA "G4000230, G40000300" -County and PUMA "G4000250, G40000500" -County and PUMA "G4000270, G40000900" -County and PUMA "G4000290, G40000702" -County and PUMA "G4000310, G40000601" -County and PUMA "G4000310, G40000602" -County and PUMA "G4000330, G40000602" -County and PUMA "G4000350, G40000100" -County and PUMA "G4000370, G40001204" -County and PUMA "G4000370, G40001501" -County and PUMA "G4000370, G40001601" -County and PUMA "G4000390, G40000400" -County and PUMA "G4000410, G40000100" -County and PUMA "G4000430, G40000500" -County and PUMA "G4000450, G40000500" -County and PUMA "G4000470, G40001400" -County and PUMA "G4000490, G40000701" -County and PUMA "G4000510, G40001101" -County and PUMA "G4000530, G40000500" -County and PUMA "G4000550, G40000400" -County and PUMA "G4000570, G40000400" -County and PUMA "G4000590, G40000500" -County and PUMA "G4000610, G40000300" -County and PUMA "G4000630, G40001501" -County and PUMA "G4000650, G40000400" -County and PUMA "G4000670, G40000602" -County and PUMA "G4000690, G40000702" -County and PUMA "G4000710, G40001400" -County and PUMA "G4000730, G40000500" -County and PUMA "G4000750, G40000400" -County and PUMA "G4000770, G40000300" -County and PUMA "G4000790, G40000300" -County and PUMA "G4000810, G40001102" -County and PUMA "G4000830, G40001102" -County and PUMA "G4000850, G40000701" -County and PUMA "G4000870, G40001101" -County and PUMA "G4000890, G40000300" -County and PUMA "G4000910, G40001302" -County and PUMA "G4000930, G40000500" -County and PUMA "G4000950, G40000702" -County and PUMA "G4000970, G40000100" -County and PUMA "G4000990, G40000701" -County and PUMA "G4001010, G40001302" -County and PUMA "G4001030, G40001400" -County and PUMA "G4001050, G40000100" -County and PUMA "G4001070, G40001501" -County and PUMA "G4001090, G40001001" -County and PUMA "G4001090, G40001002" -County and PUMA "G4001090, G40001003" -County and PUMA "G4001090, G40001004" -County and PUMA "G4001090, G40001005" -County and PUMA "G4001090, G40001006" -County and PUMA "G4001110, G40001302" -County and PUMA "G4001130, G40001204" -County and PUMA "G4001130, G40001601" -County and PUMA "G4001150, G40000100" -County and PUMA "G4001170, G40001601" -County and PUMA "G4001190, G40001501" -County and PUMA "G4001210, G40000300" -County and PUMA "G4001230, G40000701" -County and PUMA "G4001230, G40000702" -County and PUMA "G4001250, G40001101" -County and PUMA "G4001250, G40001102" -County and PUMA "G4001270, G40000300" -County and PUMA "G4001290, G40000400" -County and PUMA "G4001310, G40000100" -County and PUMA "G4001310, G40001301" -County and PUMA "G4001330, G40001501" -County and PUMA "G4001350, G40000200" -County and PUMA "G4001370, G40000602" -County and PUMA "G4001390, G40000500" -County and PUMA "G4001410, G40000602" -County and PUMA "G4001430, G40001201" -County and PUMA "G4001430, G40001202" -County and PUMA "G4001430, G40001203" -County and PUMA "G4001430, G40001204" -County and PUMA "G4001450, G40001301" -County and PUMA "G4001450, G40001302" -County and PUMA "G4001470, G40001601" -County and PUMA "G4001490, G40000400" -County and PUMA "G4001510, G40000500" -County and PUMA "G4001530, G40000500" -County and PUMA "G4100010, G41000100" -County and PUMA "G4100030, G41000600" -County and PUMA "G4100050, G41001317" -County and PUMA "G4100050, G41001318" -County and PUMA "G4100050, G41001319" -County and PUMA "G4100070, G41000500" -County and PUMA "G4100090, G41000500" -County and PUMA "G4100110, G41000800" -County and PUMA "G4100130, G41000200" -County and PUMA "G4100150, G41000800" -County and PUMA "G4100170, G41000400" -County and PUMA "G4100190, G41001000" -County and PUMA "G4100210, G41000200" -County and PUMA "G4100230, G41000200" -County and PUMA "G4100250, G41000300" -County and PUMA "G4100270, G41000200" -County and PUMA "G4100290, G41000901" -County and PUMA "G4100290, G41000902" -County and PUMA "G4100310, G41000200" -County and PUMA "G4100330, G41000800" -County and PUMA "G4100350, G41000300" -County and PUMA "G4100370, G41000300" -County and PUMA "G4100390, G41000703" -County and PUMA "G4100390, G41000704" -County and PUMA "G4100390, G41000705" -County and PUMA "G4100410, G41000500" -County and PUMA "G4100430, G41000600" -County and PUMA "G4100450, G41000300" -County and PUMA "G4100470, G41001103" -County and PUMA "G4100470, G41001104" -County and PUMA "G4100470, G41001105" -County and PUMA "G4100490, G41000200" -County and PUMA "G4100510, G41001301" -County and PUMA "G4100510, G41001302" -County and PUMA "G4100510, G41001303" -County and PUMA "G4100510, G41001305" -County and PUMA "G4100510, G41001314" -County and PUMA "G4100510, G41001316" -County and PUMA "G4100530, G41001200" -County and PUMA "G4100550, G41000200" -County and PUMA "G4100570, G41000500" -County and PUMA "G4100590, G41000100" -County and PUMA "G4100610, G41000100" -County and PUMA "G4100630, G41000100" -County and PUMA "G4100650, G41000200" -County and PUMA "G4100670, G41001320" -County and PUMA "G4100670, G41001321" -County and PUMA "G4100670, G41001322" -County and PUMA "G4100670, G41001323" -County and PUMA "G4100670, G41001324" -County and PUMA "G4100690, G41000200" -County and PUMA "G4100710, G41001200" -County and PUMA "G4200010, G42003701" -County and PUMA "G4200030, G42001701" -County and PUMA "G4200030, G42001702" -County and PUMA "G4200030, G42001801" -County and PUMA "G4200030, G42001802" -County and PUMA "G4200030, G42001803" -County and PUMA "G4200030, G42001804" -County and PUMA "G4200030, G42001805" -County and PUMA "G4200030, G42001806" -County and PUMA "G4200030, G42001807" -County and PUMA "G4200050, G42001900" -County and PUMA "G4200070, G42001501" -County and PUMA "G4200070, G42001502" -County and PUMA "G4200090, G42003800" -County and PUMA "G4200110, G42002701" -County and PUMA "G4200110, G42002702" -County and PUMA "G4200110, G42002703" -County and PUMA "G4200130, G42002200" -County and PUMA "G4200150, G42000400" -County and PUMA "G4200170, G42003001" -County and PUMA "G4200170, G42003002" -County and PUMA "G4200170, G42003003" -County and PUMA "G4200170, G42003004" -County and PUMA "G4200190, G42001600" -County and PUMA "G4200210, G42002100" -County and PUMA "G4200230, G42000300" -County and PUMA "G4200250, G42002801" -County and PUMA "G4200270, G42001200" -County and PUMA "G4200290, G42003401" -County and PUMA "G4200290, G42003402" -County and PUMA "G4200290, G42003403" -County and PUMA "G4200290, G42003404" -County and PUMA "G4200310, G42001300" -County and PUMA "G4200330, G42000300" -County and PUMA "G4200350, G42000900" -County and PUMA "G4200370, G42000803" -County and PUMA "G4200390, G42000200" -County and PUMA "G4200410, G42002301" -County and PUMA "G4200410, G42002302" -County and PUMA "G4200430, G42002401" -County and PUMA "G4200430, G42002402" -County and PUMA "G4200450, G42003301" -County and PUMA "G4200450, G42003302" -County and PUMA "G4200450, G42003303" -County and PUMA "G4200450, G42003304" -County and PUMA "G4200470, G42000300" -County and PUMA "G4200490, G42000101" -County and PUMA "G4200490, G42000102" -County and PUMA "G4200510, G42003900" -County and PUMA "G4200530, G42001300" -County and PUMA "G4200550, G42003701" -County and PUMA "G4200550, G42003702" -County and PUMA "G4200570, G42003800" -County and PUMA "G4200590, G42004002" -County and PUMA "G4200610, G42002200" -County and PUMA "G4200630, G42001900" -County and PUMA "G4200650, G42001300" -County and PUMA "G4200670, G42001100" -County and PUMA "G4200690, G42000701" -County and PUMA "G4200690, G42000702" -County and PUMA "G4200710, G42003501" -County and PUMA "G4200710, G42003502" -County and PUMA "G4200710, G42003503" -County and PUMA "G4200710, G42003504" -County and PUMA "G4200730, G42001501" -County and PUMA "G4200750, G42002500" -County and PUMA "G4200770, G42002801" -County and PUMA "G4200770, G42002802" -County and PUMA "G4200770, G42002803" -County and PUMA "G4200770, G42002901" -County and PUMA "G4200790, G42000801" -County and PUMA "G4200790, G42000802" -County and PUMA "G4200790, G42000803" -County and PUMA "G4200810, G42000900" -County and PUMA "G4200830, G42000300" -County and PUMA "G4200850, G42001400" -County and PUMA "G4200870, G42001100" -County and PUMA "G4200890, G42000600" -County and PUMA "G4200910, G42003101" -County and PUMA "G4200910, G42003102" -County and PUMA "G4200910, G42003103" -County and PUMA "G4200910, G42003104" -County and PUMA "G4200910, G42003105" -County and PUMA "G4200910, G42003106" -County and PUMA "G4200930, G42001000" -County and PUMA "G4200950, G42002901" -County and PUMA "G4200950, G42002902" -County and PUMA "G4200970, G42001000" -County and PUMA "G4200990, G42002301" -County and PUMA "G4201010, G42003201" -County and PUMA "G4201010, G42003202" -County and PUMA "G4201010, G42003203" -County and PUMA "G4201010, G42003204" -County and PUMA "G4201010, G42003205" -County and PUMA "G4201010, G42003206" -County and PUMA "G4201010, G42003207" -County and PUMA "G4201010, G42003208" -County and PUMA "G4201010, G42003209" -County and PUMA "G4201010, G42003210" -County and PUMA "G4201010, G42003211" -County and PUMA "G4201030, G42000500" -County and PUMA "G4201050, G42000300" -County and PUMA "G4201070, G42002600" -County and PUMA "G4201090, G42001100" -County and PUMA "G4201110, G42003800" -County and PUMA "G4201130, G42000400" -County and PUMA "G4201150, G42000500" -County and PUMA "G4201170, G42000400" -County and PUMA "G4201190, G42001100" -County and PUMA "G4201210, G42001300" -County and PUMA "G4201230, G42000200" -County and PUMA "G4201250, G42004001" -County and PUMA "G4201250, G42004002" -County and PUMA "G4201270, G42000500" -County and PUMA "G4201290, G42002001" -County and PUMA "G4201290, G42002002" -County and PUMA "G4201290, G42002003" -County and PUMA "G4201310, G42000702" -County and PUMA "G4201330, G42003601" -County and PUMA "G4201330, G42003602" -County and PUMA "G4201330, G42003603" -County and PUMA "G4400010, G44000300" -County and PUMA "G4400030, G44000201" -County and PUMA "G4400050, G44000300" -County and PUMA "G4400070, G44000101" -County and PUMA "G4400070, G44000102" -County and PUMA "G4400070, G44000103" -County and PUMA "G4400070, G44000104" -County and PUMA "G4400090, G44000400" -County and PUMA "G4500010, G45001600" -County and PUMA "G4500030, G45001500" -County and PUMA "G4500050, G45001300" -County and PUMA "G4500070, G45000200" -County and PUMA "G4500090, G45001300" -County and PUMA "G4500110, G45001300" -County and PUMA "G4500130, G45001400" -County and PUMA "G4500150, G45001201" -County and PUMA "G4500150, G45001202" -County and PUMA "G4500150, G45001203" -County and PUMA "G4500150, G45001204" -County and PUMA "G4500170, G45000605" -County and PUMA "G4500190, G45001201" -County and PUMA "G4500190, G45001202" -County and PUMA "G4500190, G45001203" -County and PUMA "G4500190, G45001204" -County and PUMA "G4500210, G45000400" -County and PUMA "G4500230, G45000400" -County and PUMA "G4500250, G45000700" -County and PUMA "G4500270, G45000800" -County and PUMA "G4500290, G45001300" -County and PUMA "G4500310, G45000900" -County and PUMA "G4500330, G45001000" -County and PUMA "G4500350, G45001201" -County and PUMA "G4500350, G45001204" -County and PUMA "G4500370, G45001500" -County and PUMA "G4500390, G45000603" -County and PUMA "G4500410, G45000900" -County and PUMA "G4500430, G45001000" -County and PUMA "G4500450, G45000102" -County and PUMA "G4500450, G45000103" -County and PUMA "G4500450, G45000104" -County and PUMA "G4500450, G45000105" -County and PUMA "G4500470, G45001600" -County and PUMA "G4500490, G45001300" -County and PUMA "G4500510, G45001101" -County and PUMA "G4500510, G45001102" -County and PUMA "G4500530, G45001400" -County and PUMA "G4500550, G45000605" -County and PUMA "G4500570, G45000700" -County and PUMA "G4500590, G45000105" -County and PUMA "G4500610, G45000800" -County and PUMA "G4500630, G45000601" -County and PUMA "G4500630, G45000602" -County and PUMA "G4500650, G45001600" -County and PUMA "G4500670, G45001000" -County and PUMA "G4500690, G45000700" -County and PUMA "G4500710, G45000400" -County and PUMA "G4500730, G45000101" -County and PUMA "G4500750, G45001300" -County and PUMA "G4500770, G45000101" -County and PUMA "G4500790, G45000603" -County and PUMA "G4500790, G45000604" -County and PUMA "G4500790, G45000605" -County and PUMA "G4500810, G45000601" -County and PUMA "G4500830, G45000301" -County and PUMA "G4500830, G45000302" -County and PUMA "G4500850, G45000800" -County and PUMA "G4500870, G45000400" -County and PUMA "G4500890, G45000800" -County and PUMA "G4500910, G45000501" -County and PUMA "G4500910, G45000502" -County and PUMA "G4600030, G46000400" -County and PUMA "G4600050, G46000400" -County and PUMA "G4600070, G46000200" -County and PUMA "G4600090, G46000400" -County and PUMA "G4600110, G46000400" -County and PUMA "G4600130, G46000300" -County and PUMA "G4600150, G46000400" -County and PUMA "G4600170, G46000200" -County and PUMA "G4600190, G46000100" -County and PUMA "G4600210, G46000300" -County and PUMA "G4600230, G46000200" -County and PUMA "G4600250, G46000300" -County and PUMA "G4600270, G46000500" -County and PUMA "G4600290, G46000300" -County and PUMA "G4600310, G46000200" -County and PUMA "G4600330, G46000100" -County and PUMA "G4600350, G46000400" -County and PUMA "G4600370, G46000300" -County and PUMA "G4600390, G46000300" -County and PUMA "G4600410, G46000200" -County and PUMA "G4600430, G46000400" -County and PUMA "G4600450, G46000300" -County and PUMA "G4600470, G46000200" -County and PUMA "G4600490, G46000300" -County and PUMA "G4600510, G46000300" -County and PUMA "G4600530, G46000200" -County and PUMA "G4600550, G46000200" -County and PUMA "G4600570, G46000300" -County and PUMA "G4600590, G46000400" -County and PUMA "G4600610, G46000400" -County and PUMA "G4600630, G46000100" -County and PUMA "G4600650, G46000200" -County and PUMA "G4600670, G46000400" -County and PUMA "G4600690, G46000200" -County and PUMA "G4600710, G46000200" -County and PUMA "G4600730, G46000400" -County and PUMA "G4600750, G46000200" -County and PUMA "G4600770, G46000400" -County and PUMA "G4600790, G46000400" -County and PUMA "G4600810, G46000100" -County and PUMA "G4600830, G46000500" -County and PUMA "G4600830, G46000600" -County and PUMA "G4600850, G46000200" -County and PUMA "G4600870, G46000500" -County and PUMA "G4600890, G46000300" -County and PUMA "G4600910, G46000300" -County and PUMA "G4600930, G46000100" -County and PUMA "G4600950, G46000200" -County and PUMA "G4600970, G46000400" -County and PUMA "G4600990, G46000500" -County and PUMA "G4600990, G46000600" -County and PUMA "G4601010, G46000400" -County and PUMA "G4601020, G46000200" -County and PUMA "G4601030, G46000100" -County and PUMA "G4601050, G46000100" -County and PUMA "G4601070, G46000300" -County and PUMA "G4601090, G46000300" -County and PUMA "G4601110, G46000400" -County and PUMA "G4601150, G46000300" -County and PUMA "G4601170, G46000200" -County and PUMA "G4601190, G46000200" -County and PUMA "G4601210, G46000200" -County and PUMA "G4601230, G46000200" -County and PUMA "G4601250, G46000500" -County and PUMA "G4601270, G46000500" -County and PUMA "G4601290, G46000300" -County and PUMA "G4601350, G46000500" -County and PUMA "G4601370, G46000200" -County and PUMA "G4700010, G47001601" -County and PUMA "G4700030, G47002700" -County and PUMA "G4700050, G47000200" -County and PUMA "G4700070, G47002100" -County and PUMA "G4700090, G47001700" -County and PUMA "G4700110, G47001900" -County and PUMA "G4700130, G47000900" -County and PUMA "G4700150, G47000600" -County and PUMA "G4700170, G47000200" -County and PUMA "G4700190, G47001200" -County and PUMA "G4700210, G47000400" -County and PUMA "G4700230, G47003000" -County and PUMA "G4700250, G47000900" -County and PUMA "G4700270, G47000700" -County and PUMA "G4700290, G47001400" -County and PUMA "G4700310, G47002200" -County and PUMA "G4700330, G47000100" -County and PUMA "G4700350, G47000800" -County and PUMA "G4700370, G47002501" -County and PUMA "G4700370, G47002502" -County and PUMA "G4700370, G47002503" -County and PUMA "G4700370, G47002504" -County and PUMA "G4700370, G47002505" -County and PUMA "G4700390, G47002900" -County and PUMA "G4700410, G47000600" -County and PUMA "G4700430, G47000400" -County and PUMA "G4700450, G47000100" -County and PUMA "G4700470, G47003100" -County and PUMA "G4700490, G47000800" -County and PUMA "G4700510, G47002200" -County and PUMA "G4700530, G47000100" -County and PUMA "G4700550, G47002800" -County and PUMA "G4700570, G47001400" -County and PUMA "G4700590, G47001200" -County and PUMA "G4700610, G47002100" -County and PUMA "G4700630, G47001400" -County and PUMA "G4700650, G47002001" -County and PUMA "G4700650, G47002002" -County and PUMA "G4700650, G47002003" -County and PUMA "G4700670, G47000900" -County and PUMA "G4700690, G47002900" -County and PUMA "G4700710, G47002900" -County and PUMA "G4700730, G47001000" -County and PUMA "G4700750, G47002900" -County and PUMA "G4700770, G47002900" -County and PUMA "G4700790, G47000200" -County and PUMA "G4700810, G47000400" -County and PUMA "G4700830, G47000200" -County and PUMA "G4700850, G47000200" -County and PUMA "G4700870, G47000700" -County and PUMA "G4700890, G47001500" -County and PUMA "G4700910, G47001200" -County and PUMA "G4700930, G47001601" -County and PUMA "G4700930, G47001602" -County and PUMA "G4700930, G47001603" -County and PUMA "G4700930, G47001604" -County and PUMA "G4700950, G47000100" -County and PUMA "G4700970, G47003100" -County and PUMA "G4700990, G47002800" -County and PUMA "G4701010, G47002800" -County and PUMA "G4701030, G47002200" -County and PUMA "G4701050, G47001800" -County and PUMA "G4701070, G47001900" -County and PUMA "G4701090, G47002900" -County and PUMA "G4701110, G47000600" -County and PUMA "G4701130, G47003000" -County and PUMA "G4701150, G47002100" -County and PUMA "G4701170, G47002700" -County and PUMA "G4701190, G47002700" -County and PUMA "G4701210, G47002100" -County and PUMA "G4701230, G47001800" -County and PUMA "G4701250, G47000300" -County and PUMA "G4701270, G47002200" -County and PUMA "G4701290, G47000900" -County and PUMA "G4701310, G47000100" -County and PUMA "G4701330, G47000700" -County and PUMA "G4701350, G47002800" -County and PUMA "G4701370, G47000700" -County and PUMA "G4701390, G47001900" -County and PUMA "G4701410, G47000700" -County and PUMA "G4701430, G47002100" -County and PUMA "G4701450, G47001800" -County and PUMA "G4701470, G47000400" -County and PUMA "G4701490, G47002401" -County and PUMA "G4701490, G47002402" -County and PUMA "G4701510, G47000900" -County and PUMA "G4701530, G47002100" -County and PUMA "G4701550, G47001500" -County and PUMA "G4701570, G47003201" -County and PUMA "G4701570, G47003202" -County and PUMA "G4701570, G47003203" -County and PUMA "G4701570, G47003204" -County and PUMA "G4701570, G47003205" -County and PUMA "G4701570, G47003206" -County and PUMA "G4701570, G47003207" -County and PUMA "G4701570, G47003208" -County and PUMA "G4701590, G47000600" -County and PUMA "G4701610, G47000300" -County and PUMA "G4701630, G47001000" -County and PUMA "G4701630, G47001100" -County and PUMA "G4701650, G47000500" -County and PUMA "G4701670, G47003100" -County and PUMA "G4701690, G47000600" -County and PUMA "G4701710, G47001200" -County and PUMA "G4701730, G47001601" -County and PUMA "G4701750, G47000800" -County and PUMA "G4701770, G47000600" -County and PUMA "G4701790, G47001300" -County and PUMA "G4701810, G47002800" -County and PUMA "G4701830, G47000200" -County and PUMA "G4701850, G47000800" -County and PUMA "G4701870, G47002600" -County and PUMA "G4701890, G47002300" -County and PUMA "G4800010, G48001800" -County and PUMA "G4800030, G48003200" -County and PUMA "G4800050, G48004000" -County and PUMA "G4800070, G48006500" -County and PUMA "G4800090, G48000600" -County and PUMA "G4800110, G48000100" -County and PUMA "G4800130, G48006100" -County and PUMA "G4800150, G48005000" -County and PUMA "G4800170, G48000400" -County and PUMA "G4800190, G48006100" -County and PUMA "G4800210, G48005100" -County and PUMA "G4800230, G48000600" -County and PUMA "G4800250, G48006500" -County and PUMA "G4800270, G48003501" -County and PUMA "G4800270, G48003502" -County and PUMA "G4800290, G48005901" -County and PUMA "G4800290, G48005902" -County and PUMA "G4800290, G48005903" -County and PUMA "G4800290, G48005904" -County and PUMA "G4800290, G48005905" -County and PUMA "G4800290, G48005906" -County and PUMA "G4800290, G48005907" -County and PUMA "G4800290, G48005908" -County and PUMA "G4800290, G48005909" -County and PUMA "G4800290, G48005910" -County and PUMA "G4800290, G48005911" -County and PUMA "G4800290, G48005912" -County and PUMA "G4800290, G48005913" -County and PUMA "G4800290, G48005914" -County and PUMA "G4800290, G48005915" -County and PUMA "G4800290, G48005916" -County and PUMA "G4800310, G48006000" -County and PUMA "G4800330, G48002800" -County and PUMA "G4800350, G48003700" -County and PUMA "G4800370, G48001100" -County and PUMA "G4800390, G48004801" -County and PUMA "G4800390, G48004802" -County and PUMA "G4800390, G48004803" -County and PUMA "G4800410, G48003602" -County and PUMA "G4800430, G48003200" -County and PUMA "G4800450, G48000100" -County and PUMA "G4800470, G48006900" -County and PUMA "G4800490, G48002600" -County and PUMA "G4800510, G48003601" -County and PUMA "G4800530, G48003400" -County and PUMA "G4800550, G48005100" -County and PUMA "G4800570, G48005600" -County and PUMA "G4800590, G48002600" -County and PUMA "G4800610, G48006701" -County and PUMA "G4800610, G48006702" -County and PUMA "G4800610, G48006703" -County and PUMA "G4800630, G48001300" -County and PUMA "G4800650, G48000100" -County and PUMA "G4800670, G48001100" -County and PUMA "G4800690, G48000100" -County and PUMA "G4800710, G48004400" -County and PUMA "G4800730, G48001700" -County and PUMA "G4800750, G48000100" -County and PUMA "G4800770, G48000600" -County and PUMA "G4800790, G48000400" -County and PUMA "G4800810, G48002800" -County and PUMA "G4800830, G48002600" -County and PUMA "G4800850, G48001901" -County and PUMA "G4800850, G48001902" -County and PUMA "G4800850, G48001903" -County and PUMA "G4800850, G48001904" -County and PUMA "G4800850, G48001905" -County and PUMA "G4800850, G48001906" -County and PUMA "G4800850, G48001907" -County and PUMA "G4800870, G48000100" -County and PUMA "G4800890, G48005000" -County and PUMA "G4800910, G48005800" -County and PUMA "G4800930, G48002600" -County and PUMA "G4800950, G48002800" -County and PUMA "G4800970, G48000800" -County and PUMA "G4800990, G48003400" -County and PUMA "G4801010, G48000600" -County and PUMA "G4801030, G48003200" -County and PUMA "G4801050, G48002800" -County and PUMA "G4801070, G48000400" -County and PUMA "G4801090, G48003200" -County and PUMA "G4801110, G48000100" -County and PUMA "G4801130, G48002301" -County and PUMA "G4801130, G48002302" -County and PUMA "G4801130, G48002303" -County and PUMA "G4801130, G48002304" -County and PUMA "G4801130, G48002305" -County and PUMA "G4801130, G48002306" -County and PUMA "G4801130, G48002307" -County and PUMA "G4801130, G48002308" -County and PUMA "G4801130, G48002309" -County and PUMA "G4801130, G48002310" -County and PUMA "G4801130, G48002311" -County and PUMA "G4801130, G48002312" -County and PUMA "G4801130, G48002313" -County and PUMA "G4801130, G48002314" -County and PUMA "G4801130, G48002315" -County and PUMA "G4801130, G48002316" -County and PUMA "G4801130, G48002317" -County and PUMA "G4801130, G48002318" -County and PUMA "G4801130, G48002319" -County and PUMA "G4801130, G48002320" -County and PUMA "G4801130, G48002321" -County and PUMA "G4801130, G48002322" -County and PUMA "G4801150, G48002800" -County and PUMA "G4801170, G48000100" -County and PUMA "G4801190, G48001000" -County and PUMA "G4801210, G48002001" -County and PUMA "G4801210, G48002002" -County and PUMA "G4801210, G48002003" -County and PUMA "G4801210, G48002004" -County and PUMA "G4801210, G48002005" -County and PUMA "G4801210, G48002006" -County and PUMA "G4801230, G48005500" -County and PUMA "G4801250, G48000400" -County and PUMA "G4801270, G48006200" -County and PUMA "G4801290, G48000100" -County and PUMA "G4801310, G48006400" -County and PUMA "G4801330, G48002600" -County and PUMA "G4801350, G48003100" -County and PUMA "G4801370, G48006200" -County and PUMA "G4801390, G48002101" -County and PUMA "G4801410, G48003301" -County and PUMA "G4801410, G48003302" -County and PUMA "G4801410, G48003303" -County and PUMA "G4801410, G48003304" -County and PUMA "G4801410, G48003305" -County and PUMA "G4801410, G48003306" -County and PUMA "G4801430, G48002200" -County and PUMA "G4801450, G48003700" -County and PUMA "G4801470, G48000800" -County and PUMA "G4801490, G48005100" -County and PUMA "G4801510, G48002600" -County and PUMA "G4801530, G48000400" -County and PUMA "G4801550, G48000600" -County and PUMA "G4801570, G48004901" -County and PUMA "G4801570, G48004902" -County and PUMA "G4801570, G48004903" -County and PUMA "G4801570, G48004904" -County and PUMA "G4801570, G48004905" -County and PUMA "G4801590, G48001000" -County and PUMA "G4801610, G48003700" -County and PUMA "G4801630, G48006100" -County and PUMA "G4801650, G48003200" -County and PUMA "G4801670, G48004701" -County and PUMA "G4801670, G48004702" -County and PUMA "G4801690, G48000400" -County and PUMA "G4801710, G48006000" -County and PUMA "G4801730, G48002800" -County and PUMA "G4801750, G48005500" -County and PUMA "G4801770, G48005500" -County and PUMA "G4801790, G48000100" -County and PUMA "G4801810, G48000800" -County and PUMA "G4801830, G48001600" -County and PUMA "G4801850, G48003601" -County and PUMA "G4801870, G48005700" -County and PUMA "G4801890, G48000400" -County and PUMA "G4801910, G48000100" -County and PUMA "G4801930, G48003400" -County and PUMA "G4801950, G48000100" -County and PUMA "G4801970, G48000600" -County and PUMA "G4801990, G48004200" -County and PUMA "G4802010, G48004601" -County and PUMA "G4802010, G48004602" -County and PUMA "G4802010, G48004603" -County and PUMA "G4802010, G48004604" -County and PUMA "G4802010, G48004605" -County and PUMA "G4802010, G48004606" -County and PUMA "G4802010, G48004607" -County and PUMA "G4802010, G48004608" -County and PUMA "G4802010, G48004609" -County and PUMA "G4802010, G48004610" -County and PUMA "G4802010, G48004611" -County and PUMA "G4802010, G48004612" -County and PUMA "G4802010, G48004613" -County and PUMA "G4802010, G48004614" -County and PUMA "G4802010, G48004615" -County and PUMA "G4802010, G48004616" -County and PUMA "G4802010, G48004617" -County and PUMA "G4802010, G48004618" -County and PUMA "G4802010, G48004619" -County and PUMA "G4802010, G48004620" -County and PUMA "G4802010, G48004621" -County and PUMA "G4802010, G48004622" -County and PUMA "G4802010, G48004623" -County and PUMA "G4802010, G48004624" -County and PUMA "G4802010, G48004625" -County and PUMA "G4802010, G48004626" -County and PUMA "G4802010, G48004627" -County and PUMA "G4802010, G48004628" -County and PUMA "G4802010, G48004629" -County and PUMA "G4802010, G48004630" -County and PUMA "G4802010, G48004631" -County and PUMA "G4802010, G48004632" -County and PUMA "G4802010, G48004633" -County and PUMA "G4802010, G48004634" -County and PUMA "G4802010, G48004635" -County and PUMA "G4802010, G48004636" -County and PUMA "G4802010, G48004637" -County and PUMA "G4802010, G48004638" -County and PUMA "G4802030, G48001200" -County and PUMA "G4802050, G48000100" -County and PUMA "G4802070, G48002600" -County and PUMA "G4802090, G48005400" -County and PUMA "G4802110, G48000100" -County and PUMA "G4802130, G48001800" -County and PUMA "G4802150, G48006801" -County and PUMA "G4802150, G48006802" -County and PUMA "G4802150, G48006803" -County and PUMA "G4802150, G48006804" -County and PUMA "G4802150, G48006805" -County and PUMA "G4802150, G48006806" -County and PUMA "G4802150, G48006807" -County and PUMA "G4802170, G48003700" -County and PUMA "G4802190, G48000400" -County and PUMA "G4802210, G48002200" -County and PUMA "G4802230, G48001000" -County and PUMA "G4802250, G48003900" -County and PUMA "G4802270, G48002800" -County and PUMA "G4802290, G48003200" -County and PUMA "G4802310, G48000900" -County and PUMA "G4802330, G48000100" -County and PUMA "G4802350, G48002800" -County and PUMA "G4802370, G48000600" -County and PUMA "G4802390, G48005500" -County and PUMA "G4802410, G48004100" -County and PUMA "G4802430, G48003200" -County and PUMA "G4802450, G48004301" -County and PUMA "G4802450, G48004302" -County and PUMA "G4802470, G48006400" -County and PUMA "G4802490, G48006900" -County and PUMA "G4802510, G48002102" -County and PUMA "G4802530, G48002600" -County and PUMA "G4802550, G48005500" -County and PUMA "G4802570, G48001400" -County and PUMA "G4802590, G48006000" -County and PUMA "G4802610, G48006900" -County and PUMA "G4802630, G48002600" -County and PUMA "G4802650, G48006000" -County and PUMA "G4802670, G48002800" -County and PUMA "G4802690, G48000400" -County and PUMA "G4802710, G48006200" -County and PUMA "G4802730, G48006900" -County and PUMA "G4802750, G48002600" -County and PUMA "G4802770, G48001000" -County and PUMA "G4802790, G48000400" -County and PUMA "G4802810, G48003400" -County and PUMA "G4802830, G48006200" -County and PUMA "G4802850, G48005500" -County and PUMA "G4802870, G48005100" -County and PUMA "G4802890, G48003601" -County and PUMA "G4802910, G48004400" -County and PUMA "G4802930, G48003700" -County and PUMA "G4802950, G48000100" -County and PUMA "G4802970, G48006400" -County and PUMA "G4802990, G48003400" -County and PUMA "G4803010, G48003200" -County and PUMA "G4803030, G48000501" -County and PUMA "G4803030, G48000502" -County and PUMA "G4803050, G48000400" -County and PUMA "G4803070, G48002800" -County and PUMA "G4803090, G48003801" -County and PUMA "G4803090, G48003802" -County and PUMA "G4803110, G48006400" -County and PUMA "G4803130, G48003601" -County and PUMA "G4803150, G48001200" -County and PUMA "G4803170, G48002800" -County and PUMA "G4803190, G48002800" -County and PUMA "G4803210, G48005000" -County and PUMA "G4803230, G48006200" -County and PUMA "G4803250, G48006100" -County and PUMA "G4803270, G48002800" -County and PUMA "G4803290, G48003000" -County and PUMA "G4803310, G48003601" -County and PUMA "G4803330, G48003400" -County and PUMA "G4803350, G48002600" -County and PUMA "G4803370, G48000600" -County and PUMA "G4803390, G48004501" -County and PUMA "G4803390, G48004502" -County and PUMA "G4803390, G48004503" -County and PUMA "G4803390, G48004504" -County and PUMA "G4803410, G48000100" -County and PUMA "G4803430, G48001000" -County and PUMA "G4803450, G48000400" -County and PUMA "G4803470, G48004000" -County and PUMA "G4803490, G48003700" -County and PUMA "G4803510, G48004100" -County and PUMA "G4803530, G48002600" -County and PUMA "G4803550, G48006601" -County and PUMA "G4803550, G48006602" -County and PUMA "G4803550, G48006603" -County and PUMA "G4803570, G48000100" -County and PUMA "G4803590, G48000100" -County and PUMA "G4803610, G48004200" -County and PUMA "G4803630, G48002200" -County and PUMA "G4803650, G48001700" -County and PUMA "G4803670, G48002400" -County and PUMA "G4803690, G48000100" -County and PUMA "G4803710, G48003200" -County and PUMA "G4803730, G48003900" -County and PUMA "G4803750, G48000200" -County and PUMA "G4803770, G48003200" -County and PUMA "G4803790, G48001300" -County and PUMA "G4803810, G48000300" -County and PUMA "G4803830, G48002800" -County and PUMA "G4803850, G48006200" -County and PUMA "G4803870, G48001000" -County and PUMA "G4803890, G48003200" -County and PUMA "G4803910, G48006500" -County and PUMA "G4803930, G48000100" -County and PUMA "G4803950, G48003601" -County and PUMA "G4803970, G48000900" -County and PUMA "G4803990, G48002600" -County and PUMA "G4804010, G48001700" -County and PUMA "G4804030, G48004100" -County and PUMA "G4804050, G48004100" -County and PUMA "G4804070, G48003900" -County and PUMA "G4804090, G48006500" -County and PUMA "G4804110, G48003400" -County and PUMA "G4804130, G48002800" -County and PUMA "G4804150, G48002600" -County and PUMA "G4804170, G48002600" -County and PUMA "G4804190, G48004100" -County and PUMA "G4804210, G48000100" -County and PUMA "G4804230, G48001501" -County and PUMA "G4804230, G48001502" -County and PUMA "G4804250, G48002200" -County and PUMA "G4804270, G48006400" -County and PUMA "G4804290, G48002600" -County and PUMA "G4804310, G48002800" -County and PUMA "G4804330, G48002600" -County and PUMA "G4804350, G48002800" -County and PUMA "G4804370, G48000100" -County and PUMA "G4804390, G48002501" -County and PUMA "G4804390, G48002502" -County and PUMA "G4804390, G48002503" -County and PUMA "G4804390, G48002504" -County and PUMA "G4804390, G48002505" -County and PUMA "G4804390, G48002506" -County and PUMA "G4804390, G48002507" -County and PUMA "G4804390, G48002508" -County and PUMA "G4804390, G48002509" -County and PUMA "G4804390, G48002510" -County and PUMA "G4804390, G48002511" -County and PUMA "G4804390, G48002512" -County and PUMA "G4804390, G48002513" -County and PUMA "G4804390, G48002514" -County and PUMA "G4804390, G48002515" -County and PUMA "G4804390, G48002516" -County and PUMA "G4804410, G48002700" -County and PUMA "G4804430, G48003200" -County and PUMA "G4804450, G48000400" -County and PUMA "G4804470, G48002600" -County and PUMA "G4804490, G48001000" -County and PUMA "G4804510, G48002900" -County and PUMA "G4804530, G48005301" -County and PUMA "G4804530, G48005302" -County and PUMA "G4804530, G48005303" -County and PUMA "G4804530, G48005304" -County and PUMA "G4804530, G48005305" -County and PUMA "G4804530, G48005306" -County and PUMA "G4804530, G48005307" -County and PUMA "G4804530, G48005308" -County and PUMA "G4804530, G48005309" -County and PUMA "G4804550, G48003900" -County and PUMA "G4804570, G48004100" -County and PUMA "G4804590, G48001200" -County and PUMA "G4804610, G48002800" -County and PUMA "G4804630, G48006200" -County and PUMA "G4804650, G48006200" -County and PUMA "G4804670, G48001300" -County and PUMA "G4804690, G48005600" -County and PUMA "G4804710, G48003900" -County and PUMA "G4804730, G48005000" -County and PUMA "G4804750, G48003200" -County and PUMA "G4804770, G48003601" -County and PUMA "G4804790, G48006301" -County and PUMA "G4804790, G48006302" -County and PUMA "G4804810, G48005000" -County and PUMA "G4804830, G48000100" -County and PUMA "G4804850, G48000700" -County and PUMA "G4804870, G48000600" -County and PUMA "G4804890, G48006900" -County and PUMA "G4804910, G48005201" -County and PUMA "G4804910, G48005202" -County and PUMA "G4804910, G48005203" -County and PUMA "G4804910, G48005204" -County and PUMA "G4804930, G48005500" -County and PUMA "G4804950, G48003200" -County and PUMA "G4804970, G48000600" -County and PUMA "G4804990, G48001300" -County and PUMA "G4805010, G48000400" -County and PUMA "G4805030, G48000600" -County and PUMA "G4805050, G48006400" -County and PUMA "G4805070, G48006200" -County and PUMA "G4900010, G49021001" -County and PUMA "G4900030, G49003001" -County and PUMA "G4900050, G49005001" -County and PUMA "G4900070, G49013001" -County and PUMA "G4900090, G49013001" -County and PUMA "G4900110, G49011001" -County and PUMA "G4900110, G49011002" -County and PUMA "G4900130, G49013001" -County and PUMA "G4900150, G49013001" -County and PUMA "G4900170, G49021001" -County and PUMA "G4900190, G49013001" -County and PUMA "G4900210, G49021001" -County and PUMA "G4900230, G49021001" -County and PUMA "G4900250, G49021001" -County and PUMA "G4900270, G49021001" -County and PUMA "G4900290, G49005001" -County and PUMA "G4900310, G49021001" -County and PUMA "G4900330, G49005001" -County and PUMA "G4900350, G49035001" -County and PUMA "G4900350, G49035002" -County and PUMA "G4900350, G49035003" -County and PUMA "G4900350, G49035004" -County and PUMA "G4900350, G49035005" -County and PUMA "G4900350, G49035006" -County and PUMA "G4900350, G49035007" -County and PUMA "G4900350, G49035008" -County and PUMA "G4900350, G49035009" -County and PUMA "G4900370, G49013001" -County and PUMA "G4900390, G49021001" -County and PUMA "G4900410, G49021001" -County and PUMA "G4900430, G49005001" -County and PUMA "G4900450, G49003001" -County and PUMA "G4900470, G49013001" -County and PUMA "G4900490, G49049001" -County and PUMA "G4900490, G49049002" -County and PUMA "G4900490, G49049003" -County and PUMA "G4900490, G49049004" -County and PUMA "G4900510, G49013001" -County and PUMA "G4900530, G49053001" -County and PUMA "G4900550, G49021001" -County and PUMA "G4900570, G49057001" -County and PUMA "G4900570, G49057002" -County and PUMA "G5000010, G50000400" -County and PUMA "G5000030, G50000400" -County and PUMA "G5000050, G50000200" -County and PUMA "G5000070, G50000100" -County and PUMA "G5000090, G50000200" -County and PUMA "G5000110, G50000100" -County and PUMA "G5000130, G50000100" -County and PUMA "G5000150, G50000200" -County and PUMA "G5000170, G50000300" -County and PUMA "G5000190, G50000200" -County and PUMA "G5000210, G50000400" -County and PUMA "G5000230, G50000200" -County and PUMA "G5000250, G50000300" -County and PUMA "G5000270, G50000300" -County and PUMA "G5100010, G51051125" -County and PUMA "G5100030, G51051089" -County and PUMA "G5100030, G51051090" -County and PUMA "G5100050, G51051045" -County and PUMA "G5100070, G51051105" -County and PUMA "G5100090, G51051095" -County and PUMA "G5100110, G51051095" -County and PUMA "G5100130, G51001301" -County and PUMA "G5100130, G51001302" -County and PUMA "G5100150, G51051080" -County and PUMA "G5100170, G51051080" -County and PUMA "G5100190, G51051095" -County and PUMA "G5100210, G51051020" -County and PUMA "G5100230, G51051045" -County and PUMA "G5100250, G51051105" -County and PUMA "G5100270, G51051010" -County and PUMA "G5100290, G51051105" -County and PUMA "G5100310, G51051096" -County and PUMA "G5100330, G51051120" -County and PUMA "G5100350, G51051020" -County and PUMA "G5100360, G51051215" -County and PUMA "G5100370, G51051105" -County and PUMA "G5100410, G51004101" -County and PUMA "G5100410, G51004102" -County and PUMA "G5100410, G51004103" -County and PUMA "G5100430, G51051084" -County and PUMA "G5100450, G51051045" -County and PUMA "G5100470, G51051087" -County and PUMA "G5100490, G51051105" -County and PUMA "G5100510, G51051010" -County and PUMA "G5100530, G51051135" -County and PUMA "G5100570, G51051125" -County and PUMA "G5100590, G51059301" -County and PUMA "G5100590, G51059302" -County and PUMA "G5100590, G51059303" -County and PUMA "G5100590, G51059304" -County and PUMA "G5100590, G51059305" -County and PUMA "G5100590, G51059306" -County and PUMA "G5100590, G51059307" -County and PUMA "G5100590, G51059308" -County and PUMA "G5100590, G51059309" -County and PUMA "G5100610, G51051087" -County and PUMA "G5100630, G51051040" -County and PUMA "G5100650, G51051089" -County and PUMA "G5100670, G51051045" -County and PUMA "G5100690, G51051084" -County and PUMA "G5100710, G51051040" -County and PUMA "G5100730, G51051125" -County and PUMA "G5100750, G51051215" -County and PUMA "G5100770, G51051020" -County and PUMA "G5100790, G51051090" -County and PUMA "G5100810, G51051135" -County and PUMA "G5100830, G51051105" -County and PUMA "G5100850, G51051215" -County and PUMA "G5100870, G51051224" -County and PUMA "G5100870, G51051225" -County and PUMA "G5100890, G51051097" -County and PUMA "G5100910, G51051080" -County and PUMA "G5100930, G51051145" -County and PUMA "G5100950, G51051206" -County and PUMA "G5100970, G51051125" -County and PUMA "G5100990, G51051120" -County and PUMA "G5101010, G51051215" -County and PUMA "G5101030, G51051125" -County and PUMA "G5101050, G51051010" -County and PUMA "G5101070, G51010701" -County and PUMA "G5101070, G51010702" -County and PUMA "G5101070, G51010703" -County and PUMA "G5101090, G51051089" -County and PUMA "G5101110, G51051105" -County and PUMA "G5101130, G51051087" -County and PUMA "G5101150, G51051125" -County and PUMA "G5101170, G51051105" -County and PUMA "G5101190, G51051125" -County and PUMA "G5101210, G51051040" -County and PUMA "G5101250, G51051089" -County and PUMA "G5101270, G51051215" -County and PUMA "G5101310, G51051125" -County and PUMA "G5101330, G51051125" -County and PUMA "G5101350, G51051105" -County and PUMA "G5101370, G51051087" -County and PUMA "G5101390, G51051085" -County and PUMA "G5101410, G51051097" -County and PUMA "G5101430, G51051097" -County and PUMA "G5101450, G51051215" -County and PUMA "G5101470, G51051105" -County and PUMA "G5101490, G51051135" -County and PUMA "G5101530, G51051244" -County and PUMA "G5101530, G51051245" -County and PUMA "G5101530, G51051246" -County and PUMA "G5101550, G51051040" -County and PUMA "G5101570, G51051087" -County and PUMA "G5101590, G51051125" -County and PUMA "G5101610, G51051044" -County and PUMA "G5101610, G51051045" -County and PUMA "G5101630, G51051080" -County and PUMA "G5101650, G51051110" -County and PUMA "G5101670, G51051010" -County and PUMA "G5101690, G51051010" -County and PUMA "G5101710, G51051085" -County and PUMA "G5101730, G51051020" -County and PUMA "G5101750, G51051145" -County and PUMA "G5101770, G51051120" -County and PUMA "G5101790, G51051115" -County and PUMA "G5101810, G51051135" -County and PUMA "G5101830, G51051135" -County and PUMA "G5101850, G51051010" -County and PUMA "G5101870, G51051085" -County and PUMA "G5101910, G51051020" -County and PUMA "G5101930, G51051125" -County and PUMA "G5101950, G51051010" -County and PUMA "G5101970, G51051020" -County and PUMA "G5101990, G51051206" -County and PUMA "G5105100, G51051255" -County and PUMA "G5105200, G51051020" -County and PUMA "G5105300, G51051080" -County and PUMA "G5105400, G51051090" -County and PUMA "G5105500, G51055001" -County and PUMA "G5105500, G51055002" -County and PUMA "G5105700, G51051135" -County and PUMA "G5105800, G51051045" -County and PUMA "G5105900, G51051097" -County and PUMA "G5105950, G51051135" -County and PUMA "G5106000, G51059303" -County and PUMA "G5106100, G51059308" -County and PUMA "G5106200, G51051145" -County and PUMA "G5106300, G51051115" -County and PUMA "G5106400, G51051020" -County and PUMA "G5106500, G51051186" -County and PUMA "G5106600, G51051110" -County and PUMA "G5106700, G51051135" -County and PUMA "G5106780, G51051080" -County and PUMA "G5106800, G51051096" -County and PUMA "G5106830, G51051245" -County and PUMA "G5106850, G51051245" -County and PUMA "G5106900, G51051097" -County and PUMA "G5107000, G51051175" -County and PUMA "G5107100, G51051154" -County and PUMA "G5107100, G51051155" -County and PUMA "G5107200, G51051010" -County and PUMA "G5107300, G51051135" -County and PUMA "G5107350, G51051206" -County and PUMA "G5107400, G51051155" -County and PUMA "G5107500, G51051040" -County and PUMA "G5107600, G51051235" -County and PUMA "G5107700, G51051044" -County and PUMA "G5107750, G51051044" -County and PUMA "G5107900, G51051080" -County and PUMA "G5108000, G51051145" -County and PUMA "G5108100, G51051164" -County and PUMA "G5108100, G51051165" -County and PUMA "G5108100, G51051167" -County and PUMA "G5108200, G51051080" -County and PUMA "G5108300, G51051206" -County and PUMA "G5108400, G51051084" -County and PUMA "G5300010, G53010600" -County and PUMA "G5300030, G53010600" -County and PUMA "G5300050, G53010701" -County and PUMA "G5300050, G53010702" -County and PUMA "G5300050, G53010703" -County and PUMA "G5300070, G53010300" -County and PUMA "G5300090, G53011900" -County and PUMA "G5300110, G53011101" -County and PUMA "G5300110, G53011102" -County and PUMA "G5300110, G53011103" -County and PUMA "G5300110, G53011104" -County and PUMA "G5300130, G53010600" -County and PUMA "G5300150, G53011200" -County and PUMA "G5300170, G53010300" -County and PUMA "G5300190, G53010400" -County and PUMA "G5300210, G53010701" -County and PUMA "G5300210, G53010703" -County and PUMA "G5300230, G53010600" -County and PUMA "G5300250, G53010800" -County and PUMA "G5300270, G53011300" -County and PUMA "G5300290, G53010200" -County and PUMA "G5300310, G53011900" -County and PUMA "G5300330, G53011601" -County and PUMA "G5300330, G53011602" -County and PUMA "G5300330, G53011603" -County and PUMA "G5300330, G53011604" -County and PUMA "G5300330, G53011605" -County and PUMA "G5300330, G53011606" -County and PUMA "G5300330, G53011607" -County and PUMA "G5300330, G53011608" -County and PUMA "G5300330, G53011609" -County and PUMA "G5300330, G53011610" -County and PUMA "G5300330, G53011611" -County and PUMA "G5300330, G53011612" -County and PUMA "G5300330, G53011613" -County and PUMA "G5300330, G53011614" -County and PUMA "G5300330, G53011615" -County and PUMA "G5300330, G53011616" -County and PUMA "G5300350, G53011801" -County and PUMA "G5300350, G53011802" -County and PUMA "G5300370, G53010800" -County and PUMA "G5300390, G53011000" -County and PUMA "G5300410, G53011000" -County and PUMA "G5300430, G53010600" -County and PUMA "G5300450, G53011300" -County and PUMA "G5300470, G53010400" -County and PUMA "G5300490, G53011200" -County and PUMA "G5300510, G53010400" -County and PUMA "G5300530, G53011501" -County and PUMA "G5300530, G53011502" -County and PUMA "G5300530, G53011503" -County and PUMA "G5300530, G53011504" -County and PUMA "G5300530, G53011505" -County and PUMA "G5300530, G53011506" -County and PUMA "G5300530, G53011507" -County and PUMA "G5300550, G53010200" -County and PUMA "G5300570, G53010200" -County and PUMA "G5300590, G53011000" -County and PUMA "G5300610, G53011701" -County and PUMA "G5300610, G53011702" -County and PUMA "G5300610, G53011703" -County and PUMA "G5300610, G53011704" -County and PUMA "G5300610, G53011705" -County and PUMA "G5300610, G53011706" -County and PUMA "G5300630, G53010501" -County and PUMA "G5300630, G53010502" -County and PUMA "G5300630, G53010503" -County and PUMA "G5300630, G53010504" -County and PUMA "G5300650, G53010400" -County and PUMA "G5300670, G53011401" -County and PUMA "G5300670, G53011402" -County and PUMA "G5300690, G53011200" -County and PUMA "G5300710, G53010703" -County and PUMA "G5300730, G53010100" -County and PUMA "G5300750, G53010600" -County and PUMA "G5300770, G53010901" -County and PUMA "G5300770, G53010902" -County and PUMA "G5400010, G54000500" -County and PUMA "G5400030, G54000400" -County and PUMA "G5400050, G54000900" -County and PUMA "G5400070, G54000600" -County and PUMA "G5400090, G54000100" -County and PUMA "G5400110, G54000800" -County and PUMA "G5400130, G54000600" -County and PUMA "G5400150, G54001000" -County and PUMA "G5400170, G54000200" -County and PUMA "G5400190, G54001200" -County and PUMA "G5400210, G54000600" -County and PUMA "G5400230, G54000500" -County and PUMA "G5400250, G54001100" -County and PUMA "G5400270, G54000400" -County and PUMA "G5400290, G54000100" -County and PUMA "G5400310, G54000500" -County and PUMA "G5400330, G54000200" -County and PUMA "G5400350, G54000600" -County and PUMA "G5400370, G54000400" -County and PUMA "G5400390, G54001000" -County and PUMA "G5400410, G54000500" -County and PUMA "G5400430, G54000900" -County and PUMA "G5400450, G54001300" -County and PUMA "G5400470, G54001300" -County and PUMA "G5400490, G54000200" -County and PUMA "G5400510, G54000100" -County and PUMA "G5400530, G54000800" -County and PUMA "G5400550, G54001200" -County and PUMA "G5400570, G54000400" -County and PUMA "G5400590, G54001300" -County and PUMA "G5400610, G54000300" -County and PUMA "G5400630, G54001100" -County and PUMA "G5400650, G54000400" -County and PUMA "G5400670, G54001100" -County and PUMA "G5400690, G54000100" -County and PUMA "G5400710, G54000500" -County and PUMA "G5400730, G54000700" -County and PUMA "G5400750, G54001100" -County and PUMA "G5400770, G54000300" -County and PUMA "G5400790, G54000900" -County and PUMA "G5400810, G54001200" -County and PUMA "G5400830, G54000500" -County and PUMA "G5400850, G54000600" -County and PUMA "G5400870, G54000600" -County and PUMA "G5400890, G54001100" -County and PUMA "G5400910, G54000200" -County and PUMA "G5400930, G54000500" -County and PUMA "G5400950, G54000600" -County and PUMA "G5400970, G54000500" -County and PUMA "G5400990, G54000800" -County and PUMA "G5401010, G54001100" -County and PUMA "G5401030, G54000600" -County and PUMA "G5401050, G54000700" -County and PUMA "G5401070, G54000700" -County and PUMA "G5401090, G54001300" -County and PUMA "G5500010, G55001601" -County and PUMA "G5500030, G55000100" -County and PUMA "G5500050, G55055101" -County and PUMA "G5500070, G55000100" -County and PUMA "G5500090, G55000200" -County and PUMA "G5500090, G55000300" -County and PUMA "G5500110, G55000700" -County and PUMA "G5500130, G55000100" -County and PUMA "G5500150, G55001401" -County and PUMA "G5500170, G55055101" -County and PUMA "G5500170, G55055103" -County and PUMA "G5500190, G55055101" -County and PUMA "G5500210, G55001000" -County and PUMA "G5500230, G55000700" -County and PUMA "G5500250, G55000101" -County and PUMA "G5500250, G55000102" -County and PUMA "G5500250, G55000103" -County and PUMA "G5500270, G55001001" -County and PUMA "G5500290, G55001300" -County and PUMA "G5500310, G55000100" -County and PUMA "G5500330, G55055102" -County and PUMA "G5500350, G55055103" -County and PUMA "G5500370, G55001300" -County and PUMA "G5500390, G55001401" -County and PUMA "G5500410, G55000600" -County and PUMA "G5500430, G55000800" -County and PUMA "G5500450, G55000800" -County and PUMA "G5500470, G55001400" -County and PUMA "G5500490, G55000800" -County and PUMA "G5500510, G55000100" -County and PUMA "G5500530, G55000700" -County and PUMA "G5500550, G55001001" -County and PUMA "G5500570, G55001601" -County and PUMA "G5500590, G55010000" -County and PUMA "G5500610, G55001301" -County and PUMA "G5500630, G55000900" -County and PUMA "G5500650, G55000800" -County and PUMA "G5500670, G55000600" -County and PUMA "G5500690, G55000600" -County and PUMA "G5500710, G55001301" -County and PUMA "G5500730, G55001600" -County and PUMA "G5500750, G55001300" -County and PUMA "G5500770, G55001400" -County and PUMA "G5500780, G55001400" -County and PUMA "G5500790, G55040101" -County and PUMA "G5500790, G55040301" -County and PUMA "G5500790, G55040701" -County and PUMA "G5500790, G55041001" -County and PUMA "G5500790, G55041002" -County and PUMA "G5500790, G55041003" -County and PUMA "G5500790, G55041004" -County and PUMA "G5500790, G55041005" -County and PUMA "G5500810, G55000700" -County and PUMA "G5500830, G55001300" -County and PUMA "G5500850, G55000600" -County and PUMA "G5500870, G55001500" -County and PUMA "G5500890, G55020000" -County and PUMA "G5500910, G55000700" -County and PUMA "G5500930, G55000700" -County and PUMA "G5500950, G55055101" -County and PUMA "G5500970, G55001601" -County and PUMA "G5500990, G55000100" -County and PUMA "G5501010, G55030000" -County and PUMA "G5501030, G55000800" -County and PUMA "G5501050, G55002400" -County and PUMA "G5501070, G55000100" -County and PUMA "G5501090, G55055102" -County and PUMA "G5501110, G55001000" -County and PUMA "G5501130, G55000100" -County and PUMA "G5501150, G55001400" -County and PUMA "G5501170, G55002500" -County and PUMA "G5501190, G55000100" -County and PUMA "G5501210, G55000700" -County and PUMA "G5501230, G55000700" -County and PUMA "G5501250, G55000600" -County and PUMA "G5501270, G55050000" -County and PUMA "G5501290, G55000100" -County and PUMA "G5501310, G55020000" -County and PUMA "G5501330, G55070101" -County and PUMA "G5501330, G55070201" -County and PUMA "G5501330, G55070301" -County and PUMA "G5501350, G55001400" -County and PUMA "G5501370, G55001400" -County and PUMA "G5501390, G55001501" -County and PUMA "G5501410, G55001601" -County and PUMA "G5600010, G56000300" -County and PUMA "G5600030, G56000100" -County and PUMA "G5600050, G56000200" -County and PUMA "G5600070, G56000400" -County and PUMA "G5600090, G56000400" -County and PUMA "G5600110, G56000200" -County and PUMA "G5600130, G56000500" -County and PUMA "G5600150, G56000200" -County and PUMA "G5600170, G56000500" -County and PUMA "G5600190, G56000200" -County and PUMA "G5600210, G56000300" -County and PUMA "G5600230, G56000100" -County and PUMA "G5600250, G56000400" -County and PUMA "G5600270, G56000200" -County and PUMA "G5600290, G56000100" -County and PUMA "G5600310, G56000200" -County and PUMA "G5600330, G56000100" -County and PUMA "G5600350, G56000500" -County and PUMA "G5600370, G56000500" -County and PUMA "G5600390, G56000100" -County and PUMA "G5600410, G56000500" -County and PUMA "G5600430, G56000200" -County and PUMA "G5600450, G56000200" -County and PUMA "G7200010, G72000401" -County and PUMA "G7200030, G72000101" -County and PUMA "G7200050, G72000102" -County and PUMA "G7200070, G72000602" -County and PUMA "G7200090, G72000602" -County and PUMA "G7200110, G72000101" -County and PUMA "G7200130, G72000301" -County and PUMA "G7200150, G72000701" -County and PUMA "G7200170, G72000301" -County and PUMA "G7200190, G72000601" -County and PUMA "G7200210, G72000801" -County and PUMA "G7200210, G72000802" -County and PUMA "G7200230, G72000201" -County and PUMA "G7200250, G72001001" -County and PUMA "G7200270, G72000302" -County and PUMA "G7200290, G72000902" -County and PUMA "G7200310, G72000901" -County and PUMA "G7200310, G72000902" -County and PUMA "G7200330, G72000803" -County and PUMA "G7200350, G72000602" -County and PUMA "G7200370, G72001101" -County and PUMA "G7200390, G72000501" -County and PUMA "G7200410, G72000602" -County and PUMA "G7200430, G72000403" -County and PUMA "G7200450, G72000601" -County and PUMA "G7200470, G72000601" -County and PUMA "G7200490, G72001101" -County and PUMA "G7200510, G72000502" -County and PUMA "G7200530, G72001101" -County and PUMA "G7200540, G72000301" -County and PUMA "G7200550, G72000401" -County and PUMA "G7200570, G72000701" -County and PUMA "G7200590, G72000401" -County and PUMA "G7200610, G72000803" -County and PUMA "G7200630, G72001002" -County and PUMA "G7200650, G72000302" -County and PUMA "G7200670, G72000202" -County and PUMA "G7200690, G72001102" -County and PUMA "G7200710, G72000102" -County and PUMA "G7200730, G72000402" -County and PUMA "G7200750, G72000403" -County and PUMA "G7200770, G72001002" -County and PUMA "G7200790, G72000201" -County and PUMA "G7200810, G72000302" -County and PUMA "G7200830, G72000202" -County and PUMA "G7200850, G72001002" -County and PUMA "G7200870, G72000902" -County and PUMA "G7200890, G72001101" -County and PUMA "G7200910, G72000501" -County and PUMA "G7200930, G72000202" -County and PUMA "G7200950, G72000701" -County and PUMA "G7200970, G72000202" -County and PUMA "G7200990, G72000101" -County and PUMA "G7201010, G72000501" -County and PUMA "G7201030, G72001102" -County and PUMA "G7201050, G72000601" -County and PUMA "G7201070, G72000601" -County and PUMA "G7201090, G72000701" -County and PUMA "G7201110, G72000401" -County and PUMA "G7201130, G72000402" -County and PUMA "G7201150, G72000102" -County and PUMA "G7201170, G72000101" -County and PUMA "G7201190, G72001101" -County and PUMA "G7201210, G72000201" -County and PUMA "G7201230, G72000701" -County and PUMA "G7201250, G72000201" -County and PUMA "G7201270, G72000804" -County and PUMA "G7201270, G72000805" -County and PUMA "G7201270, G72000806" -County and PUMA "G7201290, G72001002" -County and PUMA "G7201310, G72000101" -County and PUMA "G7201330, G72000403" -County and PUMA "G7201350, G72000503" -County and PUMA "G7201370, G72000502" -County and PUMA "G7201390, G72000902" -County and PUMA "G7201410, G72000302" -County and PUMA "G7201430, G72000503" -County and PUMA "G7201450, G72000501" -County and PUMA "G7201470, G72001101" -County and PUMA "G7201490, G72000403" -County and PUMA "G7201510, G72001102" -County and PUMA "G7201530, G72000401" -Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 -Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 -Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 -Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 -Dishwasher Void -Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 -Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 -Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 -Door Area 20 ft^2 ResStockArguments door_area=20 -Door Area 30 ft^2 ResStockArguments door_area=30 -Door Area 40 ft^2 ResStockArguments door_area=40 -Doors Fiberglass ResStockArguments door_rvalue=5 -Doors Steel ResStockArguments door_rvalue=5 -Doors Wood ResStockArguments door_rvalue=2.1 -Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto -Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 -Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto -Eaves 1 ft ResStockArguments geometry_eaves_depth=1 -Eaves 2 ft ResStockArguments geometry_eaves_depth=2 -Eaves 3 ft ResStockArguments geometry_eaves_depth=3 -Eaves None ResStockArguments geometry_eaves_depth=0 -Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 -Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 -Energystar Climate Zone 2023 North-Central -Energystar Climate Zone 2023 Northern -Energystar Climate Zone 2023 South-Central -Energystar Climate Zone 2023 Southern -Energystar Climate Zone 2023 Void -Federal Poverty Level 0-100% -Federal Poverty Level 100-150% -Federal Poverty Level 150-200% -Federal Poverty Level 200-300% -Federal Poverty Level 300-400% -Federal Poverty Level 400%+ -Federal Poverty Level Not Available -Generation And Emissions Assessment Region AZNMc -Generation And Emissions Assessment Region CAMXc -Generation And Emissions Assessment Region ERCTc -Generation And Emissions Assessment Region FRCCc -Generation And Emissions Assessment Region MROEc -Generation And Emissions Assessment Region MROWc -Generation And Emissions Assessment Region NEWEc -Generation And Emissions Assessment Region NWPPc -Generation And Emissions Assessment Region NYSTc -Generation And Emissions Assessment Region None -Generation And Emissions Assessment Region RFCEc -Generation And Emissions Assessment Region RFCMc -Generation And Emissions Assessment Region RFCWc -Generation And Emissions Assessment Region RMPAc -Generation And Emissions Assessment Region SPNOc -Generation And Emissions Assessment Region SPSOc -Generation And Emissions Assessment Region SRMVc -Generation And Emissions Assessment Region SRMWc -Generation And Emissions Assessment Region SRSOc -Generation And Emissions Assessment Region SRTVc -Generation And Emissions Assessment Region SRVCc -Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 -Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location MF None -Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None -Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left -Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle -Geometry Building Horizontal Location SFA None -Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right -Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom -Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle -Geometry Building Level MF None -Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top -Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 -Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 -Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 -Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 -Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 -Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 -Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 -Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 -Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 -Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 -Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 -Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 -Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 -Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 -Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units MF None -Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 -Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 -Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 -Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 -Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 -Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 -Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 -Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 -Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 -Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 -Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 -Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 -Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 -Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 -Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 -Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 -Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 -Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 -Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 -Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 -Geometry Building Number Units SFA None -Geometry Building Type ACS 10 to 19 Unit -Geometry Building Type ACS 2 Unit -Geometry Building Type ACS 20 to 49 Unit -Geometry Building Type ACS 3 or 4 Unit -Geometry Building Type ACS 5 to 9 Unit -Geometry Building Type ACS 50 or more Unit -Geometry Building Type ACS Mobile Home -Geometry Building Type ACS Single-Family Attached -Geometry Building Type ACS Single-Family Detached -Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" -Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" -Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" -Geometry Building Type Height Mobile Home -Geometry Building Type Height Multifamily with 2-4 Units -Geometry Building Type Height Single-Family Attached -Geometry Building Type Height Single-Family Detached -Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 -Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 -Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 -Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 -Geometry Floor Area Bin 0-1499 -Geometry Floor Area Bin 1500-2499 -Geometry Floor Area Bin 2500-3999 -Geometry Floor Area Bin 4000+ -Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 -Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 -Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 -Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right -Geometry Heated Basement No -Geometry Heated Basement Yes -Geometry Number Units ACS bins 10 to 19 Units -Geometry Number Units ACS bins 20 to 49 Units -Geometry Number Units ACS bins 5 to 9 Units -Geometry Number Units ACS bins 50 or more -Geometry Number Units ACS bins <5 -Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" -Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" -Geometry Space Combination Void -Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 -Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 -Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 -Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 -Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 -Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 -Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 -Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 -Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 -Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 -Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 -Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 -Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 -Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 -Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 -Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 -Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 -Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 -Geometry Stories Low Rise 1 -Geometry Stories Low Rise 2 -Geometry Stories Low Rise 3 -Geometry Stories Low Rise 4+ -Geometry Story Bin 8+ -Geometry Story Bin <8 -Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 -Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 -Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 -Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 -Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 -Geometry Wall Type Brick -Geometry Wall Type Concrete -Geometry Wall Type Steel Frame -Geometry Wall Type Void -Geometry Wall Type Wood Frame -Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 -Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 -Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 -Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 -Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 -Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 -Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 -Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 -HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto -HVAC Cooling Efficiency Shared Cooling -HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 -HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 -HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 -HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 -HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 -HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 -HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 -HVAC Cooling Partial Space Conditioning Void -HVAC Cooling Type Central AC -HVAC Cooling Type Ducted Heat Pump -HVAC Cooling Type Evaporative or Swamp Cooler -HVAC Cooling Type Non-Ducted Heat Pump -HVAC Cooling Type None -HVAC Cooling Type Room AC -HVAC Has Ducts No -HVAC Has Ducts Void -HVAC Has Ducts Yes -HVAC Has Shared System Cooling Only -HVAC Has Shared System Heating Only -HVAC Has Shared System Heating and Cooling -HVAC Has Shared System None -HVAC Has Shared System Void -HVAC Has Zonal Electric Heating No -HVAC Has Zonal Electric Heating Yes -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Heating Efficiency Shared Heating -HVAC Heating Efficiency Void -HVAC Heating Type Ducted Heat Pump -HVAC Heating Type Ducted Heating -HVAC Heating Type Non-Ducted Heat Pump -HVAC Heating Type Non-Ducted Heating -HVAC Heating Type None -HVAC Heating Type And Fuel Electricity ASHP -HVAC Heating Type And Fuel Electricity Baseboard -HVAC Heating Type And Fuel Electricity Electric Boiler -HVAC Heating Type And Fuel Electricity Electric Furnace -HVAC Heating Type And Fuel Electricity Electric Wall Furnace -HVAC Heating Type And Fuel Electricity MSHP -HVAC Heating Type And Fuel Electricity Other -HVAC Heating Type And Fuel Electricity Shared Heating -HVAC Heating Type And Fuel Fuel Oil Fuel Boiler -HVAC Heating Type And Fuel Fuel Oil Fuel Furnace -HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Fuel Oil Shared Heating -HVAC Heating Type And Fuel Natural Gas Fuel Boiler -HVAC Heating Type And Fuel Natural Gas Fuel Furnace -HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Natural Gas Shared Heating -HVAC Heating Type And Fuel None -HVAC Heating Type And Fuel Other Fuel Fuel Boiler -HVAC Heating Type And Fuel Other Fuel Fuel Furnace -HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Other Fuel Shared Heating -HVAC Heating Type And Fuel Propane Fuel Boiler -HVAC Heating Type And Fuel Propane Fuel Furnace -HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace -HVAC Heating Type And Fuel Propane Shared Heating -HVAC Heating Type And Fuel Void -HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil -HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas -HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity -HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane -HVAC Secondary Heating Partial Space Conditioning 20% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.2 -HVAC Secondary Heating Partial Space Conditioning 30% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.3 -HVAC Secondary Heating Partial Space Conditioning 40% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.4 -HVAC Secondary Heating Partial Space Conditioning 50% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.5 -HVAC Secondary Heating Partial Space Conditioning <10% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.1 -HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false -HVAC Shared Efficiencies None -HVAC System Is Faulted No -HVAC System Is Faulted Yes -HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 -HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 -HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 -HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 -HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 -HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 -HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 -HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 -HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 -HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 -HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 -HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 -HVAC System Single Speed AC Airflow None -HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 -HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 -HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 -HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 -HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 -HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 -HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 -HVAC System Single Speed AC Charge None -HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 -HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 -HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 -HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 -HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 -HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 -HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 -HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 -HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 -HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 -HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 -HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 -HVAC System Single Speed ASHP Airflow None -HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 -HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 -HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 -HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 -HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 -HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 -HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 -HVAC System Single Speed ASHP Charge None -Has PV No -Has PV Yes -Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true -Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity -Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil -Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas -Heating Fuel None ResStockArguments heating_system_fuel=natural gas -Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood -Heating Fuel Propane ResStockArguments heating_system_fuel=propane -Heating Fuel Wood ResStockArguments heating_system_fuel=wood -Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto -Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto -Heating Setpoint Has Offset No -Heating Setpoint Has Offset Yes -Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 -Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 -Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 -Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 -Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" -Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" -Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" -Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" -Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" -Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" -Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" -Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" -Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" -Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto -Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 -Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 -Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 -Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 -Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 -Household Has Tribal Persons No -Household Has Tribal Persons Not Available -Household Has Tribal Persons Yes -ISO RTO Region CAISO -ISO RTO Region ERCOT -ISO RTO Region MISO -ISO RTO Region NEISO -ISO RTO Region NYISO -ISO RTO Region None -ISO RTO Region PJM -ISO RTO Region SPP -Income 10000-14999 -Income 100000-119999 -Income 120000-139999 -Income 140000-159999 -Income 15000-19999 -Income 160000-179999 -Income 180000-199999 -Income 20000-24999 -Income 200000+ -Income 25000-29999 -Income 30000-34999 -Income 35000-39999 -Income 40000-44999 -Income 45000-49999 -Income 50000-59999 -Income 60000-69999 -Income 70000-79999 -Income 80000-99999 -Income <10000 -Income Not Available -Income RECS2015 100000-119999 -Income RECS2015 120000-139999 -Income RECS2015 140000+ -Income RECS2015 20000-39999 -Income RECS2015 40000-59999 -Income RECS2015 60000-79999 -Income RECS2015 80000-99999 -Income RECS2015 <20000 -Income RECS2015 Not Available -Income RECS2020 100000-149999 -Income RECS2020 150000+ -Income RECS2020 20000-39999 -Income RECS2020 40000-59999 -Income RECS2020 60000-99999 -Income RECS2020 <20000 -Income RECS2020 Not Available -Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal -Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 -Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 -Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 -Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 -Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 -Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 -Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 -Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 -Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 -Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 -Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 -Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 -Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 -Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 -Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 -Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 -Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 -Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 -Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto -Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto -Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto -Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto -Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 -Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 -Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 -Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 -Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 -Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 -Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 -Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 -Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 -Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 -Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 -Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto -Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 -Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 -Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 -Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 -Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 -Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 -Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 -Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 -Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 -Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 -Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 -Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 -Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 -Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 -Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 -Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 -Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 -Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 -Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 -Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 -Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 -Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 -Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 -Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 -Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 -Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 -Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 -Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 -Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 -Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 -Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 -Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 -Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 -Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 -Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 -Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 -Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 -Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 -Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 -Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 -Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 -Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 -Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 -Insulation Wall Void -Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 -Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 -Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 -Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 -Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 -Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 -Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 -Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 -Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 -Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 -Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 -Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 -Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 -Location Region CR02 -Location Region CR03 -Location Region CR04 -Location Region CR05 -Location Region CR06 -Location Region CR07 -Location Region CR08 -Location Region CR09 -Location Region CR10 -Location Region CR11 -Location Region CRAK -Location Region CRHI -Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto -Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 -Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 -Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 -Misc Extra Refrigerator Void -Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 -Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 -Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 -Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 -Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 -Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 -Misc Freezer Void -Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 -Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 -Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 -Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 -Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 -Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 -Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 -Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 -Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 -Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 -Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 -Misc Hot Tub Spa Void -Misc Pool Has Pool ResStockArguments pool_present=true -Misc Pool None ResStockArguments pool_present=false -Misc Pool Void -Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 -Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 -Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 -Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 -Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 -Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 -Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 -Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 -Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 -Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 -Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 -Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 -Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 -Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 -Natural Ventilation None ResStockArguments window_fraction_operable=0 -Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto -Occupants 0 ResStockArguments geometry_unit_num_occupants=0 -Occupants 1 ResStockArguments geometry_unit_num_occupants=1 -Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 -Occupants 2 ResStockArguments geometry_unit_num_occupants=2 -Occupants 3 ResStockArguments geometry_unit_num_occupants=3 -Occupants 4 ResStockArguments geometry_unit_num_occupants=4 -Occupants 5 ResStockArguments geometry_unit_num_occupants=5 -Occupants 6 ResStockArguments geometry_unit_num_occupants=6 -Occupants 7 ResStockArguments geometry_unit_num_occupants=7 -Occupants 8 ResStockArguments geometry_unit_num_occupants=8 -Occupants 9 ResStockArguments geometry_unit_num_occupants=9 -Orientation ENE ResStockArguments geometry_unit_orientation=68 -Orientation ESE ResStockArguments geometry_unit_orientation=113 -Orientation East ResStockArguments geometry_unit_orientation=90 -Orientation NNE ResStockArguments geometry_unit_orientation=23 -Orientation NNW ResStockArguments geometry_unit_orientation=338 -Orientation North ResStockArguments geometry_unit_orientation=0 -Orientation Northeast ResStockArguments geometry_unit_orientation=45 -Orientation Northwest ResStockArguments geometry_unit_orientation=315 -Orientation SSE ResStockArguments geometry_unit_orientation=158 -Orientation SSW ResStockArguments geometry_unit_orientation=203 -Orientation South ResStockArguments geometry_unit_orientation=180 -Orientation Southeast ResStockArguments geometry_unit_orientation=135 -Orientation Southwest ResStockArguments geometry_unit_orientation=225 -Orientation WNW ResStockArguments geometry_unit_orientation=293 -Orientation WSW ResStockArguments geometry_unit_orientation=248 -Orientation West ResStockArguments geometry_unit_orientation=270 -Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 -PUMA "AK, 00101" -PUMA "AK, 00102" -PUMA "AK, 00200" -PUMA "AK, 00300" -PUMA "AK, 00400" -PUMA "AL, 00100" -PUMA "AL, 00200" -PUMA "AL, 00301" -PUMA "AL, 00302" -PUMA "AL, 00400" -PUMA "AL, 00500" -PUMA "AL, 00600" -PUMA "AL, 00700" -PUMA "AL, 00800" -PUMA "AL, 00900" -PUMA "AL, 01000" -PUMA "AL, 01100" -PUMA "AL, 01200" -PUMA "AL, 01301" -PUMA "AL, 01302" -PUMA "AL, 01303" -PUMA "AL, 01304" -PUMA "AL, 01305" -PUMA "AL, 01400" -PUMA "AL, 01500" -PUMA "AL, 01600" -PUMA "AL, 01700" -PUMA "AL, 01800" -PUMA "AL, 01900" -PUMA "AL, 02000" -PUMA "AL, 02100" -PUMA "AL, 02200" -PUMA "AL, 02300" -PUMA "AL, 02400" -PUMA "AL, 02500" -PUMA "AL, 02600" -PUMA "AL, 02701" -PUMA "AL, 02702" -PUMA "AL, 02703" -PUMA "AR, 00100" -PUMA "AR, 00200" -PUMA "AR, 00300" -PUMA "AR, 00400" -PUMA "AR, 00500" -PUMA "AR, 00600" -PUMA "AR, 00700" -PUMA "AR, 00800" -PUMA "AR, 00900" -PUMA "AR, 01000" -PUMA "AR, 01100" -PUMA "AR, 01200" -PUMA "AR, 01300" -PUMA "AR, 01400" -PUMA "AR, 01500" -PUMA "AR, 01600" -PUMA "AR, 01700" -PUMA "AR, 01800" -PUMA "AR, 01900" -PUMA "AR, 02000" -PUMA "AZ, 00100" -PUMA "AZ, 00101" -PUMA "AZ, 00102" -PUMA "AZ, 00103" -PUMA "AZ, 00104" -PUMA "AZ, 00105" -PUMA "AZ, 00106" -PUMA "AZ, 00107" -PUMA "AZ, 00108" -PUMA "AZ, 00109" -PUMA "AZ, 00110" -PUMA "AZ, 00111" -PUMA "AZ, 00112" -PUMA "AZ, 00113" -PUMA "AZ, 00114" -PUMA "AZ, 00115" -PUMA "AZ, 00116" -PUMA "AZ, 00117" -PUMA "AZ, 00118" -PUMA "AZ, 00119" -PUMA "AZ, 00120" -PUMA "AZ, 00121" -PUMA "AZ, 00122" -PUMA "AZ, 00123" -PUMA "AZ, 00124" -PUMA "AZ, 00125" -PUMA "AZ, 00126" -PUMA "AZ, 00127" -PUMA "AZ, 00128" -PUMA "AZ, 00129" -PUMA "AZ, 00130" -PUMA "AZ, 00131" -PUMA "AZ, 00132" -PUMA "AZ, 00133" -PUMA "AZ, 00134" -PUMA "AZ, 00201" -PUMA "AZ, 00202" -PUMA "AZ, 00203" -PUMA "AZ, 00204" -PUMA "AZ, 00205" -PUMA "AZ, 00206" -PUMA "AZ, 00207" -PUMA "AZ, 00208" -PUMA "AZ, 00209" -PUMA "AZ, 00300" -PUMA "AZ, 00400" -PUMA "AZ, 00500" -PUMA "AZ, 00600" -PUMA "AZ, 00700" -PUMA "AZ, 00800" -PUMA "AZ, 00803" -PUMA "AZ, 00805" -PUMA "AZ, 00807" -PUMA "AZ, 00900" -PUMA "CA, 00101" -PUMA "CA, 00102" -PUMA "CA, 00103" -PUMA "CA, 00104" -PUMA "CA, 00105" -PUMA "CA, 00106" -PUMA "CA, 00107" -PUMA "CA, 00108" -PUMA "CA, 00109" -PUMA "CA, 00110" -PUMA "CA, 00300" -PUMA "CA, 00701" -PUMA "CA, 00702" -PUMA "CA, 01100" -PUMA "CA, 01301" -PUMA "CA, 01302" -PUMA "CA, 01303" -PUMA "CA, 01304" -PUMA "CA, 01305" -PUMA "CA, 01306" -PUMA "CA, 01307" -PUMA "CA, 01308" -PUMA "CA, 01309" -PUMA "CA, 01500" -PUMA "CA, 01700" -PUMA "CA, 01901" -PUMA "CA, 01902" -PUMA "CA, 01903" -PUMA "CA, 01904" -PUMA "CA, 01905" -PUMA "CA, 01906" -PUMA "CA, 01907" -PUMA "CA, 02300" -PUMA "CA, 02500" -PUMA "CA, 02901" -PUMA "CA, 02902" -PUMA "CA, 02903" -PUMA "CA, 02904" -PUMA "CA, 02905" -PUMA "CA, 03100" -PUMA "CA, 03300" -PUMA "CA, 03701" -PUMA "CA, 03702" -PUMA "CA, 03703" -PUMA "CA, 03704" -PUMA "CA, 03705" -PUMA "CA, 03706" -PUMA "CA, 03707" -PUMA "CA, 03708" -PUMA "CA, 03709" -PUMA "CA, 03710" -PUMA "CA, 03711" -PUMA "CA, 03712" -PUMA "CA, 03713" -PUMA "CA, 03714" -PUMA "CA, 03715" -PUMA "CA, 03716" -PUMA "CA, 03717" -PUMA "CA, 03718" -PUMA "CA, 03719" -PUMA "CA, 03720" -PUMA "CA, 03721" -PUMA "CA, 03722" -PUMA "CA, 03723" -PUMA "CA, 03724" -PUMA "CA, 03725" -PUMA "CA, 03726" -PUMA "CA, 03727" -PUMA "CA, 03728" -PUMA "CA, 03729" -PUMA "CA, 03730" -PUMA "CA, 03731" -PUMA "CA, 03732" -PUMA "CA, 03733" -PUMA "CA, 03734" -PUMA "CA, 03735" -PUMA "CA, 03736" -PUMA "CA, 03737" -PUMA "CA, 03738" -PUMA "CA, 03739" -PUMA "CA, 03740" -PUMA "CA, 03741" -PUMA "CA, 03742" -PUMA "CA, 03743" -PUMA "CA, 03744" -PUMA "CA, 03745" -PUMA "CA, 03746" -PUMA "CA, 03747" -PUMA "CA, 03748" -PUMA "CA, 03749" -PUMA "CA, 03750" -PUMA "CA, 03751" -PUMA "CA, 03752" -PUMA "CA, 03753" -PUMA "CA, 03754" -PUMA "CA, 03755" -PUMA "CA, 03756" -PUMA "CA, 03757" -PUMA "CA, 03758" -PUMA "CA, 03759" -PUMA "CA, 03760" -PUMA "CA, 03761" -PUMA "CA, 03762" -PUMA "CA, 03763" -PUMA "CA, 03764" -PUMA "CA, 03765" -PUMA "CA, 03766" -PUMA "CA, 03767" -PUMA "CA, 03768" -PUMA "CA, 03769" -PUMA "CA, 03900" -PUMA "CA, 04101" -PUMA "CA, 04102" -PUMA "CA, 04701" -PUMA "CA, 04702" -PUMA "CA, 05301" -PUMA "CA, 05302" -PUMA "CA, 05303" -PUMA "CA, 05500" -PUMA "CA, 05700" -PUMA "CA, 05901" -PUMA "CA, 05902" -PUMA "CA, 05903" -PUMA "CA, 05904" -PUMA "CA, 05905" -PUMA "CA, 05906" -PUMA "CA, 05907" -PUMA "CA, 05908" -PUMA "CA, 05909" -PUMA "CA, 05910" -PUMA "CA, 05911" -PUMA "CA, 05912" -PUMA "CA, 05913" -PUMA "CA, 05914" -PUMA "CA, 05915" -PUMA "CA, 05916" -PUMA "CA, 05917" -PUMA "CA, 05918" -PUMA "CA, 06101" -PUMA "CA, 06102" -PUMA "CA, 06103" -PUMA "CA, 06501" -PUMA "CA, 06502" -PUMA "CA, 06503" -PUMA "CA, 06504" -PUMA "CA, 06505" -PUMA "CA, 06506" -PUMA "CA, 06507" -PUMA "CA, 06508" -PUMA "CA, 06509" -PUMA "CA, 06510" -PUMA "CA, 06511" -PUMA "CA, 06512" -PUMA "CA, 06513" -PUMA "CA, 06514" -PUMA "CA, 06515" -PUMA "CA, 06701" -PUMA "CA, 06702" -PUMA "CA, 06703" -PUMA "CA, 06704" -PUMA "CA, 06705" -PUMA "CA, 06706" -PUMA "CA, 06707" -PUMA "CA, 06708" -PUMA "CA, 06709" -PUMA "CA, 06710" -PUMA "CA, 06711" -PUMA "CA, 06712" -PUMA "CA, 07101" -PUMA "CA, 07102" -PUMA "CA, 07103" -PUMA "CA, 07104" -PUMA "CA, 07105" -PUMA "CA, 07106" -PUMA "CA, 07107" -PUMA "CA, 07108" -PUMA "CA, 07109" -PUMA "CA, 07110" -PUMA "CA, 07111" -PUMA "CA, 07112" -PUMA "CA, 07113" -PUMA "CA, 07114" -PUMA "CA, 07115" -PUMA "CA, 07301" -PUMA "CA, 07302" -PUMA "CA, 07303" -PUMA "CA, 07304" -PUMA "CA, 07305" -PUMA "CA, 07306" -PUMA "CA, 07307" -PUMA "CA, 07308" -PUMA "CA, 07309" -PUMA "CA, 07310" -PUMA "CA, 07311" -PUMA "CA, 07312" -PUMA "CA, 07313" -PUMA "CA, 07314" -PUMA "CA, 07315" -PUMA "CA, 07316" -PUMA "CA, 07317" -PUMA "CA, 07318" -PUMA "CA, 07319" -PUMA "CA, 07320" -PUMA "CA, 07321" -PUMA "CA, 07322" -PUMA "CA, 07501" -PUMA "CA, 07502" -PUMA "CA, 07503" -PUMA "CA, 07504" -PUMA "CA, 07505" -PUMA "CA, 07506" -PUMA "CA, 07507" -PUMA "CA, 07701" -PUMA "CA, 07702" -PUMA "CA, 07703" -PUMA "CA, 07704" -PUMA "CA, 07901" -PUMA "CA, 07902" -PUMA "CA, 08101" -PUMA "CA, 08102" -PUMA "CA, 08103" -PUMA "CA, 08104" -PUMA "CA, 08105" -PUMA "CA, 08106" -PUMA "CA, 08301" -PUMA "CA, 08302" -PUMA "CA, 08303" -PUMA "CA, 08501" -PUMA "CA, 08502" -PUMA "CA, 08503" -PUMA "CA, 08504" -PUMA "CA, 08505" -PUMA "CA, 08506" -PUMA "CA, 08507" -PUMA "CA, 08508" -PUMA "CA, 08509" -PUMA "CA, 08510" -PUMA "CA, 08511" -PUMA "CA, 08512" -PUMA "CA, 08513" -PUMA "CA, 08514" -PUMA "CA, 08701" -PUMA "CA, 08702" -PUMA "CA, 08900" -PUMA "CA, 09501" -PUMA "CA, 09502" -PUMA "CA, 09503" -PUMA "CA, 09701" -PUMA "CA, 09702" -PUMA "CA, 09703" -PUMA "CA, 09901" -PUMA "CA, 09902" -PUMA "CA, 09903" -PUMA "CA, 09904" -PUMA "CA, 10100" -PUMA "CA, 10701" -PUMA "CA, 10702" -PUMA "CA, 10703" -PUMA "CA, 11101" -PUMA "CA, 11102" -PUMA "CA, 11103" -PUMA "CA, 11104" -PUMA "CA, 11105" -PUMA "CA, 11106" -PUMA "CA, 11300" -PUMA "CO, 00100" -PUMA "CO, 00102" -PUMA "CO, 00103" -PUMA "CO, 00200" -PUMA "CO, 00300" -PUMA "CO, 00400" -PUMA "CO, 00600" -PUMA "CO, 00700" -PUMA "CO, 00800" -PUMA "CO, 00801" -PUMA "CO, 00802" -PUMA "CO, 00803" -PUMA "CO, 00804" -PUMA "CO, 00805" -PUMA "CO, 00806" -PUMA "CO, 00807" -PUMA "CO, 00808" -PUMA "CO, 00809" -PUMA "CO, 00810" -PUMA "CO, 00811" -PUMA "CO, 00812" -PUMA "CO, 00813" -PUMA "CO, 00814" -PUMA "CO, 00815" -PUMA "CO, 00816" -PUMA "CO, 00817" -PUMA "CO, 00818" -PUMA "CO, 00819" -PUMA "CO, 00820" -PUMA "CO, 00821" -PUMA "CO, 00822" -PUMA "CO, 00823" -PUMA "CO, 00824" -PUMA "CO, 00900" -PUMA "CO, 01001" -PUMA "CO, 01002" -PUMA "CO, 04101" -PUMA "CO, 04102" -PUMA "CO, 04103" -PUMA "CO, 04104" -PUMA "CO, 04105" -PUMA "CO, 04106" -PUMA "CT, 00100" -PUMA "CT, 00101" -PUMA "CT, 00102" -PUMA "CT, 00103" -PUMA "CT, 00104" -PUMA "CT, 00105" -PUMA "CT, 00300" -PUMA "CT, 00301" -PUMA "CT, 00302" -PUMA "CT, 00303" -PUMA "CT, 00304" -PUMA "CT, 00305" -PUMA "CT, 00306" -PUMA "CT, 00500" -PUMA "CT, 00700" -PUMA "CT, 00900" -PUMA "CT, 00901" -PUMA "CT, 00902" -PUMA "CT, 00903" -PUMA "CT, 00904" -PUMA "CT, 00905" -PUMA "CT, 00906" -PUMA "CT, 01100" -PUMA "CT, 01101" -PUMA "CT, 01300" -PUMA "CT, 01500" -PUMA "DC, 00101" -PUMA "DC, 00102" -PUMA "DC, 00103" -PUMA "DC, 00104" -PUMA "DC, 00105" -PUMA "DE, 00101" -PUMA "DE, 00102" -PUMA "DE, 00103" -PUMA "DE, 00104" -PUMA "DE, 00200" -PUMA "DE, 00300" -PUMA "FL, 00101" -PUMA "FL, 00102" -PUMA "FL, 00500" -PUMA "FL, 00901" -PUMA "FL, 00902" -PUMA "FL, 00903" -PUMA "FL, 00904" -PUMA "FL, 01101" -PUMA "FL, 01102" -PUMA "FL, 01103" -PUMA "FL, 01104" -PUMA "FL, 01105" -PUMA "FL, 01106" -PUMA "FL, 01107" -PUMA "FL, 01108" -PUMA "FL, 01109" -PUMA "FL, 01110" -PUMA "FL, 01111" -PUMA "FL, 01112" -PUMA "FL, 01113" -PUMA "FL, 01114" -PUMA "FL, 01500" -PUMA "FL, 01701" -PUMA "FL, 01900" -PUMA "FL, 02101" -PUMA "FL, 02102" -PUMA "FL, 02103" -PUMA "FL, 02300" -PUMA "FL, 02700" -PUMA "FL, 03101" -PUMA "FL, 03102" -PUMA "FL, 03103" -PUMA "FL, 03104" -PUMA "FL, 03105" -PUMA "FL, 03106" -PUMA "FL, 03107" -PUMA "FL, 03301" -PUMA "FL, 03302" -PUMA "FL, 03500" -PUMA "FL, 05301" -PUMA "FL, 05701" -PUMA "FL, 05702" -PUMA "FL, 05703" -PUMA "FL, 05704" -PUMA "FL, 05705" -PUMA "FL, 05706" -PUMA "FL, 05707" -PUMA "FL, 05708" -PUMA "FL, 06100" -PUMA "FL, 06300" -PUMA "FL, 06901" -PUMA "FL, 06902" -PUMA "FL, 06903" -PUMA "FL, 07101" -PUMA "FL, 07102" -PUMA "FL, 07103" -PUMA "FL, 07104" -PUMA "FL, 07105" -PUMA "FL, 07300" -PUMA "FL, 07301" -PUMA "FL, 08101" -PUMA "FL, 08102" -PUMA "FL, 08103" -PUMA "FL, 08301" -PUMA "FL, 08302" -PUMA "FL, 08303" -PUMA "FL, 08500" -PUMA "FL, 08601" -PUMA "FL, 08602" -PUMA "FL, 08603" -PUMA "FL, 08604" -PUMA "FL, 08605" -PUMA "FL, 08606" -PUMA "FL, 08607" -PUMA "FL, 08608" -PUMA "FL, 08609" -PUMA "FL, 08610" -PUMA "FL, 08611" -PUMA "FL, 08612" -PUMA "FL, 08613" -PUMA "FL, 08614" -PUMA "FL, 08615" -PUMA "FL, 08616" -PUMA "FL, 08617" -PUMA "FL, 08618" -PUMA "FL, 08619" -PUMA "FL, 08620" -PUMA "FL, 08621" -PUMA "FL, 08622" -PUMA "FL, 08623" -PUMA "FL, 08624" -PUMA "FL, 08700" -PUMA "FL, 08900" -PUMA "FL, 09100" -PUMA "FL, 09300" -PUMA "FL, 09501" -PUMA "FL, 09502" -PUMA "FL, 09503" -PUMA "FL, 09504" -PUMA "FL, 09505" -PUMA "FL, 09506" -PUMA "FL, 09507" -PUMA "FL, 09508" -PUMA "FL, 09509" -PUMA "FL, 09510" -PUMA "FL, 09701" -PUMA "FL, 09702" -PUMA "FL, 09901" -PUMA "FL, 09902" -PUMA "FL, 09903" -PUMA "FL, 09904" -PUMA "FL, 09905" -PUMA "FL, 09906" -PUMA "FL, 09907" -PUMA "FL, 09908" -PUMA "FL, 09909" -PUMA "FL, 09910" -PUMA "FL, 09911" -PUMA "FL, 10101" -PUMA "FL, 10102" -PUMA "FL, 10103" -PUMA "FL, 10104" -PUMA "FL, 10301" -PUMA "FL, 10302" -PUMA "FL, 10303" -PUMA "FL, 10304" -PUMA "FL, 10305" -PUMA "FL, 10306" -PUMA "FL, 10307" -PUMA "FL, 10308" -PUMA "FL, 10501" -PUMA "FL, 10502" -PUMA "FL, 10503" -PUMA "FL, 10504" -PUMA "FL, 10700" -PUMA "FL, 10900" -PUMA "FL, 11101" -PUMA "FL, 11102" -PUMA "FL, 11300" -PUMA "FL, 11501" -PUMA "FL, 11502" -PUMA "FL, 11503" -PUMA "FL, 11701" -PUMA "FL, 11702" -PUMA "FL, 11703" -PUMA "FL, 11704" -PUMA "FL, 12100" -PUMA "FL, 12701" -PUMA "FL, 12702" -PUMA "FL, 12703" -PUMA "FL, 12704" -PUMA "GA, 00100" -PUMA "GA, 00200" -PUMA "GA, 00300" -PUMA "GA, 00401" -PUMA "GA, 00402" -PUMA "GA, 00500" -PUMA "GA, 00600" -PUMA "GA, 00700" -PUMA "GA, 00800" -PUMA "GA, 00900" -PUMA "GA, 01001" -PUMA "GA, 01002" -PUMA "GA, 01003" -PUMA "GA, 01004" -PUMA "GA, 01005" -PUMA "GA, 01006" -PUMA "GA, 01007" -PUMA "GA, 01008" -PUMA "GA, 01100" -PUMA "GA, 01200" -PUMA "GA, 01300" -PUMA "GA, 01400" -PUMA "GA, 01500" -PUMA "GA, 01600" -PUMA "GA, 01700" -PUMA "GA, 01800" -PUMA "GA, 01900" -PUMA "GA, 02001" -PUMA "GA, 02002" -PUMA "GA, 02003" -PUMA "GA, 02004" -PUMA "GA, 02100" -PUMA "GA, 02200" -PUMA "GA, 02300" -PUMA "GA, 02400" -PUMA "GA, 02500" -PUMA "GA, 02600" -PUMA "GA, 02700" -PUMA "GA, 02800" -PUMA "GA, 02900" -PUMA "GA, 03001" -PUMA "GA, 03002" -PUMA "GA, 03003" -PUMA "GA, 03004" -PUMA "GA, 03005" -PUMA "GA, 03101" -PUMA "GA, 03102" -PUMA "GA, 03200" -PUMA "GA, 03300" -PUMA "GA, 03400" -PUMA "GA, 03500" -PUMA "GA, 03600" -PUMA "GA, 03700" -PUMA "GA, 03800" -PUMA "GA, 03900" -PUMA "GA, 04000" -PUMA "GA, 04001" -PUMA "GA, 04002" -PUMA "GA, 04003" -PUMA "GA, 04004" -PUMA "GA, 04005" -PUMA "GA, 04006" -PUMA "GA, 04100" -PUMA "GA, 04200" -PUMA "GA, 04300" -PUMA "GA, 04400" -PUMA "GA, 04500" -PUMA "GA, 04600" -PUMA "GA, 05001" -PUMA "GA, 05002" -PUMA "GA, 06001" -PUMA "GA, 06002" -PUMA "HI, 00100" -PUMA "HI, 00200" -PUMA "HI, 00301" -PUMA "HI, 00302" -PUMA "HI, 00303" -PUMA "HI, 00304" -PUMA "HI, 00305" -PUMA "HI, 00306" -PUMA "HI, 00307" -PUMA "HI, 00308" -PUMA "IA, 00100" -PUMA "IA, 00200" -PUMA "IA, 00400" -PUMA "IA, 00500" -PUMA "IA, 00600" -PUMA "IA, 00700" -PUMA "IA, 00800" -PUMA "IA, 00900" -PUMA "IA, 01000" -PUMA "IA, 01100" -PUMA "IA, 01200" -PUMA "IA, 01300" -PUMA "IA, 01400" -PUMA "IA, 01500" -PUMA "IA, 01600" -PUMA "IA, 01700" -PUMA "IA, 01800" -PUMA "IA, 01900" -PUMA "IA, 02000" -PUMA "IA, 02100" -PUMA "IA, 02200" -PUMA "IA, 02300" -PUMA "ID, 00100" -PUMA "ID, 00200" -PUMA "ID, 00300" -PUMA "ID, 00400" -PUMA "ID, 00500" -PUMA "ID, 00600" -PUMA "ID, 00701" -PUMA "ID, 00702" -PUMA "ID, 00800" -PUMA "ID, 00900" -PUMA "ID, 01000" -PUMA "ID, 01100" -PUMA "ID, 01200" -PUMA "ID, 01300" -PUMA "IL, 00104" -PUMA "IL, 00105" -PUMA "IL, 00202" -PUMA "IL, 00300" -PUMA "IL, 00401" -PUMA "IL, 00501" -PUMA "IL, 00600" -PUMA "IL, 00700" -PUMA "IL, 00800" -PUMA "IL, 00900" -PUMA "IL, 01001" -PUMA "IL, 01104" -PUMA "IL, 01105" -PUMA "IL, 01204" -PUMA "IL, 01205" -PUMA "IL, 01300" -PUMA "IL, 01500" -PUMA "IL, 01602" -PUMA "IL, 01701" -PUMA "IL, 01900" -PUMA "IL, 02000" -PUMA "IL, 02100" -PUMA "IL, 02200" -PUMA "IL, 02300" -PUMA "IL, 02400" -PUMA "IL, 02501" -PUMA "IL, 02601" -PUMA "IL, 02700" -PUMA "IL, 02801" -PUMA "IL, 02901" -PUMA "IL, 03005" -PUMA "IL, 03007" -PUMA "IL, 03008" -PUMA "IL, 03009" -PUMA "IL, 03102" -PUMA "IL, 03105" -PUMA "IL, 03106" -PUMA "IL, 03107" -PUMA "IL, 03108" -PUMA "IL, 03202" -PUMA "IL, 03203" -PUMA "IL, 03204" -PUMA "IL, 03205" -PUMA "IL, 03207" -PUMA "IL, 03208" -PUMA "IL, 03209" -PUMA "IL, 03306" -PUMA "IL, 03307" -PUMA "IL, 03308" -PUMA "IL, 03309" -PUMA "IL, 03310" -PUMA "IL, 03401" -PUMA "IL, 03407" -PUMA "IL, 03408" -PUMA "IL, 03409" -PUMA "IL, 03410" -PUMA "IL, 03411" -PUMA "IL, 03412" -PUMA "IL, 03413" -PUMA "IL, 03414" -PUMA "IL, 03415" -PUMA "IL, 03416" -PUMA "IL, 03417" -PUMA "IL, 03418" -PUMA "IL, 03419" -PUMA "IL, 03420" -PUMA "IL, 03421" -PUMA "IL, 03422" -PUMA "IL, 03501" -PUMA "IL, 03502" -PUMA "IL, 03503" -PUMA "IL, 03504" -PUMA "IL, 03520" -PUMA "IL, 03521" -PUMA "IL, 03522" -PUMA "IL, 03523" -PUMA "IL, 03524" -PUMA "IL, 03525" -PUMA "IL, 03526" -PUMA "IL, 03527" -PUMA "IL, 03528" -PUMA "IL, 03529" -PUMA "IL, 03530" -PUMA "IL, 03531" -PUMA "IL, 03532" -PUMA "IL, 03601" -PUMA "IL, 03602" -PUMA "IL, 03700" -PUMA "IN, 00101" -PUMA "IN, 00102" -PUMA "IN, 00103" -PUMA "IN, 00104" -PUMA "IN, 00200" -PUMA "IN, 00300" -PUMA "IN, 00401" -PUMA "IN, 00402" -PUMA "IN, 00500" -PUMA "IN, 00600" -PUMA "IN, 00700" -PUMA "IN, 00800" -PUMA "IN, 00900" -PUMA "IN, 01001" -PUMA "IN, 01002" -PUMA "IN, 01003" -PUMA "IN, 01100" -PUMA "IN, 01200" -PUMA "IN, 01300" -PUMA "IN, 01400" -PUMA "IN, 01500" -PUMA "IN, 01600" -PUMA "IN, 01700" -PUMA "IN, 01801" -PUMA "IN, 01802" -PUMA "IN, 01803" -PUMA "IN, 01900" -PUMA "IN, 02000" -PUMA "IN, 02100" -PUMA "IN, 02200" -PUMA "IN, 02301" -PUMA "IN, 02302" -PUMA "IN, 02303" -PUMA "IN, 02304" -PUMA "IN, 02305" -PUMA "IN, 02306" -PUMA "IN, 02307" -PUMA "IN, 02400" -PUMA "IN, 02500" -PUMA "IN, 02600" -PUMA "IN, 02700" -PUMA "IN, 02800" -PUMA "IN, 02900" -PUMA "IN, 03000" -PUMA "IN, 03100" -PUMA "IN, 03200" -PUMA "IN, 03300" -PUMA "IN, 03400" -PUMA "IN, 03500" -PUMA "IN, 03600" -PUMA "KS, 00100" -PUMA "KS, 00200" -PUMA "KS, 00300" -PUMA "KS, 00400" -PUMA "KS, 00500" -PUMA "KS, 00601" -PUMA "KS, 00602" -PUMA "KS, 00603" -PUMA "KS, 00604" -PUMA "KS, 00700" -PUMA "KS, 00801" -PUMA "KS, 00802" -PUMA "KS, 00900" -PUMA "KS, 01000" -PUMA "KS, 01100" -PUMA "KS, 01200" -PUMA "KS, 01301" -PUMA "KS, 01302" -PUMA "KS, 01303" -PUMA "KS, 01304" -PUMA "KS, 01400" -PUMA "KS, 01500" -PUMA "KY, 00100" -PUMA "KY, 00200" -PUMA "KY, 00300" -PUMA "KY, 00400" -PUMA "KY, 00500" -PUMA "KY, 00600" -PUMA "KY, 00700" -PUMA "KY, 00800" -PUMA "KY, 00900" -PUMA "KY, 01000" -PUMA "KY, 01100" -PUMA "KY, 01200" -PUMA "KY, 01300" -PUMA "KY, 01400" -PUMA "KY, 01500" -PUMA "KY, 01600" -PUMA "KY, 01701" -PUMA "KY, 01702" -PUMA "KY, 01703" -PUMA "KY, 01704" -PUMA "KY, 01705" -PUMA "KY, 01706" -PUMA "KY, 01800" -PUMA "KY, 01901" -PUMA "KY, 01902" -PUMA "KY, 02000" -PUMA "KY, 02100" -PUMA "KY, 02200" -PUMA "KY, 02300" -PUMA "KY, 02400" -PUMA "KY, 02500" -PUMA "KY, 02600" -PUMA "KY, 02700" -PUMA "KY, 02800" -PUMA "LA, 00100" -PUMA "LA, 00101" -PUMA "LA, 00200" -PUMA "LA, 00300" -PUMA "LA, 00400" -PUMA "LA, 00500" -PUMA "LA, 00600" -PUMA "LA, 00700" -PUMA "LA, 00800" -PUMA "LA, 00900" -PUMA "LA, 01000" -PUMA "LA, 01100" -PUMA "LA, 01200" -PUMA "LA, 01201" -PUMA "LA, 01300" -PUMA "LA, 01400" -PUMA "LA, 01500" -PUMA "LA, 01501" -PUMA "LA, 01502" -PUMA "LA, 01600" -PUMA "LA, 01700" -PUMA "LA, 01800" -PUMA "LA, 01900" -PUMA "LA, 02000" -PUMA "LA, 02100" -PUMA "LA, 02200" -PUMA "LA, 02201" -PUMA "LA, 02300" -PUMA "LA, 02301" -PUMA "LA, 02302" -PUMA "LA, 02400" -PUMA "LA, 02401" -PUMA "LA, 02402" -PUMA "LA, 02500" -PUMA "MA, 00100" -PUMA "MA, 00200" -PUMA "MA, 00300" -PUMA "MA, 00301" -PUMA "MA, 00302" -PUMA "MA, 00303" -PUMA "MA, 00304" -PUMA "MA, 00400" -PUMA "MA, 00501" -PUMA "MA, 00502" -PUMA "MA, 00503" -PUMA "MA, 00504" -PUMA "MA, 00505" -PUMA "MA, 00506" -PUMA "MA, 00507" -PUMA "MA, 00508" -PUMA "MA, 00701" -PUMA "MA, 00702" -PUMA "MA, 00703" -PUMA "MA, 00704" -PUMA "MA, 01000" -PUMA "MA, 01300" -PUMA "MA, 01400" -PUMA "MA, 01600" -PUMA "MA, 01900" -PUMA "MA, 01901" -PUMA "MA, 01902" -PUMA "MA, 02400" -PUMA "MA, 02800" -PUMA "MA, 03301" -PUMA "MA, 03302" -PUMA "MA, 03303" -PUMA "MA, 03304" -PUMA "MA, 03305" -PUMA "MA, 03306" -PUMA "MA, 03400" -PUMA "MA, 03500" -PUMA "MA, 03601" -PUMA "MA, 03602" -PUMA "MA, 03603" -PUMA "MA, 03900" -PUMA "MA, 04000" -PUMA "MA, 04200" -PUMA "MA, 04301" -PUMA "MA, 04302" -PUMA "MA, 04303" -PUMA "MA, 04500" -PUMA "MA, 04700" -PUMA "MA, 04800" -PUMA "MA, 04901" -PUMA "MA, 04902" -PUMA "MA, 04903" -PUMA "MD, 00100" -PUMA "MD, 00200" -PUMA "MD, 00301" -PUMA "MD, 00302" -PUMA "MD, 00400" -PUMA "MD, 00501" -PUMA "MD, 00502" -PUMA "MD, 00503" -PUMA "MD, 00504" -PUMA "MD, 00505" -PUMA "MD, 00506" -PUMA "MD, 00507" -PUMA "MD, 00601" -PUMA "MD, 00602" -PUMA "MD, 00700" -PUMA "MD, 00801" -PUMA "MD, 00802" -PUMA "MD, 00803" -PUMA "MD, 00804" -PUMA "MD, 00805" -PUMA "MD, 00901" -PUMA "MD, 00902" -PUMA "MD, 01001" -PUMA "MD, 01002" -PUMA "MD, 01003" -PUMA "MD, 01004" -PUMA "MD, 01005" -PUMA "MD, 01006" -PUMA "MD, 01007" -PUMA "MD, 01101" -PUMA "MD, 01102" -PUMA "MD, 01103" -PUMA "MD, 01104" -PUMA "MD, 01105" -PUMA "MD, 01106" -PUMA "MD, 01107" -PUMA "MD, 01201" -PUMA "MD, 01202" -PUMA "MD, 01203" -PUMA "MD, 01204" -PUMA "MD, 01300" -PUMA "MD, 01400" -PUMA "MD, 01500" -PUMA "MD, 01600" -PUMA "ME, 00100" -PUMA "ME, 00200" -PUMA "ME, 00300" -PUMA "ME, 00400" -PUMA "ME, 00500" -PUMA "ME, 00600" -PUMA "ME, 00700" -PUMA "ME, 00800" -PUMA "ME, 00900" -PUMA "ME, 01000" -PUMA "MI, 00100" -PUMA "MI, 00200" -PUMA "MI, 00300" -PUMA "MI, 00400" -PUMA "MI, 00500" -PUMA "MI, 00600" -PUMA "MI, 00700" -PUMA "MI, 00801" -PUMA "MI, 00802" -PUMA "MI, 00900" -PUMA "MI, 01001" -PUMA "MI, 01002" -PUMA "MI, 01003" -PUMA "MI, 01004" -PUMA "MI, 01100" -PUMA "MI, 01200" -PUMA "MI, 01300" -PUMA "MI, 01400" -PUMA "MI, 01500" -PUMA "MI, 01600" -PUMA "MI, 01701" -PUMA "MI, 01702" -PUMA "MI, 01703" -PUMA "MI, 01704" -PUMA "MI, 01801" -PUMA "MI, 01802" -PUMA "MI, 01900" -PUMA "MI, 02000" -PUMA "MI, 02101" -PUMA "MI, 02102" -PUMA "MI, 02200" -PUMA "MI, 02300" -PUMA "MI, 02400" -PUMA "MI, 02500" -PUMA "MI, 02600" -PUMA "MI, 02701" -PUMA "MI, 02702" -PUMA "MI, 02703" -PUMA "MI, 02800" -PUMA "MI, 02901" -PUMA "MI, 02902" -PUMA "MI, 02903" -PUMA "MI, 02904" -PUMA "MI, 02905" -PUMA "MI, 02906" -PUMA "MI, 02907" -PUMA "MI, 02908" -PUMA "MI, 03001" -PUMA "MI, 03002" -PUMA "MI, 03003" -PUMA "MI, 03004" -PUMA "MI, 03005" -PUMA "MI, 03006" -PUMA "MI, 03100" -PUMA "MI, 03201" -PUMA "MI, 03202" -PUMA "MI, 03203" -PUMA "MI, 03204" -PUMA "MI, 03205" -PUMA "MI, 03206" -PUMA "MI, 03207" -PUMA "MI, 03208" -PUMA "MI, 03209" -PUMA "MI, 03210" -PUMA "MI, 03211" -PUMA "MI, 03212" -PUMA "MI, 03213" -PUMA "MI, 03300" -PUMA "MN, 00100" -PUMA "MN, 00200" -PUMA "MN, 00300" -PUMA "MN, 00400" -PUMA "MN, 00500" -PUMA "MN, 00600" -PUMA "MN, 00700" -PUMA "MN, 00800" -PUMA "MN, 00900" -PUMA "MN, 01000" -PUMA "MN, 01101" -PUMA "MN, 01102" -PUMA "MN, 01103" -PUMA "MN, 01201" -PUMA "MN, 01202" -PUMA "MN, 01301" -PUMA "MN, 01302" -PUMA "MN, 01303" -PUMA "MN, 01304" -PUMA "MN, 01401" -PUMA "MN, 01402" -PUMA "MN, 01403" -PUMA "MN, 01404" -PUMA "MN, 01405" -PUMA "MN, 01406" -PUMA "MN, 01407" -PUMA "MN, 01408" -PUMA "MN, 01409" -PUMA "MN, 01410" -PUMA "MN, 01501" -PUMA "MN, 01502" -PUMA "MN, 01503" -PUMA "MN, 01600" -PUMA "MN, 01700" -PUMA "MN, 01800" -PUMA "MN, 01900" -PUMA "MN, 02000" -PUMA "MN, 02100" -PUMA "MN, 02200" -PUMA "MN, 02300" -PUMA "MN, 02400" -PUMA "MN, 02500" -PUMA "MN, 02600" -PUMA "MO, 00100" -PUMA "MO, 00200" -PUMA "MO, 00300" -PUMA "MO, 00400" -PUMA "MO, 00500" -PUMA "MO, 00600" -PUMA "MO, 00700" -PUMA "MO, 00800" -PUMA "MO, 00901" -PUMA "MO, 00902" -PUMA "MO, 00903" -PUMA "MO, 01001" -PUMA "MO, 01002" -PUMA "MO, 01003" -PUMA "MO, 01004" -PUMA "MO, 01005" -PUMA "MO, 01100" -PUMA "MO, 01200" -PUMA "MO, 01300" -PUMA "MO, 01400" -PUMA "MO, 01500" -PUMA "MO, 01600" -PUMA "MO, 01701" -PUMA "MO, 01702" -PUMA "MO, 01703" -PUMA "MO, 01801" -PUMA "MO, 01802" -PUMA "MO, 01803" -PUMA "MO, 01804" -PUMA "MO, 01805" -PUMA "MO, 01806" -PUMA "MO, 01807" -PUMA "MO, 01808" -PUMA "MO, 01901" -PUMA "MO, 01902" -PUMA "MO, 02001" -PUMA "MO, 02002" -PUMA "MO, 02100" -PUMA "MO, 02200" -PUMA "MO, 02300" -PUMA "MO, 02400" -PUMA "MO, 02500" -PUMA "MO, 02601" -PUMA "MO, 02602" -PUMA "MO, 02603" -PUMA "MO, 02700" -PUMA "MO, 02800" -PUMA "MS, 00100" -PUMA "MS, 00200" -PUMA "MS, 00300" -PUMA "MS, 00400" -PUMA "MS, 00500" -PUMA "MS, 00600" -PUMA "MS, 00700" -PUMA "MS, 00800" -PUMA "MS, 00900" -PUMA "MS, 01000" -PUMA "MS, 01100" -PUMA "MS, 01200" -PUMA "MS, 01300" -PUMA "MS, 01400" -PUMA "MS, 01500" -PUMA "MS, 01600" -PUMA "MS, 01700" -PUMA "MS, 01800" -PUMA "MS, 01900" -PUMA "MS, 02000" -PUMA "MS, 02100" -PUMA "MT, 00100" -PUMA "MT, 00200" -PUMA "MT, 00300" -PUMA "MT, 00400" -PUMA "MT, 00500" -PUMA "MT, 00600" -PUMA "MT, 00700" -PUMA "NC, 00100" -PUMA "NC, 00200" -PUMA "NC, 00300" -PUMA "NC, 00400" -PUMA "NC, 00500" -PUMA "NC, 00600" -PUMA "NC, 00700" -PUMA "NC, 00800" -PUMA "NC, 00900" -PUMA "NC, 01000" -PUMA "NC, 01100" -PUMA "NC, 01201" -PUMA "NC, 01202" -PUMA "NC, 01203" -PUMA "NC, 01204" -PUMA "NC, 01205" -PUMA "NC, 01206" -PUMA "NC, 01207" -PUMA "NC, 01208" -PUMA "NC, 01301" -PUMA "NC, 01302" -PUMA "NC, 01400" -PUMA "NC, 01500" -PUMA "NC, 01600" -PUMA "NC, 01701" -PUMA "NC, 01702" -PUMA "NC, 01703" -PUMA "NC, 01704" -PUMA "NC, 01801" -PUMA "NC, 01802" -PUMA "NC, 01803" -PUMA "NC, 01900" -PUMA "NC, 02000" -PUMA "NC, 02100" -PUMA "NC, 02201" -PUMA "NC, 02202" -PUMA "NC, 02300" -PUMA "NC, 02400" -PUMA "NC, 02500" -PUMA "NC, 02600" -PUMA "NC, 02700" -PUMA "NC, 02800" -PUMA "NC, 02900" -PUMA "NC, 03001" -PUMA "NC, 03002" -PUMA "NC, 03101" -PUMA "NC, 03102" -PUMA "NC, 03103" -PUMA "NC, 03104" -PUMA "NC, 03105" -PUMA "NC, 03106" -PUMA "NC, 03107" -PUMA "NC, 03108" -PUMA "NC, 03200" -PUMA "NC, 03300" -PUMA "NC, 03400" -PUMA "NC, 03500" -PUMA "NC, 03600" -PUMA "NC, 03700" -PUMA "NC, 03800" -PUMA "NC, 03900" -PUMA "NC, 04000" -PUMA "NC, 04100" -PUMA "NC, 04200" -PUMA "NC, 04300" -PUMA "NC, 04400" -PUMA "NC, 04500" -PUMA "NC, 04600" -PUMA "NC, 04700" -PUMA "NC, 04800" -PUMA "NC, 04900" -PUMA "NC, 05001" -PUMA "NC, 05002" -PUMA "NC, 05003" -PUMA "NC, 05100" -PUMA "NC, 05200" -PUMA "NC, 05300" -PUMA "NC, 05400" -PUMA "ND, 00100" -PUMA "ND, 00200" -PUMA "ND, 00300" -PUMA "ND, 00400" -PUMA "ND, 00500" -PUMA "NE, 00100" -PUMA "NE, 00200" -PUMA "NE, 00300" -PUMA "NE, 00400" -PUMA "NE, 00500" -PUMA "NE, 00600" -PUMA "NE, 00701" -PUMA "NE, 00702" -PUMA "NE, 00801" -PUMA "NE, 00802" -PUMA "NE, 00901" -PUMA "NE, 00902" -PUMA "NE, 00903" -PUMA "NE, 00904" -PUMA "NH, 00100" -PUMA "NH, 00200" -PUMA "NH, 00300" -PUMA "NH, 00400" -PUMA "NH, 00500" -PUMA "NH, 00600" -PUMA "NH, 00700" -PUMA "NH, 00800" -PUMA "NH, 00900" -PUMA "NH, 01000" -PUMA "NJ, 00101" -PUMA "NJ, 00102" -PUMA "NJ, 00301" -PUMA "NJ, 00302" -PUMA "NJ, 00303" -PUMA "NJ, 00304" -PUMA "NJ, 00305" -PUMA "NJ, 00306" -PUMA "NJ, 00307" -PUMA "NJ, 00308" -PUMA "NJ, 00400" -PUMA "NJ, 00501" -PUMA "NJ, 00502" -PUMA "NJ, 00503" -PUMA "NJ, 00601" -PUMA "NJ, 00602" -PUMA "NJ, 00701" -PUMA "NJ, 00702" -PUMA "NJ, 00703" -PUMA "NJ, 00800" -PUMA "NJ, 00901" -PUMA "NJ, 00902" -PUMA "NJ, 00903" -PUMA "NJ, 00904" -PUMA "NJ, 00905" -PUMA "NJ, 00906" -PUMA "NJ, 00907" -PUMA "NJ, 01001" -PUMA "NJ, 01002" -PUMA "NJ, 01003" -PUMA "NJ, 01101" -PUMA "NJ, 01102" -PUMA "NJ, 01103" -PUMA "NJ, 01104" -PUMA "NJ, 01105" -PUMA "NJ, 01106" -PUMA "NJ, 01201" -PUMA "NJ, 01202" -PUMA "NJ, 01203" -PUMA "NJ, 01204" -PUMA "NJ, 01205" -PUMA "NJ, 01301" -PUMA "NJ, 01302" -PUMA "NJ, 01401" -PUMA "NJ, 01402" -PUMA "NJ, 01403" -PUMA "NJ, 01404" -PUMA "NJ, 01501" -PUMA "NJ, 01502" -PUMA "NJ, 01503" -PUMA "NJ, 01504" -PUMA "NJ, 01600" -PUMA "NJ, 01700" -PUMA "NJ, 01800" -PUMA "NJ, 01901" -PUMA "NJ, 01902" -PUMA "NJ, 01903" -PUMA "NJ, 01904" -PUMA "NJ, 02001" -PUMA "NJ, 02002" -PUMA "NJ, 02003" -PUMA "NJ, 02101" -PUMA "NJ, 02102" -PUMA "NJ, 02103" -PUMA "NJ, 02104" -PUMA "NJ, 02201" -PUMA "NJ, 02202" -PUMA "NJ, 02301" -PUMA "NJ, 02302" -PUMA "NJ, 02303" -PUMA "NJ, 02400" -PUMA "NJ, 02500" -PUMA "NJ, 02600" -PUMA "NM, 00100" -PUMA "NM, 00200" -PUMA "NM, 00300" -PUMA "NM, 00400" -PUMA "NM, 00500" -PUMA "NM, 00600" -PUMA "NM, 00700" -PUMA "NM, 00801" -PUMA "NM, 00802" -PUMA "NM, 00803" -PUMA "NM, 00804" -PUMA "NM, 00805" -PUMA "NM, 00806" -PUMA "NM, 00900" -PUMA "NM, 01001" -PUMA "NM, 01002" -PUMA "NM, 01100" -PUMA "NM, 01200" -PUMA "NV, 00101" -PUMA "NV, 00102" -PUMA "NV, 00103" -PUMA "NV, 00200" -PUMA "NV, 00300" -PUMA "NV, 00401" -PUMA "NV, 00402" -PUMA "NV, 00403" -PUMA "NV, 00404" -PUMA "NV, 00405" -PUMA "NV, 00406" -PUMA "NV, 00407" -PUMA "NV, 00408" -PUMA "NV, 00409" -PUMA "NV, 00410" -PUMA "NV, 00411" -PUMA "NV, 00412" -PUMA "NV, 00413" -PUMA "NY, 00100" -PUMA "NY, 00200" -PUMA "NY, 00300" -PUMA "NY, 00401" -PUMA "NY, 00402" -PUMA "NY, 00403" -PUMA "NY, 00500" -PUMA "NY, 00600" -PUMA "NY, 00701" -PUMA "NY, 00702" -PUMA "NY, 00703" -PUMA "NY, 00704" -PUMA "NY, 00800" -PUMA "NY, 00901" -PUMA "NY, 00902" -PUMA "NY, 00903" -PUMA "NY, 00904" -PUMA "NY, 00905" -PUMA "NY, 00906" -PUMA "NY, 01000" -PUMA "NY, 01101" -PUMA "NY, 01102" -PUMA "NY, 01201" -PUMA "NY, 01202" -PUMA "NY, 01203" -PUMA "NY, 01204" -PUMA "NY, 01205" -PUMA "NY, 01206" -PUMA "NY, 01207" -PUMA "NY, 01300" -PUMA "NY, 01400" -PUMA "NY, 01500" -PUMA "NY, 01600" -PUMA "NY, 01700" -PUMA "NY, 01801" -PUMA "NY, 01802" -PUMA "NY, 01900" -PUMA "NY, 02001" -PUMA "NY, 02002" -PUMA "NY, 02100" -PUMA "NY, 02201" -PUMA "NY, 02202" -PUMA "NY, 02203" -PUMA "NY, 02300" -PUMA "NY, 02401" -PUMA "NY, 02402" -PUMA "NY, 02500" -PUMA "NY, 02600" -PUMA "NY, 02701" -PUMA "NY, 02702" -PUMA "NY, 02801" -PUMA "NY, 02802" -PUMA "NY, 02901" -PUMA "NY, 02902" -PUMA "NY, 02903" -PUMA "NY, 03001" -PUMA "NY, 03002" -PUMA "NY, 03003" -PUMA "NY, 03101" -PUMA "NY, 03102" -PUMA "NY, 03103" -PUMA "NY, 03104" -PUMA "NY, 03105" -PUMA "NY, 03106" -PUMA "NY, 03107" -PUMA "NY, 03201" -PUMA "NY, 03202" -PUMA "NY, 03203" -PUMA "NY, 03204" -PUMA "NY, 03205" -PUMA "NY, 03206" -PUMA "NY, 03207" -PUMA "NY, 03208" -PUMA "NY, 03209" -PUMA "NY, 03210" -PUMA "NY, 03211" -PUMA "NY, 03212" -PUMA "NY, 03301" -PUMA "NY, 03302" -PUMA "NY, 03303" -PUMA "NY, 03304" -PUMA "NY, 03305" -PUMA "NY, 03306" -PUMA "NY, 03307" -PUMA "NY, 03308" -PUMA "NY, 03309" -PUMA "NY, 03310" -PUMA "NY, 03311" -PUMA "NY, 03312" -PUMA "NY, 03313" -PUMA "NY, 03701" -PUMA "NY, 03702" -PUMA "NY, 03703" -PUMA "NY, 03704" -PUMA "NY, 03705" -PUMA "NY, 03706" -PUMA "NY, 03707" -PUMA "NY, 03708" -PUMA "NY, 03709" -PUMA "NY, 03710" -PUMA "NY, 03801" -PUMA "NY, 03802" -PUMA "NY, 03803" -PUMA "NY, 03804" -PUMA "NY, 03805" -PUMA "NY, 03806" -PUMA "NY, 03807" -PUMA "NY, 03808" -PUMA "NY, 03809" -PUMA "NY, 03810" -PUMA "NY, 03901" -PUMA "NY, 03902" -PUMA "NY, 03903" -PUMA "NY, 04001" -PUMA "NY, 04002" -PUMA "NY, 04003" -PUMA "NY, 04004" -PUMA "NY, 04005" -PUMA "NY, 04006" -PUMA "NY, 04007" -PUMA "NY, 04008" -PUMA "NY, 04009" -PUMA "NY, 04010" -PUMA "NY, 04011" -PUMA "NY, 04012" -PUMA "NY, 04013" -PUMA "NY, 04014" -PUMA "NY, 04015" -PUMA "NY, 04016" -PUMA "NY, 04017" -PUMA "NY, 04018" -PUMA "NY, 04101" -PUMA "NY, 04102" -PUMA "NY, 04103" -PUMA "NY, 04104" -PUMA "NY, 04105" -PUMA "NY, 04106" -PUMA "NY, 04107" -PUMA "NY, 04108" -PUMA "NY, 04109" -PUMA "NY, 04110" -PUMA "NY, 04111" -PUMA "NY, 04112" -PUMA "NY, 04113" -PUMA "NY, 04114" -PUMA "OH, 00100" -PUMA "OH, 00200" -PUMA "OH, 00300" -PUMA "OH, 00400" -PUMA "OH, 00500" -PUMA "OH, 00600" -PUMA "OH, 00700" -PUMA "OH, 00801" -PUMA "OH, 00802" -PUMA "OH, 00901" -PUMA "OH, 00902" -PUMA "OH, 00903" -PUMA "OH, 00904" -PUMA "OH, 00905" -PUMA "OH, 00906" -PUMA "OH, 00907" -PUMA "OH, 00908" -PUMA "OH, 00909" -PUMA "OH, 00910" -PUMA "OH, 01000" -PUMA "OH, 01100" -PUMA "OH, 01200" -PUMA "OH, 01300" -PUMA "OH, 01400" -PUMA "OH, 01500" -PUMA "OH, 01600" -PUMA "OH, 01700" -PUMA "OH, 01801" -PUMA "OH, 01802" -PUMA "OH, 01803" -PUMA "OH, 01804" -PUMA "OH, 01805" -PUMA "OH, 01900" -PUMA "OH, 02000" -PUMA "OH, 02100" -PUMA "OH, 02200" -PUMA "OH, 02300" -PUMA "OH, 02400" -PUMA "OH, 02500" -PUMA "OH, 02600" -PUMA "OH, 02700" -PUMA "OH, 02800" -PUMA "OH, 02900" -PUMA "OH, 03000" -PUMA "OH, 03100" -PUMA "OH, 03200" -PUMA "OH, 03300" -PUMA "OH, 03400" -PUMA "OH, 03500" -PUMA "OH, 03600" -PUMA "OH, 03700" -PUMA "OH, 03800" -PUMA "OH, 03900" -PUMA "OH, 04000" -PUMA "OH, 04101" -PUMA "OH, 04102" -PUMA "OH, 04103" -PUMA "OH, 04104" -PUMA "OH, 04105" -PUMA "OH, 04106" -PUMA "OH, 04107" -PUMA "OH, 04108" -PUMA "OH, 04109" -PUMA "OH, 04110" -PUMA "OH, 04111" -PUMA "OH, 04200" -PUMA "OH, 04300" -PUMA "OH, 04400" -PUMA "OH, 04500" -PUMA "OH, 04601" -PUMA "OH, 04602" -PUMA "OH, 04603" -PUMA "OH, 04604" -PUMA "OH, 04700" -PUMA "OH, 04800" -PUMA "OH, 04900" -PUMA "OH, 05000" -PUMA "OH, 05100" -PUMA "OH, 05200" -PUMA "OH, 05301" -PUMA "OH, 05302" -PUMA "OH, 05401" -PUMA "OH, 05402" -PUMA "OH, 05403" -PUMA "OH, 05501" -PUMA "OH, 05502" -PUMA "OH, 05503" -PUMA "OH, 05504" -PUMA "OH, 05505" -PUMA "OH, 05506" -PUMA "OH, 05507" -PUMA "OH, 05600" -PUMA "OH, 05700" -PUMA "OK, 00100" -PUMA "OK, 00200" -PUMA "OK, 00300" -PUMA "OK, 00400" -PUMA "OK, 00500" -PUMA "OK, 00601" -PUMA "OK, 00602" -PUMA "OK, 00701" -PUMA "OK, 00702" -PUMA "OK, 00800" -PUMA "OK, 00900" -PUMA "OK, 01001" -PUMA "OK, 01002" -PUMA "OK, 01003" -PUMA "OK, 01004" -PUMA "OK, 01005" -PUMA "OK, 01006" -PUMA "OK, 01101" -PUMA "OK, 01102" -PUMA "OK, 01201" -PUMA "OK, 01202" -PUMA "OK, 01203" -PUMA "OK, 01204" -PUMA "OK, 01301" -PUMA "OK, 01302" -PUMA "OK, 01400" -PUMA "OK, 01501" -PUMA "OK, 01601" -PUMA "OR, 00100" -PUMA "OR, 00200" -PUMA "OR, 00300" -PUMA "OR, 00400" -PUMA "OR, 00500" -PUMA "OR, 00600" -PUMA "OR, 00703" -PUMA "OR, 00704" -PUMA "OR, 00705" -PUMA "OR, 00800" -PUMA "OR, 00901" -PUMA "OR, 00902" -PUMA "OR, 01000" -PUMA "OR, 01103" -PUMA "OR, 01104" -PUMA "OR, 01105" -PUMA "OR, 01200" -PUMA "OR, 01301" -PUMA "OR, 01302" -PUMA "OR, 01303" -PUMA "OR, 01305" -PUMA "OR, 01314" -PUMA "OR, 01316" -PUMA "OR, 01317" -PUMA "OR, 01318" -PUMA "OR, 01319" -PUMA "OR, 01320" -PUMA "OR, 01321" -PUMA "OR, 01322" -PUMA "OR, 01323" -PUMA "OR, 01324" -PUMA "PA, 00101" -PUMA "PA, 00102" -PUMA "PA, 00200" -PUMA "PA, 00300" -PUMA "PA, 00400" -PUMA "PA, 00500" -PUMA "PA, 00600" -PUMA "PA, 00701" -PUMA "PA, 00702" -PUMA "PA, 00801" -PUMA "PA, 00802" -PUMA "PA, 00803" -PUMA "PA, 00900" -PUMA "PA, 01000" -PUMA "PA, 01100" -PUMA "PA, 01200" -PUMA "PA, 01300" -PUMA "PA, 01400" -PUMA "PA, 01501" -PUMA "PA, 01502" -PUMA "PA, 01600" -PUMA "PA, 01701" -PUMA "PA, 01702" -PUMA "PA, 01801" -PUMA "PA, 01802" -PUMA "PA, 01803" -PUMA "PA, 01804" -PUMA "PA, 01805" -PUMA "PA, 01806" -PUMA "PA, 01807" -PUMA "PA, 01900" -PUMA "PA, 02001" -PUMA "PA, 02002" -PUMA "PA, 02003" -PUMA "PA, 02100" -PUMA "PA, 02200" -PUMA "PA, 02301" -PUMA "PA, 02302" -PUMA "PA, 02401" -PUMA "PA, 02402" -PUMA "PA, 02500" -PUMA "PA, 02600" -PUMA "PA, 02701" -PUMA "PA, 02702" -PUMA "PA, 02703" -PUMA "PA, 02801" -PUMA "PA, 02802" -PUMA "PA, 02803" -PUMA "PA, 02901" -PUMA "PA, 02902" -PUMA "PA, 03001" -PUMA "PA, 03002" -PUMA "PA, 03003" -PUMA "PA, 03004" -PUMA "PA, 03101" -PUMA "PA, 03102" -PUMA "PA, 03103" -PUMA "PA, 03104" -PUMA "PA, 03105" -PUMA "PA, 03106" -PUMA "PA, 03201" -PUMA "PA, 03202" -PUMA "PA, 03203" -PUMA "PA, 03204" -PUMA "PA, 03205" -PUMA "PA, 03206" -PUMA "PA, 03207" -PUMA "PA, 03208" -PUMA "PA, 03209" -PUMA "PA, 03210" -PUMA "PA, 03211" -PUMA "PA, 03301" -PUMA "PA, 03302" -PUMA "PA, 03303" -PUMA "PA, 03304" -PUMA "PA, 03401" -PUMA "PA, 03402" -PUMA "PA, 03403" -PUMA "PA, 03404" -PUMA "PA, 03501" -PUMA "PA, 03502" -PUMA "PA, 03503" -PUMA "PA, 03504" -PUMA "PA, 03601" -PUMA "PA, 03602" -PUMA "PA, 03603" -PUMA "PA, 03701" -PUMA "PA, 03702" -PUMA "PA, 03800" -PUMA "PA, 03900" -PUMA "PA, 04001" -PUMA "PA, 04002" -PUMA "RI, 00101" -PUMA "RI, 00102" -PUMA "RI, 00103" -PUMA "RI, 00104" -PUMA "RI, 00201" -PUMA "RI, 00300" -PUMA "RI, 00400" -PUMA "SC, 00101" -PUMA "SC, 00102" -PUMA "SC, 00103" -PUMA "SC, 00104" -PUMA "SC, 00105" -PUMA "SC, 00200" -PUMA "SC, 00301" -PUMA "SC, 00302" -PUMA "SC, 00400" -PUMA "SC, 00501" -PUMA "SC, 00502" -PUMA "SC, 00601" -PUMA "SC, 00602" -PUMA "SC, 00603" -PUMA "SC, 00604" -PUMA "SC, 00605" -PUMA "SC, 00700" -PUMA "SC, 00800" -PUMA "SC, 00900" -PUMA "SC, 01000" -PUMA "SC, 01101" -PUMA "SC, 01102" -PUMA "SC, 01201" -PUMA "SC, 01202" -PUMA "SC, 01203" -PUMA "SC, 01204" -PUMA "SC, 01300" -PUMA "SC, 01400" -PUMA "SC, 01500" -PUMA "SC, 01600" -PUMA "SD, 00100" -PUMA "SD, 00200" -PUMA "SD, 00300" -PUMA "SD, 00400" -PUMA "SD, 00500" -PUMA "SD, 00600" -PUMA "TN, 00100" -PUMA "TN, 00200" -PUMA "TN, 00300" -PUMA "TN, 00400" -PUMA "TN, 00500" -PUMA "TN, 00600" -PUMA "TN, 00700" -PUMA "TN, 00800" -PUMA "TN, 00900" -PUMA "TN, 01000" -PUMA "TN, 01100" -PUMA "TN, 01200" -PUMA "TN, 01300" -PUMA "TN, 01400" -PUMA "TN, 01500" -PUMA "TN, 01601" -PUMA "TN, 01602" -PUMA "TN, 01603" -PUMA "TN, 01604" -PUMA "TN, 01700" -PUMA "TN, 01800" -PUMA "TN, 01900" -PUMA "TN, 02001" -PUMA "TN, 02002" -PUMA "TN, 02003" -PUMA "TN, 02100" -PUMA "TN, 02200" -PUMA "TN, 02300" -PUMA "TN, 02401" -PUMA "TN, 02402" -PUMA "TN, 02501" -PUMA "TN, 02502" -PUMA "TN, 02503" -PUMA "TN, 02504" -PUMA "TN, 02505" -PUMA "TN, 02600" -PUMA "TN, 02700" -PUMA "TN, 02800" -PUMA "TN, 02900" -PUMA "TN, 03000" -PUMA "TN, 03100" -PUMA "TN, 03201" -PUMA "TN, 03202" -PUMA "TN, 03203" -PUMA "TN, 03204" -PUMA "TN, 03205" -PUMA "TN, 03206" -PUMA "TN, 03207" -PUMA "TN, 03208" -PUMA "TX, 00100" -PUMA "TX, 00200" -PUMA "TX, 00300" -PUMA "TX, 00400" -PUMA "TX, 00501" -PUMA "TX, 00502" -PUMA "TX, 00600" -PUMA "TX, 00700" -PUMA "TX, 00800" -PUMA "TX, 00900" -PUMA "TX, 01000" -PUMA "TX, 01100" -PUMA "TX, 01200" -PUMA "TX, 01300" -PUMA "TX, 01400" -PUMA "TX, 01501" -PUMA "TX, 01502" -PUMA "TX, 01600" -PUMA "TX, 01700" -PUMA "TX, 01800" -PUMA "TX, 01901" -PUMA "TX, 01902" -PUMA "TX, 01903" -PUMA "TX, 01904" -PUMA "TX, 01905" -PUMA "TX, 01906" -PUMA "TX, 01907" -PUMA "TX, 02001" -PUMA "TX, 02002" -PUMA "TX, 02003" -PUMA "TX, 02004" -PUMA "TX, 02005" -PUMA "TX, 02006" -PUMA "TX, 02101" -PUMA "TX, 02102" -PUMA "TX, 02200" -PUMA "TX, 02301" -PUMA "TX, 02302" -PUMA "TX, 02303" -PUMA "TX, 02304" -PUMA "TX, 02305" -PUMA "TX, 02306" -PUMA "TX, 02307" -PUMA "TX, 02308" -PUMA "TX, 02309" -PUMA "TX, 02310" -PUMA "TX, 02311" -PUMA "TX, 02312" -PUMA "TX, 02313" -PUMA "TX, 02314" -PUMA "TX, 02315" -PUMA "TX, 02316" -PUMA "TX, 02317" -PUMA "TX, 02318" -PUMA "TX, 02319" -PUMA "TX, 02320" -PUMA "TX, 02321" -PUMA "TX, 02322" -PUMA "TX, 02400" -PUMA "TX, 02501" -PUMA "TX, 02502" -PUMA "TX, 02503" -PUMA "TX, 02504" -PUMA "TX, 02505" -PUMA "TX, 02506" -PUMA "TX, 02507" -PUMA "TX, 02508" -PUMA "TX, 02509" -PUMA "TX, 02510" -PUMA "TX, 02511" -PUMA "TX, 02512" -PUMA "TX, 02513" -PUMA "TX, 02514" -PUMA "TX, 02515" -PUMA "TX, 02516" -PUMA "TX, 02600" -PUMA "TX, 02700" -PUMA "TX, 02800" -PUMA "TX, 02900" -PUMA "TX, 03000" -PUMA "TX, 03100" -PUMA "TX, 03200" -PUMA "TX, 03301" -PUMA "TX, 03302" -PUMA "TX, 03303" -PUMA "TX, 03304" -PUMA "TX, 03305" -PUMA "TX, 03306" -PUMA "TX, 03400" -PUMA "TX, 03501" -PUMA "TX, 03502" -PUMA "TX, 03601" -PUMA "TX, 03602" -PUMA "TX, 03700" -PUMA "TX, 03801" -PUMA "TX, 03802" -PUMA "TX, 03900" -PUMA "TX, 04000" -PUMA "TX, 04100" -PUMA "TX, 04200" -PUMA "TX, 04301" -PUMA "TX, 04302" -PUMA "TX, 04400" -PUMA "TX, 04501" -PUMA "TX, 04502" -PUMA "TX, 04503" -PUMA "TX, 04504" -PUMA "TX, 04601" -PUMA "TX, 04602" -PUMA "TX, 04603" -PUMA "TX, 04604" -PUMA "TX, 04605" -PUMA "TX, 04606" -PUMA "TX, 04607" -PUMA "TX, 04608" -PUMA "TX, 04609" -PUMA "TX, 04610" -PUMA "TX, 04611" -PUMA "TX, 04612" -PUMA "TX, 04613" -PUMA "TX, 04614" -PUMA "TX, 04615" -PUMA "TX, 04616" -PUMA "TX, 04617" -PUMA "TX, 04618" -PUMA "TX, 04619" -PUMA "TX, 04620" -PUMA "TX, 04621" -PUMA "TX, 04622" -PUMA "TX, 04623" -PUMA "TX, 04624" -PUMA "TX, 04625" -PUMA "TX, 04626" -PUMA "TX, 04627" -PUMA "TX, 04628" -PUMA "TX, 04629" -PUMA "TX, 04630" -PUMA "TX, 04631" -PUMA "TX, 04632" -PUMA "TX, 04633" -PUMA "TX, 04634" -PUMA "TX, 04635" -PUMA "TX, 04636" -PUMA "TX, 04637" -PUMA "TX, 04638" -PUMA "TX, 04701" -PUMA "TX, 04702" -PUMA "TX, 04801" -PUMA "TX, 04802" -PUMA "TX, 04803" -PUMA "TX, 04901" -PUMA "TX, 04902" -PUMA "TX, 04903" -PUMA "TX, 04904" -PUMA "TX, 04905" -PUMA "TX, 05000" -PUMA "TX, 05100" -PUMA "TX, 05201" -PUMA "TX, 05202" -PUMA "TX, 05203" -PUMA "TX, 05204" -PUMA "TX, 05301" -PUMA "TX, 05302" -PUMA "TX, 05303" -PUMA "TX, 05304" -PUMA "TX, 05305" -PUMA "TX, 05306" -PUMA "TX, 05307" -PUMA "TX, 05308" -PUMA "TX, 05309" -PUMA "TX, 05400" -PUMA "TX, 05500" -PUMA "TX, 05600" -PUMA "TX, 05700" -PUMA "TX, 05800" -PUMA "TX, 05901" -PUMA "TX, 05902" -PUMA "TX, 05903" -PUMA "TX, 05904" -PUMA "TX, 05905" -PUMA "TX, 05906" -PUMA "TX, 05907" -PUMA "TX, 05908" -PUMA "TX, 05909" -PUMA "TX, 05910" -PUMA "TX, 05911" -PUMA "TX, 05912" -PUMA "TX, 05913" -PUMA "TX, 05914" -PUMA "TX, 05915" -PUMA "TX, 05916" -PUMA "TX, 06000" -PUMA "TX, 06100" -PUMA "TX, 06200" -PUMA "TX, 06301" -PUMA "TX, 06302" -PUMA "TX, 06400" -PUMA "TX, 06500" -PUMA "TX, 06601" -PUMA "TX, 06602" -PUMA "TX, 06603" -PUMA "TX, 06701" -PUMA "TX, 06702" -PUMA "TX, 06703" -PUMA "TX, 06801" -PUMA "TX, 06802" -PUMA "TX, 06803" -PUMA "TX, 06804" -PUMA "TX, 06805" -PUMA "TX, 06806" -PUMA "TX, 06807" -PUMA "TX, 06900" -PUMA "UT, 03001" -PUMA "UT, 05001" -PUMA "UT, 11001" -PUMA "UT, 11002" -PUMA "UT, 13001" -PUMA "UT, 21001" -PUMA "UT, 35001" -PUMA "UT, 35002" -PUMA "UT, 35003" -PUMA "UT, 35004" -PUMA "UT, 35005" -PUMA "UT, 35006" -PUMA "UT, 35007" -PUMA "UT, 35008" -PUMA "UT, 35009" -PUMA "UT, 49001" -PUMA "UT, 49002" -PUMA "UT, 49003" -PUMA "UT, 49004" -PUMA "UT, 53001" -PUMA "UT, 57001" -PUMA "UT, 57002" -PUMA "VA, 01301" -PUMA "VA, 01302" -PUMA "VA, 04101" -PUMA "VA, 04102" -PUMA "VA, 04103" -PUMA "VA, 10701" -PUMA "VA, 10702" -PUMA "VA, 10703" -PUMA "VA, 51010" -PUMA "VA, 51020" -PUMA "VA, 51040" -PUMA "VA, 51044" -PUMA "VA, 51045" -PUMA "VA, 51080" -PUMA "VA, 51084" -PUMA "VA, 51085" -PUMA "VA, 51087" -PUMA "VA, 51089" -PUMA "VA, 51090" -PUMA "VA, 51095" -PUMA "VA, 51096" -PUMA "VA, 51097" -PUMA "VA, 51105" -PUMA "VA, 51110" -PUMA "VA, 51115" -PUMA "VA, 51120" -PUMA "VA, 51125" -PUMA "VA, 51135" -PUMA "VA, 51145" -PUMA "VA, 51154" -PUMA "VA, 51155" -PUMA "VA, 51164" -PUMA "VA, 51165" -PUMA "VA, 51167" -PUMA "VA, 51175" -PUMA "VA, 51186" -PUMA "VA, 51206" -PUMA "VA, 51215" -PUMA "VA, 51224" -PUMA "VA, 51225" -PUMA "VA, 51235" -PUMA "VA, 51244" -PUMA "VA, 51245" -PUMA "VA, 51246" -PUMA "VA, 51255" -PUMA "VA, 55001" -PUMA "VA, 55002" -PUMA "VA, 59301" -PUMA "VA, 59302" -PUMA "VA, 59303" -PUMA "VA, 59304" -PUMA "VA, 59305" -PUMA "VA, 59306" -PUMA "VA, 59307" -PUMA "VA, 59308" -PUMA "VA, 59309" -PUMA "VT, 00100" -PUMA "VT, 00200" -PUMA "VT, 00300" -PUMA "VT, 00400" -PUMA "WA, 10100" -PUMA "WA, 10200" -PUMA "WA, 10300" -PUMA "WA, 10400" -PUMA "WA, 10501" -PUMA "WA, 10502" -PUMA "WA, 10503" -PUMA "WA, 10504" -PUMA "WA, 10600" -PUMA "WA, 10701" -PUMA "WA, 10702" -PUMA "WA, 10703" -PUMA "WA, 10800" -PUMA "WA, 10901" -PUMA "WA, 10902" -PUMA "WA, 11000" -PUMA "WA, 11101" -PUMA "WA, 11102" -PUMA "WA, 11103" -PUMA "WA, 11104" -PUMA "WA, 11200" -PUMA "WA, 11300" -PUMA "WA, 11401" -PUMA "WA, 11402" -PUMA "WA, 11501" -PUMA "WA, 11502" -PUMA "WA, 11503" -PUMA "WA, 11504" -PUMA "WA, 11505" -PUMA "WA, 11506" -PUMA "WA, 11507" -PUMA "WA, 11601" -PUMA "WA, 11602" -PUMA "WA, 11603" -PUMA "WA, 11604" -PUMA "WA, 11605" -PUMA "WA, 11606" -PUMA "WA, 11607" -PUMA "WA, 11608" -PUMA "WA, 11609" -PUMA "WA, 11610" -PUMA "WA, 11611" -PUMA "WA, 11612" -PUMA "WA, 11613" -PUMA "WA, 11614" -PUMA "WA, 11615" -PUMA "WA, 11616" -PUMA "WA, 11701" -PUMA "WA, 11702" -PUMA "WA, 11703" -PUMA "WA, 11704" -PUMA "WA, 11705" -PUMA "WA, 11706" -PUMA "WA, 11801" -PUMA "WA, 11802" -PUMA "WA, 11900" -PUMA "WI, 00100" -PUMA "WI, 00101" -PUMA "WI, 00102" -PUMA "WI, 00103" -PUMA "WI, 00200" -PUMA "WI, 00300" -PUMA "WI, 00600" -PUMA "WI, 00700" -PUMA "WI, 00800" -PUMA "WI, 00900" -PUMA "WI, 01000" -PUMA "WI, 01001" -PUMA "WI, 01300" -PUMA "WI, 01301" -PUMA "WI, 01400" -PUMA "WI, 01401" -PUMA "WI, 01500" -PUMA "WI, 01501" -PUMA "WI, 01600" -PUMA "WI, 01601" -PUMA "WI, 02400" -PUMA "WI, 02500" -PUMA "WI, 10000" -PUMA "WI, 20000" -PUMA "WI, 30000" -PUMA "WI, 40101" -PUMA "WI, 40301" -PUMA "WI, 40701" -PUMA "WI, 41001" -PUMA "WI, 41002" -PUMA "WI, 41003" -PUMA "WI, 41004" -PUMA "WI, 41005" -PUMA "WI, 50000" -PUMA "WI, 55101" -PUMA "WI, 55102" -PUMA "WI, 55103" -PUMA "WI, 70101" -PUMA "WI, 70201" -PUMA "WI, 70301" -PUMA "WV, 00100" -PUMA "WV, 00200" -PUMA "WV, 00300" -PUMA "WV, 00400" -PUMA "WV, 00500" -PUMA "WV, 00600" -PUMA "WV, 00700" -PUMA "WV, 00800" -PUMA "WV, 00900" -PUMA "WV, 01000" -PUMA "WV, 01100" -PUMA "WV, 01200" -PUMA "WV, 01300" -PUMA "WY, 00100" -PUMA "WY, 00200" -PUMA "WY, 00300" -PUMA "WY, 00400" -PUMA "WY, 00500" -PUMA Metro Status "In metro area, not/partially in principal city" -PUMA Metro Status "In metro area, principal city" -PUMA Metro Status Not/partially in metro area -PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 -PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 -PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 -PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 -PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 -PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 -PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 -PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 -PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch -Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 -Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 -Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 -Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 -Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 -Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 -Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 -Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false -Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false -Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false -Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false -Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false -Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false -Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false -Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false -Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false -Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false -Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false -Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false -Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false -Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false -Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false -Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false -Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false -Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false -Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false -Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false -Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false -Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false -Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false -Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false -Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false -Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false -Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false -Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false -Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false -Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false -Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false -Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false -Power Outage Summer ResStockArguments schedules_power_outage_period=Jul 1 5 - Jul 31 14 schedules_power_outage_window_natvent_availability=always available -REEDS Balancing Area 1 -REEDS Balancing Area 10 -REEDS Balancing Area 100 -REEDS Balancing Area 101 -REEDS Balancing Area 102 -REEDS Balancing Area 103 -REEDS Balancing Area 104 -REEDS Balancing Area 105 -REEDS Balancing Area 106 -REEDS Balancing Area 107 -REEDS Balancing Area 108 -REEDS Balancing Area 109 -REEDS Balancing Area 11 -REEDS Balancing Area 110 -REEDS Balancing Area 111 -REEDS Balancing Area 112 -REEDS Balancing Area 113 -REEDS Balancing Area 114 -REEDS Balancing Area 115 -REEDS Balancing Area 116 -REEDS Balancing Area 117 -REEDS Balancing Area 118 -REEDS Balancing Area 119 -REEDS Balancing Area 12 -REEDS Balancing Area 120 -REEDS Balancing Area 121 -REEDS Balancing Area 122 -REEDS Balancing Area 123 -REEDS Balancing Area 124 -REEDS Balancing Area 125 -REEDS Balancing Area 126 -REEDS Balancing Area 127 -REEDS Balancing Area 128 -REEDS Balancing Area 129 -REEDS Balancing Area 13 -REEDS Balancing Area 130 -REEDS Balancing Area 131 -REEDS Balancing Area 132 -REEDS Balancing Area 133 -REEDS Balancing Area 134 -REEDS Balancing Area 14 -REEDS Balancing Area 15 -REEDS Balancing Area 16 -REEDS Balancing Area 17 -REEDS Balancing Area 18 -REEDS Balancing Area 19 -REEDS Balancing Area 2 -REEDS Balancing Area 20 -REEDS Balancing Area 21 -REEDS Balancing Area 22 -REEDS Balancing Area 23 -REEDS Balancing Area 24 -REEDS Balancing Area 25 -REEDS Balancing Area 26 -REEDS Balancing Area 27 -REEDS Balancing Area 28 -REEDS Balancing Area 29 -REEDS Balancing Area 3 -REEDS Balancing Area 30 -REEDS Balancing Area 31 -REEDS Balancing Area 32 -REEDS Balancing Area 33 -REEDS Balancing Area 34 -REEDS Balancing Area 35 -REEDS Balancing Area 36 -REEDS Balancing Area 37 -REEDS Balancing Area 38 -REEDS Balancing Area 39 -REEDS Balancing Area 4 -REEDS Balancing Area 40 -REEDS Balancing Area 41 -REEDS Balancing Area 42 -REEDS Balancing Area 43 -REEDS Balancing Area 44 -REEDS Balancing Area 45 -REEDS Balancing Area 46 -REEDS Balancing Area 47 -REEDS Balancing Area 48 -REEDS Balancing Area 49 -REEDS Balancing Area 5 -REEDS Balancing Area 50 -REEDS Balancing Area 51 -REEDS Balancing Area 52 -REEDS Balancing Area 53 -REEDS Balancing Area 54 -REEDS Balancing Area 55 -REEDS Balancing Area 56 -REEDS Balancing Area 57 -REEDS Balancing Area 58 -REEDS Balancing Area 59 -REEDS Balancing Area 6 -REEDS Balancing Area 60 -REEDS Balancing Area 61 -REEDS Balancing Area 62 -REEDS Balancing Area 63 -REEDS Balancing Area 64 -REEDS Balancing Area 65 -REEDS Balancing Area 66 -REEDS Balancing Area 67 -REEDS Balancing Area 68 -REEDS Balancing Area 69 -REEDS Balancing Area 7 -REEDS Balancing Area 70 -REEDS Balancing Area 71 -REEDS Balancing Area 72 -REEDS Balancing Area 73 -REEDS Balancing Area 74 -REEDS Balancing Area 75 -REEDS Balancing Area 76 -REEDS Balancing Area 77 -REEDS Balancing Area 78 -REEDS Balancing Area 79 -REEDS Balancing Area 8 -REEDS Balancing Area 80 -REEDS Balancing Area 81 -REEDS Balancing Area 82 -REEDS Balancing Area 83 -REEDS Balancing Area 84 -REEDS Balancing Area 85 -REEDS Balancing Area 86 -REEDS Balancing Area 87 -REEDS Balancing Area 88 -REEDS Balancing Area 89 -REEDS Balancing Area 9 -REEDS Balancing Area 90 -REEDS Balancing Area 91 -REEDS Balancing Area 92 -REEDS Balancing Area 93 -REEDS Balancing Area 94 -REEDS Balancing Area 95 -REEDS Balancing Area 96 -REEDS Balancing Area 97 -REEDS Balancing Area 98 -REEDS Balancing Area 99 -REEDS Balancing Area None -Radiant Barrier No ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 -Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto -Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 -Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 -Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 -Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 -Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 -Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 -Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 -Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 -Refrigerator Void -Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 -Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 -Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium -Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 -State AK ResStockArguments site_state_code=AK -State AL ResStockArguments site_state_code=AL -State AR ResStockArguments site_state_code=AR -State AZ ResStockArguments site_state_code=AZ -State CA ResStockArguments site_state_code=CA -State CO ResStockArguments site_state_code=CO -State CT ResStockArguments site_state_code=CT -State DC ResStockArguments site_state_code=DC -State DE ResStockArguments site_state_code=DE -State FL ResStockArguments site_state_code=FL -State GA ResStockArguments site_state_code=GA -State HI ResStockArguments site_state_code=HI -State IA ResStockArguments site_state_code=IA -State ID ResStockArguments site_state_code=ID -State IL ResStockArguments site_state_code=IL -State IN ResStockArguments site_state_code=IN -State KS ResStockArguments site_state_code=KS -State KY ResStockArguments site_state_code=KY -State LA ResStockArguments site_state_code=LA -State MA ResStockArguments site_state_code=MA -State MD ResStockArguments site_state_code=MD -State ME ResStockArguments site_state_code=ME -State MI ResStockArguments site_state_code=MI -State MN ResStockArguments site_state_code=MN -State MO ResStockArguments site_state_code=MO -State MS ResStockArguments site_state_code=MS -State MT ResStockArguments site_state_code=MT -State NC ResStockArguments site_state_code=NC -State ND ResStockArguments site_state_code=ND -State NE ResStockArguments site_state_code=NE -State NH ResStockArguments site_state_code=NH -State NJ ResStockArguments site_state_code=NJ -State NM ResStockArguments site_state_code=NM -State NV ResStockArguments site_state_code=NV -State NY ResStockArguments site_state_code=NY -State OH ResStockArguments site_state_code=OH -State OK ResStockArguments site_state_code=OK -State OR ResStockArguments site_state_code=OR -State PA ResStockArguments site_state_code=PA -State RI ResStockArguments site_state_code=RI -State SC ResStockArguments site_state_code=SC -State SD ResStockArguments site_state_code=SD -State TN ResStockArguments site_state_code=TN -State TX ResStockArguments site_state_code=TX -State UT ResStockArguments site_state_code=UT -State VA ResStockArguments site_state_code=VA -State VT ResStockArguments site_state_code=VT -State WA ResStockArguments site_state_code=WA -State WI ResStockArguments site_state_code=WI -State WV ResStockArguments site_state_code=WV -State WY ResStockArguments site_state_code=WY -Storm Windows Clear ResStockArguments window_storm_type=clear -Storm Windows Low-E ResStockArguments window_storm_type=low-e -Tenure Not Available -Tenure Owner -Tenure Renter -Usage Level Average -Usage Level High -Usage Level Low -Usage Level Medium -Vacancy Status Occupied -Vacancy Status Vacant ResStockArguments schedules_vacancy_period=Jan 1 - Dec 31 -Vintage 1940s ResStockArguments vintage=1940s year_built=auto -Vintage 1950s ResStockArguments vintage=1950s year_built=auto -Vintage 1960s ResStockArguments vintage=1960s year_built=auto -Vintage 1970s ResStockArguments vintage=1970s year_built=auto -Vintage 1980s ResStockArguments vintage=1980s year_built=auto -Vintage 1990s ResStockArguments vintage=1990s year_built=auto -Vintage 2000s ResStockArguments vintage=2000s year_built=auto -Vintage 2010s ResStockArguments vintage=2010s year_built=auto -Vintage <1940 ResStockArguments vintage=<1940 year_built=auto -Vintage <1950 ResStockArguments vintage=<1950 year_built=auto -Vintage ACS 1940-59 -Vintage ACS 1960-79 -Vintage ACS 1980-99 -Vintage ACS 2000-09 -Vintage ACS 2010s -Vintage ACS <1940 -Water Heater Efficiency "Electric Heat Pump, 50 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto -Water Heater Fuel Electricity -Water Heater Fuel Fuel Oil -Water Heater Fuel Natural Gas -Water Heater Fuel Other Fuel -Water Heater Fuel Propane -Water Heater In Unit No -Water Heater In Unit Yes -Water Heater Location Attic ResStockArguments water_heater_location=attic -Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace -Water Heater Location Garage ResStockArguments water_heater_location=garage -Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned -Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space -Water Heater Location None -Water Heater Location Outside ResStockArguments water_heater_location=other exterior -Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned -Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 -Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto -Windows Void -Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=other fuel -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true -HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true -HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 60% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 76% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 80% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, 92.5% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_compressor_lockout_temp=-20 heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +Parameter Name Option Name Measure Dir Measure Arg 1 Measure Arg 2 ... +AHS Region "CBSA Atlanta-Sandy Springs-Roswell, GA" +AHS Region "CBSA Boston-Cambridge-Newton, MA-NH" +AHS Region "CBSA Chicago-Naperville-Elgin, IL-IN-WI" +AHS Region "CBSA Dallas-Fort Worth-Arlington, TX" +AHS Region "CBSA Detroit-Warren-Dearborn, MI" +AHS Region "CBSA Houston-The Woodlands-Sugar Land, TX" +AHS Region "CBSA Los Angeles-Long Beach-Anaheim, CA" +AHS Region "CBSA Miami-Fort Lauderdale-West Palm Beach, FL" +AHS Region "CBSA New York-Newark-Jersey City, NY-NJ-PA" +AHS Region "CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD" +AHS Region "CBSA Phoenix-Mesa-Scottsdale, AZ" +AHS Region "CBSA Riverside-San Bernardino-Ontario, CA" +AHS Region "CBSA San Francisco-Oakland-Hayward, CA" +AHS Region "CBSA Seattle-Tacoma-Bellevue, WA" +AHS Region "CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV" +AHS Region Non-CBSA East North Central +AHS Region Non-CBSA East South Central +AHS Region Non-CBSA Middle Atlantic +AHS Region Non-CBSA Mountain +AHS Region Non-CBSA New England +AHS Region Non-CBSA Pacific +AHS Region Non-CBSA South Atlantic +AHS Region Non-CBSA West North Central +AHS Region Non-CBSA West South Central +AIANNH Area No +AIANNH Area Yes +ASHRAE IECC Climate Zone 2004 1A ResStockArguments site_iecc_zone=1A site_type=auto +ASHRAE IECC Climate Zone 2004 2A ResStockArguments site_iecc_zone=2A site_type=auto +ASHRAE IECC Climate Zone 2004 2B ResStockArguments site_iecc_zone=2B site_type=auto +ASHRAE IECC Climate Zone 2004 3A ResStockArguments site_iecc_zone=3A site_type=auto +ASHRAE IECC Climate Zone 2004 3B ResStockArguments site_iecc_zone=3B site_type=auto +ASHRAE IECC Climate Zone 2004 3C ResStockArguments site_iecc_zone=3C site_type=auto +ASHRAE IECC Climate Zone 2004 4A ResStockArguments site_iecc_zone=4A site_type=auto +ASHRAE IECC Climate Zone 2004 4B ResStockArguments site_iecc_zone=4B site_type=auto +ASHRAE IECC Climate Zone 2004 4C ResStockArguments site_iecc_zone=4C site_type=auto +ASHRAE IECC Climate Zone 2004 5A ResStockArguments site_iecc_zone=5A site_type=auto +ASHRAE IECC Climate Zone 2004 5B ResStockArguments site_iecc_zone=5B site_type=auto +ASHRAE IECC Climate Zone 2004 6A ResStockArguments site_iecc_zone=6A site_type=auto +ASHRAE IECC Climate Zone 2004 6B ResStockArguments site_iecc_zone=6B site_type=auto +ASHRAE IECC Climate Zone 2004 7A ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7AK ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 7B ResStockArguments site_iecc_zone=7 site_type=auto +ASHRAE IECC Climate Zone 2004 8AK ResStockArguments site_iecc_zone=8 site_type=auto +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - FL, GA, AL, MS" +ASHRAE IECC Climate Zone 2004 - 2A Split "2A - TX, LA" +ASHRAE IECC Climate Zone 2004 - 2A Split 1A +ASHRAE IECC Climate Zone 2004 - 2A Split 2B +ASHRAE IECC Climate Zone 2004 - 2A Split 3A +ASHRAE IECC Climate Zone 2004 - 2A Split 3B +ASHRAE IECC Climate Zone 2004 - 2A Split 3C +ASHRAE IECC Climate Zone 2004 - 2A Split 4A +ASHRAE IECC Climate Zone 2004 - 2A Split 4B +ASHRAE IECC Climate Zone 2004 - 2A Split 4C +ASHRAE IECC Climate Zone 2004 - 2A Split 5A +ASHRAE IECC Climate Zone 2004 - 2A Split 5B +ASHRAE IECC Climate Zone 2004 - 2A Split 6A +ASHRAE IECC Climate Zone 2004 - 2A Split 6B +ASHRAE IECC Climate Zone 2004 - 2A Split 7A +ASHRAE IECC Climate Zone 2004 - 2A Split 7AK +ASHRAE IECC Climate Zone 2004 - 2A Split 7B +ASHRAE IECC Climate Zone 2004 - 2A Split 8AK +Area Median Income 0-30% +Area Median Income 100-120% +Area Median Income 120-150% +Area Median Income 150%+ +Area Median Income 30-60% +Area Median Income 60-80% +Area Median Income 80-100% +Area Median Income Not Available +Bathroom Spot Vent Hour Hour0 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=0 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour1 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=1 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour10 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=10 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour11 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=11 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour12 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=12 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour13 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=13 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour14 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=14 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour15 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=15 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour16 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=16 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour17 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=17 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour18 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=18 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour19 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=19 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour2 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=2 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour20 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=20 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour21 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=21 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour22 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=22 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour23 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=23 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour3 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=3 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour4 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=4 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour5 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=5 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour6 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=6 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour7 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=7 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour8 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=8 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Bathroom Spot Vent Hour Hour9 ResStockArguments bathroom_fans_quantity=auto bathroom_fans_start_hour=9 bathroom_fans_flow_rate=auto bathroom_fans_hours_in_operation=auto bathroom_fans_power=auto +Battery "20 kWh, 80% Round Trip Efficiency" ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=0.8 +Battery "20 kWh, Garage" ResStockArguments battery_present=true battery_location=garage battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery "20 kWh, Outside" ResStockArguments battery_present=true battery_location=outside battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery 10 kWh ResStockArguments battery_present=true battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Battery None ResStockArguments battery_present=false battery_location=auto battery_power=auto battery_capacity=auto battery_usable_capacity=auto battery_round_trip_efficiency=auto +Bedrooms 1 ResStockArguments geometry_unit_num_bedrooms=1 geometry_unit_num_bathrooms=auto +Bedrooms 2 ResStockArguments geometry_unit_num_bedrooms=2 geometry_unit_num_bathrooms=auto +Bedrooms 3 ResStockArguments geometry_unit_num_bedrooms=3 geometry_unit_num_bathrooms=auto +Bedrooms 4 ResStockArguments geometry_unit_num_bedrooms=4 geometry_unit_num_bathrooms=auto +Bedrooms 5 ResStockArguments geometry_unit_num_bedrooms=5 geometry_unit_num_bathrooms=auto +Building America Climate Zone Cold +Building America Climate Zone Hot-Dry +Building America Climate Zone Hot-Humid +Building America Climate Zone Marine +Building America Climate Zone Mixed-Dry +Building America Climate Zone Mixed-Humid +Building America Climate Zone Subarctic +Building America Climate Zone Very Cold +CEC Climate Zone 1 +CEC Climate Zone 10 +CEC Climate Zone 11 +CEC Climate Zone 12 +CEC Climate Zone 13 +CEC Climate Zone 14 +CEC Climate Zone 15 +CEC Climate Zone 16 +CEC Climate Zone 2 +CEC Climate Zone 3 +CEC Climate Zone 4 +CEC Climate Zone 5 +CEC Climate Zone 6 +CEC Climate Zone 7 +CEC Climate Zone 8 +CEC Climate Zone 9 +CEC Climate Zone None +Ceiling Fan "Premium Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, 0.5F Offset" ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0.5 +Ceiling Fan "Standard Efficiency, No usage" ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan None ResStockArguments ceiling_fan_present=false ceiling_fan_efficiency=0 ceiling_fan_quantity=0 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Premium Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=140.8 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Ceiling Fan Standard Efficiency ResStockArguments ceiling_fan_present=true ceiling_fan_efficiency=70.4 ceiling_fan_quantity=1 ceiling_fan_cooling_setpoint_temp_offset=0 +Census Division East North Central +Census Division East South Central +Census Division Middle Atlantic +Census Division Mountain +Census Division New England +Census Division Pacific +Census Division South Atlantic +Census Division West North Central +Census Division West South Central +Census Division RECS East North Central +Census Division RECS East South Central +Census Division RECS Middle Atlantic +Census Division RECS Mountain North +Census Division RECS Mountain South +Census Division RECS New England +Census Division RECS Pacific +Census Division RECS South Atlantic +Census Division RECS West North Central +Census Division RECS West South Central +Census Region Midwest +Census Region Northeast +Census Region South +Census Region West +City "AK, Anchorage" +City "AL, Auburn" +City "AL, Birmingham" +City "AL, Decatur" +City "AL, Dothan" +City "AL, Florence" +City "AL, Gadsden" +City "AL, Hoover" +City "AL, Huntsville" +City "AL, Madison" +City "AL, Mobile" +City "AL, Montgomery" +City "AL, Phenix City" +City "AL, Tuscaloosa" +City "AR, Bentonville" +City "AR, Conway" +City "AR, Fayetteville" +City "AR, Fort Smith" +City "AR, Hot Springs" +City "AR, Jonesboro" +City "AR, Little Rock" +City "AR, North Little Rock" +City "AR, Pine Bluff" +City "AR, Rogers" +City "AR, Springdale" +City "AZ, Apache Junction" +City "AZ, Avondale" +City "AZ, Buckeye" +City "AZ, Bullhead City" +City "AZ, Casa Grande" +City "AZ, Casas Adobes" +City "AZ, Catalina Foothills" +City "AZ, Chandler" +City "AZ, Flagstaff" +City "AZ, Fortuna Foothills" +City "AZ, Gilbert" +City "AZ, Glendale" +City "AZ, Goodyear" +City "AZ, Green Valley" +City "AZ, Lake Havasu City" +City "AZ, Marana" +City "AZ, Maricopa" +City "AZ, Mesa" +City "AZ, Oro Valley" +City "AZ, Peoria" +City "AZ, Phoenix" +City "AZ, Prescott Valley" +City "AZ, Prescott" +City "AZ, San Tan Valley" +City "AZ, Scottsdale" +City "AZ, Sierra Vista" +City "AZ, Sun City West" +City "AZ, Sun City" +City "AZ, Surprise" +City "AZ, Tempe" +City "AZ, Tucson" +City "AZ, Yuma" +City "CA, Alameda" +City "CA, Alhambra" +City "CA, Aliso Viejo" +City "CA, Altadena" +City "CA, Anaheim" +City "CA, Antioch" +City "CA, Apple Valley" +City "CA, Arcadia" +City "CA, Arden-Arcade" +City "CA, Bakersfield" +City "CA, Baldwin Park" +City "CA, Bellflower" +City "CA, Berkeley" +City "CA, Beverly Hills" +City "CA, Brea" +City "CA, Brentwood" +City "CA, Buena Park" +City "CA, Burbank" +City "CA, Camarillo" +City "CA, Campbell" +City "CA, Carlsbad" +City "CA, Carmichael" +City "CA, Carson" +City "CA, Castro Valley" +City "CA, Cathedral City" +City "CA, Cerritos" +City "CA, Chico" +City "CA, Chino Hills" +City "CA, Chino" +City "CA, Chula Vista" +City "CA, Citrus Heights" +City "CA, Clovis" +City "CA, Colton" +City "CA, Compton" +City "CA, Concord" +City "CA, Corona" +City "CA, Costa Mesa" +City "CA, Covina" +City "CA, Culver City" +City "CA, Cupertino" +City "CA, Cypress" +City "CA, Daly City" +City "CA, Dana Point" +City "CA, Danville" +City "CA, Davis" +City "CA, Diamond Bar" +City "CA, Downey" +City "CA, Dublin" +City "CA, East Los Angeles" +City "CA, El Cajon" +City "CA, El Dorado Hills" +City "CA, El Monte" +City "CA, Elk Grove" +City "CA, Encinitas" +City "CA, Escondido" +City "CA, Fairfield" +City "CA, Florence-Graham" +City "CA, Florin" +City "CA, Folsom" +City "CA, Fontana" +City "CA, Fountain Valley" +City "CA, Fremont" +City "CA, Fresno" +City "CA, Fullerton" +City "CA, Garden Grove" +City "CA, Gardena" +City "CA, Gilroy" +City "CA, Glendale" +City "CA, Glendora" +City "CA, Hacienda Heights" +City "CA, Hanford" +City "CA, Hawthorne" +City "CA, Hayward" +City "CA, Hemet" +City "CA, Hesperia" +City "CA, Highland" +City "CA, Huntington Beach" +City "CA, Huntington Park" +City "CA, Indio" +City "CA, Inglewood" +City "CA, Irvine" +City "CA, La Habra" +City "CA, La Mesa" +City "CA, La Quinta" +City "CA, Laguna Niguel" +City "CA, Lake Elsinore" +City "CA, Lake Forest" +City "CA, Lakewood" +City "CA, Lancaster" +City "CA, Lincoln" +City "CA, Livermore" +City "CA, Lodi" +City "CA, Long Beach" +City "CA, Los Angeles" +City "CA, Lynwood" +City "CA, Madera" +City "CA, Manhattan Beach" +City "CA, Manteca" +City "CA, Martinez" +City "CA, Menifee" +City "CA, Merced" +City "CA, Milpitas" +City "CA, Mission Viejo" +City "CA, Modesto" +City "CA, Montebello" +City "CA, Monterey Park" +City "CA, Moreno Valley" +City "CA, Mountain View" +City "CA, Murrieta" +City "CA, Napa" +City "CA, National City" +City "CA, Newport Beach" +City "CA, North Highlands" +City "CA, Norwalk" +City "CA, Novato" +City "CA, Oakland" +City "CA, Oceanside" +City "CA, Ontario" +City "CA, Orange" +City "CA, Oxnard" +City "CA, Palm Desert" +City "CA, Palm Springs" +City "CA, Palmdale" +City "CA, Palo Alto" +City "CA, Pasadena" +City "CA, Perris" +City "CA, Petaluma" +City "CA, Pico Rivera" +City "CA, Pittsburg" +City "CA, Placentia" +City "CA, Pleasanton" +City "CA, Pomona" +City "CA, Porterville" +City "CA, Poway" +City "CA, Rancho Cordova" +City "CA, Rancho Cucamonga" +City "CA, Rancho Palos Verdes" +City "CA, Rancho Santa Margarita" +City "CA, Redding" +City "CA, Redlands" +City "CA, Redondo Beach" +City "CA, Redwood City" +City "CA, Rialto" +City "CA, Richmond" +City "CA, Riverside" +City "CA, Rocklin" +City "CA, Rohnert Park" +City "CA, Rosemead" +City "CA, Roseville" +City "CA, Rowland Heights" +City "CA, Sacramento" +City "CA, Salinas" +City "CA, San Bernardino" +City "CA, San Bruno" +City "CA, San Buenaventura Ventura" +City "CA, San Clemente" +City "CA, San Diego" +City "CA, San Francisco" +City "CA, San Jose" +City "CA, San Leandro" +City "CA, San Luis Obispo" +City "CA, San Marcos" +City "CA, San Mateo" +City "CA, San Rafael" +City "CA, San Ramon" +City "CA, Santa Ana" +City "CA, Santa Barbara" +City "CA, Santa Clara" +City "CA, Santa Clarita" +City "CA, Santa Cruz" +City "CA, Santa Maria" +City "CA, Santa Monica" +City "CA, Santa Rosa" +City "CA, Santee" +City "CA, Simi Valley" +City "CA, South Gate" +City "CA, South Lake Tahoe" +City "CA, South San Francisco" +City "CA, South Whittier" +City "CA, Stockton" +City "CA, Sunnyvale" +City "CA, Temecula" +City "CA, Thousand Oaks" +City "CA, Torrance" +City "CA, Tracy" +City "CA, Tulare" +City "CA, Turlock" +City "CA, Tustin" +City "CA, Union City" +City "CA, Upland" +City "CA, Vacaville" +City "CA, Vallejo" +City "CA, Victorville" +City "CA, Visalia" +City "CA, Vista" +City "CA, Walnut Creek" +City "CA, West Covina" +City "CA, West Hollywood" +City "CA, West Sacramento" +City "CA, Westminster" +City "CA, Whittier" +City "CA, Woodland" +City "CA, Yorba Linda" +City "CA, Yuba City" +City "CA, Yucaipa" +City "CO, Arvada" +City "CO, Aurora" +City "CO, Boulder" +City "CO, Broomfield" +City "CO, Castle Rock" +City "CO, Centennial" +City "CO, Colorado Springs" +City "CO, Commerce City" +City "CO, Denver" +City "CO, Englewood" +City "CO, Fort Collins" +City "CO, Grand Junction" +City "CO, Greeley" +City "CO, Highlands Ranch" +City "CO, Lakewood" +City "CO, Littleton" +City "CO, Longmont" +City "CO, Loveland" +City "CO, Parker" +City "CO, Pueblo" +City "CO, Thornton" +City "CO, Westminster" +City "CT, Bridgeport" +City "CT, Bristol" +City "CT, Danbury" +City "CT, East Hartford" +City "CT, Hartford" +City "CT, Meriden" +City "CT, Middletown" +City "CT, Milford City Balance" +City "CT, New Britain" +City "CT, New Haven" +City "CT, Norwalk" +City "CT, Norwich" +City "CT, Shelton" +City "CT, Stamford" +City "CT, Stratford" +City "CT, Torrington" +City "CT, Waterbury" +City "CT, West Hartford" +City "CT, West Haven" +City "DC, Washington" +City "DE, Dover" +City "DE, Wilmington" +City "FL, Alafaya" +City "FL, Altamonte Springs" +City "FL, Apopka" +City "FL, Aventura" +City "FL, Boca Raton" +City "FL, Bonita Springs" +City "FL, Boynton Beach" +City "FL, Bradenton" +City "FL, Brandon" +City "FL, Cape Coral" +City "FL, Carrollwood" +City "FL, Clearwater" +City "FL, Coconut Creek" +City "FL, Coral Gables" +City "FL, Coral Springs" +City "FL, Country Club" +City "FL, Dania Beach" +City "FL, Davie" +City "FL, Daytona Beach" +City "FL, Deerfield Beach" +City "FL, Delray Beach" +City "FL, Deltona" +City "FL, Doral" +City "FL, Dunedin" +City "FL, East Lake" +City "FL, Estero" +City "FL, Fort Lauderdale" +City "FL, Fort Myers" +City "FL, Fort Pierce" +City "FL, Fountainebleau" +City "FL, Four Corners" +City "FL, Gainesville" +City "FL, Greenacres" +City "FL, Hallandale Beach" +City "FL, Hialeah" +City "FL, Hollywood" +City "FL, Homestead" +City "FL, Jacksonville" +City "FL, Jupiter" +City "FL, Kendale Lakes" +City "FL, Kendall" +City "FL, Kissimmee" +City "FL, Lake Worth" +City "FL, Lakeland" +City "FL, Largo" +City "FL, Lauderhill" +City "FL, Lehigh Acres" +City "FL, Marco Island" +City "FL, Margate" +City "FL, Melbourne" +City "FL, Merritt Island" +City "FL, Miami Beach" +City "FL, Miami Gardens" +City "FL, Miami" +City "FL, Miramar" +City "FL, Naples" +City "FL, New Smyrna Beach" +City "FL, North Fort Myers" +City "FL, North Miami Beach" +City "FL, North Miami" +City "FL, North Port" +City "FL, Oakland Park" +City "FL, Ocala" +City "FL, Orlando" +City "FL, Ormond Beach" +City "FL, Palm Bay" +City "FL, Palm Beach Gardens" +City "FL, Palm Coast" +City "FL, Palm Harbor" +City "FL, Panama City Beach" +City "FL, Panama City" +City "FL, Pembroke Pines" +City "FL, Pensacola" +City "FL, Pine Hills" +City "FL, Pinellas Park" +City "FL, Plantation" +City "FL, Poinciana" +City "FL, Pompano Beach" +City "FL, Port Charlotte" +City "FL, Port Orange" +City "FL, Port St Lucie" +City "FL, Riverview" +City "FL, Riviera Beach" +City "FL, Sanford" +City "FL, Sarasota" +City "FL, Spring Hill" +City "FL, St Cloud" +City "FL, St Petersburg" +City "FL, Sun City Center" +City "FL, Sunny Isles Beach" +City "FL, Sunrise" +City "FL, Tallahassee" +City "FL, Tamarac" +City "FL, Tamiami" +City "FL, Tampa" +City "FL, The Hammocks" +City "FL, The Villages" +City "FL, Titusville" +City "FL, Town N Country" +City "FL, University" +City "FL, Venice" +City "FL, Wellington" +City "FL, Wesley Chapel" +City "FL, West Palm Beach" +City "FL, Weston" +City "FL, Winter Haven" +City "GA, Albany" +City "GA, Alpharetta" +City "GA, Athens-Clarke County Unified Government Balance" +City "GA, Atlanta" +City "GA, Augusta-Richmond County Consolidated Government Balance" +City "GA, Columbus" +City "GA, Dunwoody" +City "GA, East Point" +City "GA, Hinesville" +City "GA, Johns Creek" +City "GA, Mableton" +City "GA, Macon" +City "GA, Marietta" +City "GA, Newnan" +City "GA, North Atlanta" +City "GA, Rome" +City "GA, Roswell" +City "GA, Sandy Springs" +City "GA, Savannah" +City "GA, Smyrna" +City "GA, Valdosta" +City "GA, Warner Robins" +City "HI, East Honolulu" +City "HI, Hilo" +City "HI, Kailua" +City "HI, Urban Honolulu" +City "IA, Ames" +City "IA, Ankeny" +City "IA, Cedar Falls" +City "IA, Cedar Rapids" +City "IA, Council Bluffs" +City "IA, Davenport" +City "IA, Des Moines" +City "IA, Dubuque" +City "IA, Iowa City" +City "IA, Marion" +City "IA, Sioux City" +City "IA, Urbandale" +City "IA, Waterloo" +City "IA, West Des Moines" +City "ID, Boise City" +City "ID, Caldwell" +City "ID, Coeur Dalene" +City "ID, Idaho Falls" +City "ID, Meridian" +City "ID, Nampa" +City "ID, Pocatello" +City "ID, Twin Falls" +City "IL, Arlington Heights" +City "IL, Aurora" +City "IL, Belleville" +City "IL, Berwyn" +City "IL, Bloomington" +City "IL, Bolingbrook" +City "IL, Buffalo Grove" +City "IL, Calumet City" +City "IL, Carol Stream" +City "IL, Champaign" +City "IL, Chicago" +City "IL, Cicero" +City "IL, Crystal Lake" +City "IL, Decatur" +City "IL, Dekalb" +City "IL, Des Plaines" +City "IL, Downers Grove" +City "IL, Elgin" +City "IL, Elmhurst" +City "IL, Evanston" +City "IL, Glenview" +City "IL, Hoffman Estates" +City "IL, Joliet" +City "IL, Lombard" +City "IL, Moline" +City "IL, Mount Prospect" +City "IL, Naperville" +City "IL, Normal" +City "IL, Oak Lawn" +City "IL, Oak Park" +City "IL, Orland Park" +City "IL, Palatine" +City "IL, Peoria" +City "IL, Quincy" +City "IL, Rock Island" +City "IL, Rockford" +City "IL, Schaumburg" +City "IL, Skokie" +City "IL, Springfield" +City "IL, Tinley Park" +City "IL, Urbana" +City "IL, Waukegan" +City "IL, Wheaton" +City "IL, Wheeling" +City "IN, Anderson" +City "IN, Bloomington" +City "IN, Carmel" +City "IN, Columbus" +City "IN, Elkhart" +City "IN, Evansville" +City "IN, Fishers" +City "IN, Fort Wayne" +City "IN, Gary" +City "IN, Greenwood" +City "IN, Hammond" +City "IN, Indianapolis City Balance" +City "IN, Jeffersonville" +City "IN, Kokomo" +City "IN, Lafayette" +City "IN, Lawrence" +City "IN, Mishawaka" +City "IN, Muncie" +City "IN, New Albany" +City "IN, Noblesville" +City "IN, Portage" +City "IN, Richmond" +City "IN, South Bend" +City "IN, Terre Haute" +City "KS, Hutchinson" +City "KS, Kansas City" +City "KS, Lawrence" +City "KS, Lenexa" +City "KS, Manhattan" +City "KS, Olathe" +City "KS, Overland Park" +City "KS, Salina" +City "KS, Shawnee" +City "KS, Topeka" +City "KS, Wichita" +City "KY, Bowling Green" +City "KY, Covington" +City "KY, Lexington-Fayette" +City "KY, Louisville Jefferson County Metro Government Balance" +City "KY, Owensboro" +City "LA, Alexandria" +City "LA, Baton Rouge" +City "LA, Bossier City" +City "LA, Kenner" +City "LA, Lafayette" +City "LA, Lake Charles" +City "LA, Metairie" +City "LA, Monroe" +City "LA, New Orleans" +City "LA, Shreveport" +City "MA, Arlington" +City "MA, Attleboro" +City "MA, Barnstable Town" +City "MA, Beverly" +City "MA, Boston" +City "MA, Brockton" +City "MA, Brookline" +City "MA, Cambridge" +City "MA, Chicopee" +City "MA, Everett" +City "MA, Fall River" +City "MA, Fitchburg" +City "MA, Framingham" +City "MA, Haverhill" +City "MA, Holyoke" +City "MA, Lawrence" +City "MA, Leominster" +City "MA, Lowell" +City "MA, Lynn" +City "MA, Malden" +City "MA, Marlborough" +City "MA, Medford" +City "MA, Methuen Town" +City "MA, New Bedford" +City "MA, Newton" +City "MA, Peabody" +City "MA, Pittsfield" +City "MA, Quincy" +City "MA, Revere" +City "MA, Salem" +City "MA, Somerville" +City "MA, Springfield" +City "MA, Taunton" +City "MA, Waltham" +City "MA, Watertown Town" +City "MA, Westfield" +City "MA, Weymouth Town" +City "MA, Woburn" +City "MA, Worcester" +City "MD, Annapolis" +City "MD, Aspen Hill" +City "MD, Baltimore" +City "MD, Bel Air South" +City "MD, Bethesda" +City "MD, Bowie" +City "MD, Catonsville" +City "MD, Columbia" +City "MD, Dundalk" +City "MD, Ellicott City" +City "MD, Essex" +City "MD, Frederick" +City "MD, Gaithersburg" +City "MD, Germantown" +City "MD, Glen Burnie" +City "MD, Hagerstown" +City "MD, North Bethesda" +City "MD, Ocean City" +City "MD, Odenton" +City "MD, Potomac" +City "MD, Rockville" +City "MD, Severn" +City "MD, Silver Spring" +City "MD, Towson" +City "MD, Waldorf" +City "MD, Wheaton" +City "MD, Woodlawn" +City "ME, Bangor" +City "ME, Lewiston" +City "ME, Portland" +City "MI, Ann Arbor" +City "MI, Battle Creek" +City "MI, Bay City" +City "MI, Dearborn Heights" +City "MI, Dearborn" +City "MI, Detroit" +City "MI, Farmington Hills" +City "MI, Flint" +City "MI, Grand Rapids" +City "MI, Jackson" +City "MI, Kalamazoo" +City "MI, Kentwood" +City "MI, Lansing" +City "MI, Lincoln Park" +City "MI, Livonia" +City "MI, Midland" +City "MI, Muskegon" +City "MI, Novi" +City "MI, Pontiac" +City "MI, Portage" +City "MI, Rochester Hills" +City "MI, Roseville" +City "MI, Royal Oak" +City "MI, Saginaw" +City "MI, Southfield" +City "MI, St Clair Shores" +City "MI, Sterling Heights" +City "MI, Taylor" +City "MI, Troy" +City "MI, Warren" +City "MI, Westland" +City "MI, Wyoming" +City "MN, Apple Valley" +City "MN, Blaine" +City "MN, Bloomington" +City "MN, Brooklyn Park" +City "MN, Burnsville" +City "MN, Coon Rapids" +City "MN, Duluth" +City "MN, Eagan" +City "MN, Eden Prairie" +City "MN, Edina" +City "MN, Lakeville" +City "MN, Mankato" +City "MN, Maple Grove" +City "MN, Maplewood" +City "MN, Minneapolis" +City "MN, Minnetonka" +City "MN, Moorhead" +City "MN, Plymouth" +City "MN, Richfield" +City "MN, Rochester" +City "MN, Roseville" +City "MN, St Cloud" +City "MN, St Louis Park" +City "MN, St Paul" +City "MN, Woodbury" +City "MO, Blue Springs" +City "MO, Cape Girardeau" +City "MO, Chesterfield" +City "MO, Columbia" +City "MO, Florissant" +City "MO, Independence" +City "MO, Jefferson City" +City "MO, Joplin" +City "MO, Kansas City" +City "MO, Lees Summit" +City "MO, Ofallon" +City "MO, Springfield" +City "MO, St Charles" +City "MO, St Joseph" +City "MO, St Louis" +City "MO, St Peters" +City "MO, University City" +City "MS, Biloxi" +City "MS, Gulfport" +City "MS, Hattiesburg" +City "MS, Jackson" +City "MS, Meridian" +City "MS, Southaven" +City "MS, Tupelo" +City "MT, Billings" +City "MT, Bozeman" +City "MT, Butte-Silver Bow Balance" +City "MT, Great Falls" +City "MT, Missoula" +City "NC, Asheville" +City "NC, Burlington" +City "NC, Cary" +City "NC, Chapel Hill" +City "NC, Charlotte" +City "NC, Concord" +City "NC, Durham" +City "NC, Fayetteville" +City "NC, Gastonia" +City "NC, Goldsboro" +City "NC, Greensboro" +City "NC, Greenville" +City "NC, Hickory" +City "NC, High Point" +City "NC, Huntersville" +City "NC, Jacksonville" +City "NC, Kannapolis" +City "NC, Raleigh" +City "NC, Rocky Mount" +City "NC, Wilmington" +City "NC, Wilson" +City "NC, Winston-Salem" +City "ND, Bismarck" +City "ND, Fargo" +City "ND, Grand Forks" +City "ND, Minot" +City "NE, Bellevue" +City "NE, Grand Island" +City "NE, Lincoln" +City "NE, Omaha" +City "NH, Concord" +City "NH, Manchester" +City "NH, Nashua" +City "NJ, Atlantic City" +City "NJ, Bayonne" +City "NJ, Camden" +City "NJ, Clifton" +City "NJ, East Orange" +City "NJ, Elizabeth" +City "NJ, Fort Lee" +City "NJ, Hackensack" +City "NJ, Hoboken" +City "NJ, Jersey City" +City "NJ, Linden" +City "NJ, New Brunswick" +City "NJ, Newark" +City "NJ, Ocean City" +City "NJ, Passaic" +City "NJ, Paterson" +City "NJ, Perth Amboy" +City "NJ, Plainfield" +City "NJ, Sayreville" +City "NJ, Toms River" +City "NJ, Trenton" +City "NJ, Union City" +City "NJ, Vineland" +City "NJ, West New York" +City "NM, Albuquerque" +City "NM, Clovis" +City "NM, Farmington" +City "NM, Las Cruces" +City "NM, Rio Rancho" +City "NM, Roswell" +City "NM, Santa Fe" +City "NM, South Valley" +City "NV, Carson City" +City "NV, Enterprise" +City "NV, Henderson" +City "NV, Las Vegas" +City "NV, North Las Vegas" +City "NV, Pahrump" +City "NV, Paradise" +City "NV, Reno" +City "NV, Sparks" +City "NV, Spring Valley" +City "NV, Sunrise Manor" +City "NV, Whitney" +City "NY, Albany" +City "NY, Binghamton" +City "NY, Brighton" +City "NY, Buffalo" +City "NY, Cheektowaga" +City "NY, Coram" +City "NY, Hempstead" +City "NY, Irondequoit" +City "NY, Levittown" +City "NY, Long Beach" +City "NY, Mount Vernon" +City "NY, New Rochelle" +City "NY, New York" +City "NY, Niagara Falls" +City "NY, Rochester" +City "NY, Rome" +City "NY, Schenectady" +City "NY, Syracuse" +City "NY, Tonawanda" +City "NY, Troy" +City "NY, Utica" +City "NY, West Seneca" +City "NY, White Plains" +City "NY, Yonkers" +City "OH, Akron" +City "OH, Beavercreek" +City "OH, Boardman" +City "OH, Canton" +City "OH, Cincinnati" +City "OH, Cleveland Heights" +City "OH, Cleveland" +City "OH, Columbus" +City "OH, Cuyahoga Falls" +City "OH, Dayton" +City "OH, Delaware" +City "OH, Dublin" +City "OH, Elyria" +City "OH, Euclid" +City "OH, Fairborn" +City "OH, Fairfield" +City "OH, Findlay" +City "OH, Grove City" +City "OH, Hamilton" +City "OH, Huber Heights" +City "OH, Kettering" +City "OH, Lakewood" +City "OH, Lancaster" +City "OH, Lima" +City "OH, Lorain" +City "OH, Mansfield" +City "OH, Marion" +City "OH, Mentor" +City "OH, Middletown" +City "OH, Newark" +City "OH, Parma" +City "OH, Springfield" +City "OH, Stow" +City "OH, Strongsville" +City "OH, Toledo" +City "OH, Warren" +City "OH, Youngstown" +City "OK, Bartlesville" +City "OK, Broken Arrow" +City "OK, Edmond" +City "OK, Enid" +City "OK, Lawton" +City "OK, Midwest City" +City "OK, Moore" +City "OK, Muskogee" +City "OK, Norman" +City "OK, Oklahoma City" +City "OK, Stillwater" +City "OK, Tulsa" +City "OR, Albany" +City "OR, Aloha" +City "OR, Beaverton" +City "OR, Bend" +City "OR, Corvallis" +City "OR, Eugene" +City "OR, Grants Pass" +City "OR, Gresham" +City "OR, Hillsboro" +City "OR, Lake Oswego" +City "OR, Medford" +City "OR, Portland" +City "OR, Salem" +City "OR, Springfield" +City "OR, Tigard" +City "PA, Allentown" +City "PA, Altoona" +City "PA, Bethlehem" +City "PA, Erie" +City "PA, Harrisburg" +City "PA, Lancaster" +City "PA, Levittown" +City "PA, Philadelphia" +City "PA, Pittsburgh" +City "PA, Reading" +City "PA, Scranton" +City "PA, Wilkes-Barre" +City "PA, York" +City "RI, Cranston" +City "RI, East Providence" +City "RI, Pawtucket" +City "RI, Providence" +City "RI, Warwick" +City "RI, Woonsocket" +City "SC, Charleston" +City "SC, Columbia" +City "SC, Florence" +City "SC, Goose Creek" +City "SC, Greenville" +City "SC, Hilton Head Island" +City "SC, Mount Pleasant" +City "SC, Myrtle Beach" +City "SC, North Charleston" +City "SC, North Myrtle Beach" +City "SC, Rock Hill" +City "SC, Spartanburg" +City "SC, Summerville" +City "SC, Sumter" +City "SD, Rapid City" +City "SD, Sioux Falls" +City "TN, Bartlett" +City "TN, Chattanooga" +City "TN, Clarksville" +City "TN, Cleveland" +City "TN, Collierville" +City "TN, Columbia" +City "TN, Franklin" +City "TN, Germantown" +City "TN, Hendersonville" +City "TN, Jackson" +City "TN, Johnson City" +City "TN, Kingsport" +City "TN, Knoxville" +City "TN, Memphis" +City "TN, Murfreesboro" +City "TN, Nashville-Davidson Metropolitan Government Balance" +City "TN, Smyrna" +City "TX, Abilene" +City "TX, Allen" +City "TX, Amarillo" +City "TX, Arlington" +City "TX, Atascocita" +City "TX, Austin" +City "TX, Baytown" +City "TX, Beaumont" +City "TX, Bedford" +City "TX, Brownsville" +City "TX, Bryan" +City "TX, Burleson" +City "TX, Carrollton" +City "TX, Cedar Hill" +City "TX, Cedar Park" +City "TX, College Station" +City "TX, Conroe" +City "TX, Coppell" +City "TX, Corpus Christi" +City "TX, Dallas" +City "TX, Denton" +City "TX, Desoto" +City "TX, Edinburg" +City "TX, El Paso" +City "TX, Euless" +City "TX, Flower Mound" +City "TX, Fort Worth" +City "TX, Frisco" +City "TX, Galveston" +City "TX, Garland" +City "TX, Georgetown" +City "TX, Grand Prairie" +City "TX, Grapevine" +City "TX, Haltom City" +City "TX, Harlingen" +City "TX, Houston" +City "TX, Hurst" +City "TX, Irving" +City "TX, Keller" +City "TX, Killeen" +City "TX, Laredo" +City "TX, League City" +City "TX, Lewisville" +City "TX, Longview" +City "TX, Lubbock" +City "TX, Lufkin" +City "TX, Mansfield" +City "TX, Mcallen" +City "TX, Mckinney" +City "TX, Mesquite" +City "TX, Midland" +City "TX, Mission" +City "TX, Missouri City" +City "TX, New Braunfels" +City "TX, North Richland Hills" +City "TX, Odessa" +City "TX, Pasadena" +City "TX, Pearland" +City "TX, Pflugerville" +City "TX, Pharr" +City "TX, Plano" +City "TX, Port Arthur" +City "TX, Richardson" +City "TX, Round Rock" +City "TX, Rowlett" +City "TX, San Angelo" +City "TX, San Antonio" +City "TX, San Marcos" +City "TX, Sherman" +City "TX, Spring" +City "TX, Sugar Land" +City "TX, Temple" +City "TX, Texarkana" +City "TX, Texas City" +City "TX, The Colony" +City "TX, The Woodlands" +City "TX, Tyler" +City "TX, Victoria" +City "TX, Waco" +City "TX, Wichita Falls" +City "TX, Wylie" +City "UT, Layton" +City "UT, Lehi" +City "UT, Logan" +City "UT, Millcreek" +City "UT, Murray" +City "UT, Ogden" +City "UT, Orem" +City "UT, Provo" +City "UT, Salt Lake City" +City "UT, Sandy" +City "UT, South Jordan" +City "UT, St George" +City "UT, Taylorsville" +City "UT, West Jordan" +City "UT, West Valley City" +City "VA, Alexandria" +City "VA, Arlington" +City "VA, Ashburn" +City "VA, Blacksburg" +City "VA, Centreville" +City "VA, Charlottesville" +City "VA, Chesapeake" +City "VA, Dale City" +City "VA, Danville" +City "VA, Hampton" +City "VA, Harrisonburg" +City "VA, Lake Ridge" +City "VA, Leesburg" +City "VA, Lynchburg" +City "VA, Mclean" +City "VA, Mechanicsville" +City "VA, Newport News" +City "VA, Norfolk" +City "VA, Petersburg" +City "VA, Portsmouth" +City "VA, Reston" +City "VA, Richmond" +City "VA, Roanoke" +City "VA, Suffolk" +City "VA, Tuckahoe" +City "VA, Virginia Beach" +City "VT, Burlington" +City "WA, Auburn" +City "WA, Bellevue" +City "WA, Bellingham" +City "WA, Bremerton" +City "WA, Edmonds" +City "WA, Everett" +City "WA, Federal Way" +City "WA, Kennewick" +City "WA, Kent" +City "WA, Kirkland" +City "WA, Lacey" +City "WA, Lakewood" +City "WA, Longview" +City "WA, Marysville" +City "WA, Olympia" +City "WA, Pasco" +City "WA, Puyallup" +City "WA, Redmond" +City "WA, Renton" +City "WA, Richland" +City "WA, Sammamish" +City "WA, Seattle" +City "WA, Shoreline" +City "WA, South Hill" +City "WA, Spokane Valley" +City "WA, Spokane" +City "WA, Tacoma" +City "WA, Vancouver" +City "WA, Yakima" +City "WI, Appleton" +City "WI, Beloit" +City "WI, Eau Claire" +City "WI, Fond Du Lac" +City "WI, Green Bay" +City "WI, Greenfield" +City "WI, Janesville" +City "WI, Kenosha" +City "WI, La Crosse" +City "WI, Madison" +City "WI, Manitowoc" +City "WI, Menomonee Falls" +City "WI, Milwaukee" +City "WI, New Berlin" +City "WI, Oshkosh" +City "WI, Racine" +City "WI, Sheboygan" +City "WI, Waukesha" +City "WI, Wausau" +City "WI, Wauwatosa" +City "WI, West Allis" +City "WV, Charleston" +City "WV, Huntington" +City "WV, Parkersburg" +City "WY, Casper" +City "WY, Cheyenne" +City In another census Place +City In another census Place +City Not in a census Place +City Not in a census Place +Clothes Dryer "Electric, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=4.5 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Electric, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.42 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, EnergyStar" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.93 clothes_dryer_vented_flow_rate=auto +Clothes Dryer "Electric, Premium, Heat Pump, Ventless" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=5.2 clothes_dryer_vented_flow_rate=0 +Clothes Dryer "Gas, Premium" ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=3.03 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Electric ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=electricity clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Gas ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer None ResStockArguments clothes_dryer_present=false clothes_dryer_location=auto clothes_dryer_fuel_type=natural gas clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.70 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Propane ResStockArguments clothes_dryer_present=true clothes_dryer_location=auto clothes_dryer_fuel_type=propane clothes_dryer_efficiency_type=CombinedEnergyFactor clothes_dryer_efficiency=2.39 clothes_dryer_vented_flow_rate=auto +Clothes Dryer Void +Clothes Dryer Usage Level 100% Usage ResStockArguments clothes_dryer_usage_multiplier=1.0 +Clothes Dryer Usage Level 120% Usage ResStockArguments clothes_dryer_usage_multiplier=1.2 +Clothes Dryer Usage Level 80% Usage ResStockArguments clothes_dryer_usage_multiplier=0.8 +Clothes Washer "EnergyStar, Cold Only" ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer CEE Advanced Tier ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=3.1 clothes_washer_rated_annual_kwh=120 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=14 clothes_washer_label_usage=7.538462 clothes_washer_capacity=5.8 +Clothes Washer EnergyStar ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.07 clothes_washer_rated_annual_kwh=123 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=9 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.68 +Clothes Washer EnergyStar More Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.83 clothes_washer_rated_annual_kwh=90 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=8 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer EnergyStar Most Efficient ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=2.92 clothes_washer_rated_annual_kwh=75 clothes_washer_label_electric_rate=0.121 clothes_washer_label_gas_rate=1.087 clothes_washer_label_annual_gas_cost=7 clothes_washer_label_usage=7.538462 clothes_washer_capacity=4.5 +Clothes Washer None ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0 clothes_washer_rated_annual_kwh=0 clothes_washer_label_electric_rate=0 clothes_washer_label_gas_rate=0 clothes_washer_label_annual_gas_cost=0 clothes_washer_label_usage=0 clothes_washer_capacity=0 +Clothes Washer Standard ResStockArguments clothes_washer_location=auto clothes_washer_efficiency_type=IntegratedModifiedEnergyFactor clothes_washer_efficiency=0.95 clothes_washer_rated_annual_kwh=387 clothes_washer_label_electric_rate=0.1065 clothes_washer_label_gas_rate=1.218 clothes_washer_label_annual_gas_cost=24 clothes_washer_label_usage=7.538462 clothes_washer_capacity=3.5 +Clothes Washer Void +Clothes Washer Presence None ResStockArguments clothes_washer_present=false +Clothes Washer Presence Void +Clothes Washer Presence Yes ResStockArguments clothes_washer_present=true +Clothes Washer Usage Level 100% Usage ResStockArguments clothes_washer_usage_multiplier=1.0 +Clothes Washer Usage Level 120% Usage ResStockArguments clothes_washer_usage_multiplier=1.2 +Clothes Washer Usage Level 80% Usage ResStockArguments clothes_washer_usage_multiplier=0.8 +Cooking Range Electric Induction ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=true cooking_range_oven_is_convection=auto +Cooking Range Electric Resistance ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=electricity cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Gas ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range None ResStockArguments cooking_range_oven_present=false cooking_range_oven_location=auto cooking_range_oven_fuel_type=natural gas cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Propane ResStockArguments cooking_range_oven_present=true cooking_range_oven_location=auto cooking_range_oven_fuel_type=propane cooking_range_oven_is_induction=false cooking_range_oven_is_convection=auto +Cooking Range Void +Cooking Range Usage Level 100% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.0 +Cooking Range Usage Level 120% Usage ResStockArguments cooking_range_oven_usage_multiplier=1.2 +Cooking Range Usage Level 80% Usage ResStockArguments cooking_range_oven_usage_multiplier=0.8 +Cooling Setpoint 60F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=60 hvac_control_cooling_weekend_setpoint_temp=60 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 62F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=62 hvac_control_cooling_weekend_setpoint_temp=62 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 64F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=64 hvac_control_cooling_weekend_setpoint_temp=64 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 65F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=65 hvac_control_cooling_weekend_setpoint_temp=65 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 66F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=66 hvac_control_cooling_weekend_setpoint_temp=66 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 67F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=67 hvac_control_cooling_weekend_setpoint_temp=67 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 68F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=68 hvac_control_cooling_weekend_setpoint_temp=68 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 69F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=69 hvac_control_cooling_weekend_setpoint_temp=69 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 70F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=70 hvac_control_cooling_weekend_setpoint_temp=70 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 72F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=72 hvac_control_cooling_weekend_setpoint_temp=72 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 73F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=73 hvac_control_cooling_weekend_setpoint_temp=73 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 74F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=74 hvac_control_cooling_weekend_setpoint_temp=74 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 75F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=75 hvac_control_cooling_weekend_setpoint_temp=75 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 76F w/ Building America season ResStockArguments hvac_control_cooling_weekday_setpoint_temp=76 hvac_control_cooling_weekend_setpoint_temp=76 use_auto_cooling_season=true hvac_control_cooling_season_period=auto +Cooling Setpoint 77F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=77 hvac_control_cooling_weekend_setpoint_temp=77 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 78F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=78 hvac_control_cooling_weekend_setpoint_temp=78 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint 80F ResStockArguments hvac_control_cooling_weekday_setpoint_temp=80 hvac_control_cooling_weekend_setpoint_temp=80 use_auto_cooling_season=false hvac_control_cooling_season_period=auto +Cooling Setpoint Has Offset No +Cooling Setpoint Has Offset Yes +Cooling Setpoint Offset Magnitude 0F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=0 hvac_control_cooling_weekend_setpoint_offset_magnitude=0 +Cooling Setpoint Offset Magnitude 2F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=2 hvac_control_cooling_weekend_setpoint_offset_magnitude=2 +Cooling Setpoint Offset Magnitude 5F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=5 hvac_control_cooling_weekend_setpoint_offset_magnitude=5 +Cooling Setpoint Offset Magnitude 9F ResStockArguments hvac_control_cooling_weekday_setpoint_offset_magnitude=9 hvac_control_cooling_weekend_setpoint_offset_magnitude=9 +Cooling Setpoint Offset Period Day Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Day Setup and Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day Setup and Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day Setup and Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1,-1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_cooling_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Cooling Setpoint Offset Period Day and Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1" +Cooling Setpoint Offset Period Day and Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1" +Cooling Setpoint Offset Period Day and Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0" "hvac_control_cooling_weekend_setpoint_schedule=0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0" +Cooling Setpoint Offset Period Day and Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1" +Cooling Setpoint Offset Period Day and Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1" "hvac_control_cooling_weekend_setpoint_schedule=1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1" +Cooling Setpoint Offset Period Night Setback ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Cooling Setpoint Offset Period Night Setback +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Cooling Setpoint Offset Period Night Setback +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setback -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setback -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_cooling_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Cooling Setpoint Offset Period Night Setup ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1" +Cooling Setpoint Offset Period Night Setup +1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1" +Cooling Setpoint Offset Period Night Setup +2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup +5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Cooling Setpoint Offset Period Night Setup -1h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -2h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -3h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -4h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period Night Setup -5h ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" "hvac_control_cooling_weekend_setpoint_schedule=1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1" +Cooling Setpoint Offset Period None ResStockArguments "hvac_control_cooling_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_cooling_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Corridor Double Exterior ResStockArguments geometry_corridor_position=Double Exterior geometry_corridor_width=10 +Corridor Double-Loaded Interior ResStockArguments geometry_corridor_position=Double-Loaded Interior geometry_corridor_width=10 +Corridor None ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Not Applicable ResStockArguments geometry_corridor_position=None geometry_corridor_width=0 +Corridor Single Exterior Front ResStockArguments geometry_corridor_position=Single Exterior (Front) geometry_corridor_width=10 +County "AK, Aleutians East Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200130.epw site_zip_code=99661 site_time_zone_utc_offset=-9 +County "AK, Aleutians West Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200160.epw site_zip_code=99685 site_time_zone_utc_offset=-9 +County "AK, Anchorage Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200200.epw site_zip_code=99501 site_time_zone_utc_offset=-9 +County "AK, Bethel Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200500.epw site_zip_code=99545 site_time_zone_utc_offset=-9 +County "AK, Bristol Bay Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200600.epw site_zip_code=99633 site_time_zone_utc_offset=-9 +County "AK, Denali Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200680.epw site_zip_code=99743 site_time_zone_utc_offset=-9 +County "AK, Dillingham Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200700.epw site_zip_code=99576 site_time_zone_utc_offset=-9 +County "AK, Fairbanks North Star Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0200900.epw site_zip_code=99709 site_time_zone_utc_offset=-9 +County "AK, Haines Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201000.epw site_zip_code=99827 site_time_zone_utc_offset=-9 +County "AK, Hoonah-Angoon Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201050.epw site_zip_code=99829 site_time_zone_utc_offset=-9 +County "AK, Juneau City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201100.epw site_zip_code=99802 site_time_zone_utc_offset=-9 +County "AK, Kenai Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201220.epw site_zip_code=99611 site_time_zone_utc_offset=-9 +County "AK, Ketchikan Gateway Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201300.epw site_zip_code=99901 site_time_zone_utc_offset=-9 +County "AK, Kodiak Island Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201500.epw site_zip_code=99615 site_time_zone_utc_offset=-9 +County "AK, Kusilvak Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202700.epw site_zip_code=99604 site_time_zone_utc_offset=-9 +County "AK, Lake and Peninsula Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201640.epw site_zip_code=99653 site_time_zone_utc_offset=-9 +County "AK, Matanuska-Susitna Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201700.epw site_zip_code=99645 site_time_zone_utc_offset=-9 +County "AK, Nome Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201800.epw site_zip_code=99762 site_time_zone_utc_offset=-9 +County "AK, North Slope Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201850.epw site_zip_code=99723 site_time_zone_utc_offset=-9 +County "AK, Northwest Arctic Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201880.epw site_zip_code=99752 site_time_zone_utc_offset=-9 +County "AK, Petersburg Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201950.epw site_zip_code=99833 site_time_zone_utc_offset=-9 +County "AK, Prince of Wales-Hyder Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0201980.epw site_zip_code=99926 site_time_zone_utc_offset=-9 +County "AK, Sitka City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202200.epw site_zip_code=99835 site_time_zone_utc_offset=-9 +County "AK, Skagway Municipality" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202300.epw site_zip_code=99840 site_time_zone_utc_offset=-9 +County "AK, Southeast Fairbanks Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202400.epw site_zip_code=99731 site_time_zone_utc_offset=-9 +County "AK, Valdez-Cordova Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202610.epw site_zip_code=99686 site_time_zone_utc_offset=-9 +County "AK, Wrangell City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202750.epw site_zip_code=99903 site_time_zone_utc_offset=-9 +County "AK, Yakutat City and Borough" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202820.epw site_zip_code=99689 site_time_zone_utc_offset=-9 +County "AK, Yukon-Koyukuk Census Area" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0202900.epw site_zip_code=99740 site_time_zone_utc_offset=-9 +County "AL, Autauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100010.epw site_zip_code=36067 site_time_zone_utc_offset=-6 +County "AL, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100030.epw site_zip_code=36535 site_time_zone_utc_offset=-6 +County "AL, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100050.epw site_zip_code=36027 site_time_zone_utc_offset=-6 +County "AL, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100070.epw site_zip_code=35042 site_time_zone_utc_offset=-6 +County "AL, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100090.epw site_zip_code=35121 site_time_zone_utc_offset=-6 +County "AL, Bullock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100110.epw site_zip_code=36089 site_time_zone_utc_offset=-6 +County "AL, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100130.epw site_zip_code=36037 site_time_zone_utc_offset=-6 +County "AL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100150.epw site_zip_code=36201 site_time_zone_utc_offset=-6 +County "AL, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100170.epw site_zip_code=36863 site_time_zone_utc_offset=-6 +County "AL, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100190.epw site_zip_code=35960 site_time_zone_utc_offset=-6 +County "AL, Chilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100210.epw site_zip_code=35045 site_time_zone_utc_offset=-6 +County "AL, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100230.epw site_zip_code=36904 site_time_zone_utc_offset=-6 +County "AL, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100250.epw site_zip_code=36545 site_time_zone_utc_offset=-6 +County "AL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100270.epw site_zip_code=36251 site_time_zone_utc_offset=-6 +County "AL, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100290.epw site_zip_code=36264 site_time_zone_utc_offset=-6 +County "AL, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100310.epw site_zip_code=36330 site_time_zone_utc_offset=-6 +County "AL, Colbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100330.epw site_zip_code=35674 site_time_zone_utc_offset=-6 +County "AL, Conecuh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100350.epw site_zip_code=36401 site_time_zone_utc_offset=-6 +County "AL, Coosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100370.epw site_zip_code=35151 site_time_zone_utc_offset=-6 +County "AL, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100390.epw site_zip_code=36420 site_time_zone_utc_offset=-6 +County "AL, Crenshaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100410.epw site_zip_code=36049 site_time_zone_utc_offset=-6 +County "AL, Cullman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100430.epw site_zip_code=35055 site_time_zone_utc_offset=-6 +County "AL, Dale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100450.epw site_zip_code=36360 site_time_zone_utc_offset=-6 +County "AL, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100470.epw site_zip_code=36701 site_time_zone_utc_offset=-6 +County "AL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100490.epw site_zip_code=35967 site_time_zone_utc_offset=-6 +County "AL, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100510.epw site_zip_code=36092 site_time_zone_utc_offset=-6 +County "AL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100530.epw site_zip_code=36426 site_time_zone_utc_offset=-6 +County "AL, Etowah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100550.epw site_zip_code=35901 site_time_zone_utc_offset=-6 +County "AL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100570.epw site_zip_code=35555 site_time_zone_utc_offset=-6 +County "AL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100590.epw site_zip_code=35653 site_time_zone_utc_offset=-6 +County "AL, Geneva County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100610.epw site_zip_code=36375 site_time_zone_utc_offset=-6 +County "AL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100630.epw site_zip_code=35462 site_time_zone_utc_offset=-6 +County "AL, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100650.epw site_zip_code=36744 site_time_zone_utc_offset=-6 +County "AL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100670.epw site_zip_code=36310 site_time_zone_utc_offset=-6 +County "AL, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100690.epw site_zip_code=36301 site_time_zone_utc_offset=-6 +County "AL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100710.epw site_zip_code=35768 site_time_zone_utc_offset=-6 +County "AL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100730.epw site_zip_code=35215 site_time_zone_utc_offset=-6 +County "AL, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100750.epw site_zip_code=35586 site_time_zone_utc_offset=-6 +County "AL, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100770.epw site_zip_code=35630 site_time_zone_utc_offset=-6 +County "AL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100790.epw site_zip_code=35650 site_time_zone_utc_offset=-6 +County "AL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100810.epw site_zip_code=36830 site_time_zone_utc_offset=-6 +County "AL, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100830.epw site_zip_code=35611 site_time_zone_utc_offset=-6 +County "AL, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100850.epw site_zip_code=36040 site_time_zone_utc_offset=-6 +County "AL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100870.epw site_zip_code=36083 site_time_zone_utc_offset=-6 +County "AL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100890.epw site_zip_code=35758 site_time_zone_utc_offset=-6 +County "AL, Marengo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100910.epw site_zip_code=36732 site_time_zone_utc_offset=-6 +County "AL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100930.epw site_zip_code=35570 site_time_zone_utc_offset=-6 +County "AL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100950.epw site_zip_code=35976 site_time_zone_utc_offset=-6 +County "AL, Mobile County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100970.epw site_zip_code=36695 site_time_zone_utc_offset=-6 +County "AL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0100990.epw site_zip_code=36460 site_time_zone_utc_offset=-6 +County "AL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101010.epw site_zip_code=36117 site_time_zone_utc_offset=-6 +County "AL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101030.epw site_zip_code=35601 site_time_zone_utc_offset=-6 +County "AL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101050.epw site_zip_code=36756 site_time_zone_utc_offset=-6 +County "AL, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101070.epw site_zip_code=35466 site_time_zone_utc_offset=-6 +County "AL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101090.epw site_zip_code=36081 site_time_zone_utc_offset=-6 +County "AL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101110.epw site_zip_code=36274 site_time_zone_utc_offset=-6 +County "AL, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101130.epw site_zip_code=36869 site_time_zone_utc_offset=-6 +County "AL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101170.epw site_zip_code=35242 site_time_zone_utc_offset=-6 +County "AL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101150.epw site_zip_code=35120 site_time_zone_utc_offset=-6 +County "AL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101190.epw site_zip_code=36925 site_time_zone_utc_offset=-6 +County "AL, Talladega County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101210.epw site_zip_code=35160 site_time_zone_utc_offset=-6 +County "AL, Tallapoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101230.epw site_zip_code=35010 site_time_zone_utc_offset=-6 +County "AL, Tuscaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101250.epw site_zip_code=35401 site_time_zone_utc_offset=-6 +County "AL, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101270.epw site_zip_code=35504 site_time_zone_utc_offset=-6 +County "AL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101290.epw site_zip_code=36558 site_time_zone_utc_offset=-6 +County "AL, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101310.epw site_zip_code=36726 site_time_zone_utc_offset=-6 +County "AL, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0101330.epw site_zip_code=35565 site_time_zone_utc_offset=-6 +County "AR, Arkansas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500010.epw site_zip_code=72160 site_time_zone_utc_offset=-6 +County "AR, Ashley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500030.epw site_zip_code=71635 site_time_zone_utc_offset=-6 +County "AR, Baxter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500050.epw site_zip_code=72653 site_time_zone_utc_offset=-6 +County "AR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500070.epw site_zip_code=72712 site_time_zone_utc_offset=-6 +County "AR, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500090.epw site_zip_code=72601 site_time_zone_utc_offset=-6 +County "AR, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500110.epw site_zip_code=71671 site_time_zone_utc_offset=-6 +County "AR, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500130.epw site_zip_code=71744 site_time_zone_utc_offset=-6 +County "AR, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500150.epw site_zip_code=72616 site_time_zone_utc_offset=-6 +County "AR, Chicot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500170.epw site_zip_code=71653 site_time_zone_utc_offset=-6 +County "AR, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500190.epw site_zip_code=71923 site_time_zone_utc_offset=-6 +County "AR, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500210.epw site_zip_code=72454 site_time_zone_utc_offset=-6 +County "AR, Cleburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500230.epw site_zip_code=72543 site_time_zone_utc_offset=-6 +County "AR, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500250.epw site_zip_code=71665 site_time_zone_utc_offset=-6 +County "AR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500270.epw site_zip_code=71753 site_time_zone_utc_offset=-6 +County "AR, Conway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500290.epw site_zip_code=72110 site_time_zone_utc_offset=-6 +County "AR, Craighead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500310.epw site_zip_code=72401 site_time_zone_utc_offset=-6 +County "AR, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500330.epw site_zip_code=72956 site_time_zone_utc_offset=-6 +County "AR, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500350.epw site_zip_code=72301 site_time_zone_utc_offset=-6 +County "AR, Cross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500370.epw site_zip_code=72396 site_time_zone_utc_offset=-6 +County "AR, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500390.epw site_zip_code=71742 site_time_zone_utc_offset=-6 +County "AR, Desha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500410.epw site_zip_code=71639 site_time_zone_utc_offset=-6 +County "AR, Drew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500430.epw site_zip_code=71655 site_time_zone_utc_offset=-6 +County "AR, Faulkner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500450.epw site_zip_code=72034 site_time_zone_utc_offset=-6 +County "AR, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500470.epw site_zip_code=72949 site_time_zone_utc_offset=-6 +County "AR, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500490.epw site_zip_code=72554 site_time_zone_utc_offset=-6 +County "AR, Garland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500510.epw site_zip_code=71913 site_time_zone_utc_offset=-6 +County "AR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500530.epw site_zip_code=72150 site_time_zone_utc_offset=-6 +County "AR, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500550.epw site_zip_code=72450 site_time_zone_utc_offset=-6 +County "AR, Hempstead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500570.epw site_zip_code=71801 site_time_zone_utc_offset=-6 +County "AR, Hot Spring County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500590.epw site_zip_code=72104 site_time_zone_utc_offset=-6 +County "AR, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500610.epw site_zip_code=71852 site_time_zone_utc_offset=-6 +County "AR, Independence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500630.epw site_zip_code=72501 site_time_zone_utc_offset=-6 +County "AR, Izard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500650.epw site_zip_code=72556 site_time_zone_utc_offset=-6 +County "AR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500670.epw site_zip_code=72112 site_time_zone_utc_offset=-6 +County "AR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500690.epw site_zip_code=71603 site_time_zone_utc_offset=-6 +County "AR, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500710.epw site_zip_code=72830 site_time_zone_utc_offset=-6 +County "AR, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500730.epw site_zip_code=71860 site_time_zone_utc_offset=-6 +County "AR, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500750.epw site_zip_code=72476 site_time_zone_utc_offset=-6 +County "AR, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500770.epw site_zip_code=72360 site_time_zone_utc_offset=-6 +County "AR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500790.epw site_zip_code=71667 site_time_zone_utc_offset=-6 +County "AR, Little River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500810.epw site_zip_code=71822 site_time_zone_utc_offset=-6 +County "AR, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500830.epw site_zip_code=72927 site_time_zone_utc_offset=-6 +County "AR, Lonoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500850.epw site_zip_code=72023 site_time_zone_utc_offset=-6 +County "AR, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500870.epw site_zip_code=72740 site_time_zone_utc_offset=-6 +County "AR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500890.epw site_zip_code=72687 site_time_zone_utc_offset=-6 +County "AR, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500910.epw site_zip_code=71854 site_time_zone_utc_offset=-6 +County "AR, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500930.epw site_zip_code=72315 site_time_zone_utc_offset=-6 +County "AR, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500950.epw site_zip_code=72021 site_time_zone_utc_offset=-6 +County "AR, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500970.epw site_zip_code=71957 site_time_zone_utc_offset=-6 +County "AR, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0500990.epw site_zip_code=71857 site_time_zone_utc_offset=-6 +County "AR, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501010.epw site_zip_code=72641 site_time_zone_utc_offset=-6 +County "AR, Ouachita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501030.epw site_zip_code=71701 site_time_zone_utc_offset=-6 +County "AR, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501050.epw site_zip_code=72126 site_time_zone_utc_offset=-6 +County "AR, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501070.epw site_zip_code=72390 site_time_zone_utc_offset=-6 +County "AR, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501090.epw site_zip_code=71943 site_time_zone_utc_offset=-6 +County "AR, Poinsett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501110.epw site_zip_code=72472 site_time_zone_utc_offset=-6 +County "AR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501130.epw site_zip_code=71953 site_time_zone_utc_offset=-6 +County "AR, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501150.epw site_zip_code=72802 site_time_zone_utc_offset=-6 +County "AR, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501170.epw site_zip_code=72040 site_time_zone_utc_offset=-6 +County "AR, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501190.epw site_zip_code=72076 site_time_zone_utc_offset=-6 +County "AR, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501210.epw site_zip_code=72455 site_time_zone_utc_offset=-6 +County "AR, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501250.epw site_zip_code=72019 site_time_zone_utc_offset=-6 +County "AR, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501270.epw site_zip_code=72958 site_time_zone_utc_offset=-6 +County "AR, Searcy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501290.epw site_zip_code=72650 site_time_zone_utc_offset=-6 +County "AR, Sebastian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501310.epw site_zip_code=72903 site_time_zone_utc_offset=-6 +County "AR, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501330.epw site_zip_code=71832 site_time_zone_utc_offset=-6 +County "AR, Sharp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501350.epw site_zip_code=72529 site_time_zone_utc_offset=-6 +County "AR, St. Francis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501230.epw site_zip_code=72335 site_time_zone_utc_offset=-6 +County "AR, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501370.epw site_zip_code=72560 site_time_zone_utc_offset=-6 +County "AR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501390.epw site_zip_code=71730 site_time_zone_utc_offset=-6 +County "AR, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501410.epw site_zip_code=72031 site_time_zone_utc_offset=-6 +County "AR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501430.epw site_zip_code=72701 site_time_zone_utc_offset=-6 +County "AR, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501450.epw site_zip_code=72143 site_time_zone_utc_offset=-6 +County "AR, Woodruff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501470.epw site_zip_code=72006 site_time_zone_utc_offset=-6 +County "AR, Yell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0501490.epw site_zip_code=72834 site_time_zone_utc_offset=-6 +County "AZ, Apache County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400010.epw site_zip_code=85936 site_time_zone_utc_offset=-7 +County "AZ, Cochise County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400030.epw site_zip_code=85635 site_time_zone_utc_offset=-7 +County "AZ, Coconino County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400050.epw site_zip_code=86001 site_time_zone_utc_offset=-7 +County "AZ, Gila County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400070.epw site_zip_code=85541 site_time_zone_utc_offset=-7 +County "AZ, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400090.epw site_zip_code=85546 site_time_zone_utc_offset=-7 +County "AZ, Greenlee County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400110.epw site_zip_code=85534 site_time_zone_utc_offset=-7 +County "AZ, La Paz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400120.epw site_zip_code=85344 site_time_zone_utc_offset=-7 +County "AZ, Maricopa County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400130.epw site_zip_code=85281 site_time_zone_utc_offset=-7 +County "AZ, Mohave County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400150.epw site_zip_code=86442 site_time_zone_utc_offset=-7 +County "AZ, Navajo County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400170.epw site_zip_code=85901 site_time_zone_utc_offset=-7 +County "AZ, Pima County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400190.epw site_zip_code=85705 site_time_zone_utc_offset=-7 +County "AZ, Pinal County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400210.epw site_zip_code=85122 site_time_zone_utc_offset=-7 +County "AZ, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400230.epw site_zip_code=85621 site_time_zone_utc_offset=-7 +County "AZ, Yavapai County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400250.epw site_zip_code=86314 site_time_zone_utc_offset=-7 +County "AZ, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=false weather_station_epw_filepath=../../../weather/G0400270.epw site_zip_code=85364 site_time_zone_utc_offset=-7 +County "CA, Alameda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600010.epw site_zip_code=94501 site_time_zone_utc_offset=-8 +County "CA, Alpine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600030.epw site_zip_code=96120 site_time_zone_utc_offset=-8 +County "CA, Amador County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600050.epw site_zip_code=95642 site_time_zone_utc_offset=-8 +County "CA, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600070.epw site_zip_code=95928 site_time_zone_utc_offset=-8 +County "CA, Calaveras County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600090.epw site_zip_code=95252 site_time_zone_utc_offset=-8 +County "CA, Colusa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600110.epw site_zip_code=95932 site_time_zone_utc_offset=-8 +County "CA, Contra Costa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600130.epw site_zip_code=94565 site_time_zone_utc_offset=-8 +County "CA, Del Norte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600150.epw site_zip_code=95531 site_time_zone_utc_offset=-8 +County "CA, El Dorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600170.epw site_zip_code=95762 site_time_zone_utc_offset=-8 +County "CA, Fresno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600190.epw site_zip_code=93722 site_time_zone_utc_offset=-8 +County "CA, Glenn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600210.epw site_zip_code=95963 site_time_zone_utc_offset=-8 +County "CA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600230.epw site_zip_code=95501 site_time_zone_utc_offset=-8 +County "CA, Imperial County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600250.epw site_zip_code=92243 site_time_zone_utc_offset=-8 +County "CA, Inyo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600270.epw site_zip_code=93514 site_time_zone_utc_offset=-8 +County "CA, Kern County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600290.epw site_zip_code=93306 site_time_zone_utc_offset=-8 +County "CA, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600310.epw site_zip_code=93230 site_time_zone_utc_offset=-8 +County "CA, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600330.epw site_zip_code=95422 site_time_zone_utc_offset=-8 +County "CA, Lassen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600350.epw site_zip_code=96130 site_time_zone_utc_offset=-8 +County "CA, Los Angeles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600370.epw site_zip_code=90250 site_time_zone_utc_offset=-8 +County "CA, Madera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600390.epw site_zip_code=93637 site_time_zone_utc_offset=-8 +County "CA, Marin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600410.epw site_zip_code=94901 site_time_zone_utc_offset=-8 +County "CA, Mariposa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600430.epw site_zip_code=95338 site_time_zone_utc_offset=-8 +County "CA, Mendocino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600450.epw site_zip_code=95482 site_time_zone_utc_offset=-8 +County "CA, Merced County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600470.epw site_zip_code=93635 site_time_zone_utc_offset=-8 +County "CA, Modoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600490.epw site_zip_code=96101 site_time_zone_utc_offset=-8 +County "CA, Mono County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600510.epw site_zip_code=93546 site_time_zone_utc_offset=-8 +County "CA, Monterey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600530.epw site_zip_code=93906 site_time_zone_utc_offset=-8 +County "CA, Napa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600550.epw site_zip_code=94558 site_time_zone_utc_offset=-8 +County "CA, Nevada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600570.epw site_zip_code=95945 site_time_zone_utc_offset=-8 +County "CA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600590.epw site_zip_code=92683 site_time_zone_utc_offset=-8 +County "CA, Placer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600610.epw site_zip_code=95747 site_time_zone_utc_offset=-8 +County "CA, Plumas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600630.epw site_zip_code=96122 site_time_zone_utc_offset=-8 +County "CA, Riverside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600650.epw site_zip_code=92503 site_time_zone_utc_offset=-8 +County "CA, Sacramento County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600670.epw site_zip_code=95630 site_time_zone_utc_offset=-8 +County "CA, San Benito County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600690.epw site_zip_code=95023 site_time_zone_utc_offset=-8 +County "CA, San Bernardino County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600710.epw site_zip_code=92336 site_time_zone_utc_offset=-8 +County "CA, San Diego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600730.epw site_zip_code=92101 site_time_zone_utc_offset=-8 +County "CA, San Francisco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600750.epw site_zip_code=94109 site_time_zone_utc_offset=-8 +County "CA, San Joaquin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600770.epw site_zip_code=95206 site_time_zone_utc_offset=-8 +County "CA, San Luis Obispo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600790.epw site_zip_code=93446 site_time_zone_utc_offset=-8 +County "CA, San Mateo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600810.epw site_zip_code=94080 site_time_zone_utc_offset=-8 +County "CA, Santa Barbara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600830.epw site_zip_code=93436 site_time_zone_utc_offset=-8 +County "CA, Santa Clara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600850.epw site_zip_code=95035 site_time_zone_utc_offset=-8 +County "CA, Santa Cruz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600870.epw site_zip_code=95076 site_time_zone_utc_offset=-8 +County "CA, Shasta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600890.epw site_zip_code=96003 site_time_zone_utc_offset=-8 +County "CA, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600910.epw site_zip_code=95960 site_time_zone_utc_offset=-8 +County "CA, Siskiyou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600930.epw site_zip_code=96097 site_time_zone_utc_offset=-8 +County "CA, Solano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600950.epw site_zip_code=94533 site_time_zone_utc_offset=-8 +County "CA, Sonoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600970.epw site_zip_code=95403 site_time_zone_utc_offset=-8 +County "CA, Stanislaus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0600990.epw site_zip_code=95355 site_time_zone_utc_offset=-8 +County "CA, Sutter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601010.epw site_zip_code=95991 site_time_zone_utc_offset=-8 +County "CA, Tehama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601030.epw site_zip_code=96080 site_time_zone_utc_offset=-8 +County "CA, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601050.epw site_zip_code=96091 site_time_zone_utc_offset=-8 +County "CA, Tulare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601070.epw site_zip_code=93274 site_time_zone_utc_offset=-8 +County "CA, Tuolumne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601090.epw site_zip_code=95370 site_time_zone_utc_offset=-8 +County "CA, Ventura County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601110.epw site_zip_code=93065 site_time_zone_utc_offset=-8 +County "CA, Yolo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601130.epw site_zip_code=95616 site_time_zone_utc_offset=-8 +County "CA, Yuba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0601150.epw site_zip_code=95901 site_time_zone_utc_offset=-8 +County "CO, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800010.epw site_zip_code=80229 site_time_zone_utc_offset=-7 +County "CO, Alamosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800030.epw site_zip_code=81101 site_time_zone_utc_offset=-7 +County "CO, Arapahoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800050.epw site_zip_code=80013 site_time_zone_utc_offset=-7 +County "CO, Archuleta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800070.epw site_zip_code=81147 site_time_zone_utc_offset=-7 +County "CO, Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800090.epw site_zip_code=81073 site_time_zone_utc_offset=-7 +County "CO, Bent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800110.epw site_zip_code=81054 site_time_zone_utc_offset=-7 +County "CO, Boulder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800130.epw site_zip_code=80501 site_time_zone_utc_offset=-7 +County "CO, Broomfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800140.epw site_zip_code=80020 site_time_zone_utc_offset=-7 +County "CO, Chaffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800150.epw site_zip_code=81201 site_time_zone_utc_offset=-7 +County "CO, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800170.epw site_zip_code=80810 site_time_zone_utc_offset=-7 +County "CO, Clear Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800190.epw site_zip_code=80439 site_time_zone_utc_offset=-7 +County "CO, Conejos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800210.epw site_zip_code=81120 site_time_zone_utc_offset=-7 +County "CO, Costilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800230.epw site_zip_code=81133 site_time_zone_utc_offset=-7 +County "CO, Crowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800250.epw site_zip_code=81063 site_time_zone_utc_offset=-7 +County "CO, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800270.epw site_zip_code=81252 site_time_zone_utc_offset=-7 +County "CO, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800290.epw site_zip_code=81416 site_time_zone_utc_offset=-7 +County "CO, Denver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800310.epw site_zip_code=80211 site_time_zone_utc_offset=-7 +County "CO, Dolores County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800330.epw site_zip_code=81324 site_time_zone_utc_offset=-7 +County "CO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800350.epw site_zip_code=80134 site_time_zone_utc_offset=-7 +County "CO, Eagle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800370.epw site_zip_code=81620 site_time_zone_utc_offset=-7 +County "CO, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800410.epw site_zip_code=80918 site_time_zone_utc_offset=-7 +County "CO, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800390.epw site_zip_code=80107 site_time_zone_utc_offset=-7 +County "CO, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800430.epw site_zip_code=81212 site_time_zone_utc_offset=-7 +County "CO, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800450.epw site_zip_code=81601 site_time_zone_utc_offset=-7 +County "CO, Gilpin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800470.epw site_zip_code=80422 site_time_zone_utc_offset=-7 +County "CO, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800490.epw site_zip_code=80459 site_time_zone_utc_offset=-7 +County "CO, Gunnison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800510.epw site_zip_code=81230 site_time_zone_utc_offset=-7 +County "CO, Hinsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800530.epw site_zip_code=81235 site_time_zone_utc_offset=-7 +County "CO, Huerfano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800550.epw site_zip_code=81089 site_time_zone_utc_offset=-7 +County "CO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800570.epw site_zip_code=80480 site_time_zone_utc_offset=-7 +County "CO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800590.epw site_zip_code=80127 site_time_zone_utc_offset=-7 +County "CO, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800610.epw site_zip_code=81036 site_time_zone_utc_offset=-7 +County "CO, Kit Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800630.epw site_zip_code=80807 site_time_zone_utc_offset=-7 +County "CO, La Plata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800670.epw site_zip_code=81301 site_time_zone_utc_offset=-7 +County "CO, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800650.epw site_zip_code=80461 site_time_zone_utc_offset=-7 +County "CO, Larimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800690.epw site_zip_code=80525 site_time_zone_utc_offset=-7 +County "CO, Las Animas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800710.epw site_zip_code=81082 site_time_zone_utc_offset=-7 +County "CO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800730.epw site_zip_code=80828 site_time_zone_utc_offset=-7 +County "CO, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800750.epw site_zip_code=80751 site_time_zone_utc_offset=-7 +County "CO, Mesa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800770.epw site_zip_code=81504 site_time_zone_utc_offset=-7 +County "CO, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800790.epw site_zip_code=81130 site_time_zone_utc_offset=-7 +County "CO, Moffat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800810.epw site_zip_code=81625 site_time_zone_utc_offset=-7 +County "CO, Montezuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800830.epw site_zip_code=81321 site_time_zone_utc_offset=-7 +County "CO, Montrose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800850.epw site_zip_code=81401 site_time_zone_utc_offset=-7 +County "CO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800870.epw site_zip_code=80701 site_time_zone_utc_offset=-7 +County "CO, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800890.epw site_zip_code=81050 site_time_zone_utc_offset=-7 +County "CO, Ouray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800910.epw site_zip_code=81432 site_time_zone_utc_offset=-7 +County "CO, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800930.epw site_zip_code=80421 site_time_zone_utc_offset=-7 +County "CO, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800950.epw site_zip_code=80734 site_time_zone_utc_offset=-7 +County "CO, Pitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800970.epw site_zip_code=81612 site_time_zone_utc_offset=-7 +County "CO, Prowers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0800990.epw site_zip_code=81052 site_time_zone_utc_offset=-7 +County "CO, Pueblo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801010.epw site_zip_code=81001 site_time_zone_utc_offset=-7 +County "CO, Rio Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801030.epw site_zip_code=81648 site_time_zone_utc_offset=-7 +County "CO, Rio Grande County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801050.epw site_zip_code=81144 site_time_zone_utc_offset=-7 +County "CO, Routt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801070.epw site_zip_code=80487 site_time_zone_utc_offset=-7 +County "CO, Saguache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801090.epw site_zip_code=81125 site_time_zone_utc_offset=-7 +County "CO, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801110.epw site_zip_code=81433 site_time_zone_utc_offset=-7 +County "CO, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801130.epw site_zip_code=81435 site_time_zone_utc_offset=-7 +County "CO, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801150.epw site_zip_code=80737 site_time_zone_utc_offset=-7 +County "CO, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801170.epw site_zip_code=80424 site_time_zone_utc_offset=-7 +County "CO, Teller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801190.epw site_zip_code=80863 site_time_zone_utc_offset=-7 +County "CO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801210.epw site_zip_code=80720 site_time_zone_utc_offset=-7 +County "CO, Weld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801230.epw site_zip_code=80634 site_time_zone_utc_offset=-7 +County "CO, Yuma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0801250.epw site_zip_code=80759 site_time_zone_utc_offset=-7 +County "CT, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900010.epw site_zip_code=06902 site_time_zone_utc_offset=-5 +County "CT, Hartford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900030.epw site_zip_code=06010 site_time_zone_utc_offset=-5 +County "CT, Litchfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900050.epw site_zip_code=06790 site_time_zone_utc_offset=-5 +County "CT, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900070.epw site_zip_code=06457 site_time_zone_utc_offset=-5 +County "CT, New Haven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900090.epw site_zip_code=06516 site_time_zone_utc_offset=-5 +County "CT, New London County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900110.epw site_zip_code=06360 site_time_zone_utc_offset=-5 +County "CT, Tolland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900130.epw site_zip_code=06066 site_time_zone_utc_offset=-5 +County "CT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G0900150.epw site_zip_code=06226 site_time_zone_utc_offset=-5 +County "DC, District of Columbia" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1100010.epw site_zip_code=20002 site_time_zone_utc_offset=-5 +County "DE, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000010.epw site_zip_code=19904 site_time_zone_utc_offset=-5 +County "DE, New Castle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000030.epw site_zip_code=19720 site_time_zone_utc_offset=-5 +County "DE, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1000050.epw site_zip_code=19966 site_time_zone_utc_offset=-5 +County "FL, Alachua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200010.epw site_zip_code=32608 site_time_zone_utc_offset=-5 +County "FL, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200030.epw site_zip_code=32063 site_time_zone_utc_offset=-5 +County "FL, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200050.epw site_zip_code=32404 site_time_zone_utc_offset=-6 +County "FL, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200070.epw site_zip_code=32091 site_time_zone_utc_offset=-5 +County "FL, Brevard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200090.epw site_zip_code=32940 site_time_zone_utc_offset=-5 +County "FL, Broward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200110.epw site_zip_code=33027 site_time_zone_utc_offset=-5 +County "FL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200130.epw site_zip_code=32424 site_time_zone_utc_offset=-6 +County "FL, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200150.epw site_zip_code=33950 site_time_zone_utc_offset=-5 +County "FL, Citrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200170.epw site_zip_code=34446 site_time_zone_utc_offset=-5 +County "FL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200190.epw site_zip_code=32068 site_time_zone_utc_offset=-5 +County "FL, Collier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200210.epw site_zip_code=34112 site_time_zone_utc_offset=-5 +County "FL, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200230.epw site_zip_code=32025 site_time_zone_utc_offset=-5 +County "FL, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200270.epw site_zip_code=34266 site_time_zone_utc_offset=-5 +County "FL, Dixie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200290.epw site_zip_code=32680 site_time_zone_utc_offset=-5 +County "FL, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200310.epw site_zip_code=32256 site_time_zone_utc_offset=-5 +County "FL, Escambia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200330.epw site_zip_code=32507 site_time_zone_utc_offset=-6 +County "FL, Flagler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200350.epw site_zip_code=32137 site_time_zone_utc_offset=-5 +County "FL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200370.epw site_zip_code=32328 site_time_zone_utc_offset=-5 +County "FL, Gadsden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200390.epw site_zip_code=32351 site_time_zone_utc_offset=-5 +County "FL, Gilchrist County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200410.epw site_zip_code=32693 site_time_zone_utc_offset=-5 +County "FL, Glades County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200430.epw site_zip_code=33471 site_time_zone_utc_offset=-5 +County "FL, Gulf County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200450.epw site_zip_code=32456 site_time_zone_utc_offset=-6 +County "FL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200470.epw site_zip_code=32052 site_time_zone_utc_offset=-5 +County "FL, Hardee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200490.epw site_zip_code=33873 site_time_zone_utc_offset=-5 +County "FL, Hendry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200510.epw site_zip_code=33440 site_time_zone_utc_offset=-5 +County "FL, Hernando County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200530.epw site_zip_code=34609 site_time_zone_utc_offset=-5 +County "FL, Highlands County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200550.epw site_zip_code=33870 site_time_zone_utc_offset=-5 +County "FL, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200570.epw site_zip_code=33647 site_time_zone_utc_offset=-5 +County "FL, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200590.epw site_zip_code=32425 site_time_zone_utc_offset=-6 +County "FL, Indian River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200610.epw site_zip_code=32958 site_time_zone_utc_offset=-5 +County "FL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200630.epw site_zip_code=32446 site_time_zone_utc_offset=-6 +County "FL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200650.epw site_zip_code=32344 site_time_zone_utc_offset=-5 +County "FL, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200670.epw site_zip_code=32066 site_time_zone_utc_offset=-5 +County "FL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200690.epw site_zip_code=34711 site_time_zone_utc_offset=-5 +County "FL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200710.epw site_zip_code=34135 site_time_zone_utc_offset=-5 +County "FL, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200730.epw site_zip_code=32303 site_time_zone_utc_offset=-5 +County "FL, Levy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200750.epw site_zip_code=32696 site_time_zone_utc_offset=-5 +County "FL, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200770.epw site_zip_code=32321 site_time_zone_utc_offset=-5 +County "FL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200790.epw site_zip_code=32340 site_time_zone_utc_offset=-5 +County "FL, Manatee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200810.epw site_zip_code=34221 site_time_zone_utc_offset=-5 +County "FL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200830.epw site_zip_code=34491 site_time_zone_utc_offset=-5 +County "FL, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200850.epw site_zip_code=34997 site_time_zone_utc_offset=-5 +County "FL, Miami-Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200860.epw site_zip_code=33160 site_time_zone_utc_offset=-5 +County "FL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200870.epw site_zip_code=33040 site_time_zone_utc_offset=-5 +County "FL, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200890.epw site_zip_code=32034 site_time_zone_utc_offset=-5 +County "FL, Okaloosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200910.epw site_zip_code=32541 site_time_zone_utc_offset=-6 +County "FL, Okeechobee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200930.epw site_zip_code=34974 site_time_zone_utc_offset=-5 +County "FL, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200950.epw site_zip_code=34787 site_time_zone_utc_offset=-5 +County "FL, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200970.epw site_zip_code=34746 site_time_zone_utc_offset=-5 +County "FL, Palm Beach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1200990.epw site_zip_code=33411 site_time_zone_utc_offset=-5 +County "FL, Pasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201010.epw site_zip_code=34668 site_time_zone_utc_offset=-5 +County "FL, Pinellas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201030.epw site_zip_code=34698 site_time_zone_utc_offset=-5 +County "FL, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201050.epw site_zip_code=33810 site_time_zone_utc_offset=-5 +County "FL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201070.epw site_zip_code=32177 site_time_zone_utc_offset=-5 +County "FL, Santa Rosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201130.epw site_zip_code=32566 site_time_zone_utc_offset=-6 +County "FL, Sarasota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201150.epw site_zip_code=34293 site_time_zone_utc_offset=-5 +County "FL, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201170.epw site_zip_code=32771 site_time_zone_utc_offset=-5 +County "FL, St. Johns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201090.epw site_zip_code=32259 site_time_zone_utc_offset=-5 +County "FL, St. Lucie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201110.epw site_zip_code=34953 site_time_zone_utc_offset=-5 +County "FL, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201190.epw site_zip_code=32162 site_time_zone_utc_offset=-5 +County "FL, Suwannee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201210.epw site_zip_code=32060 site_time_zone_utc_offset=-5 +County "FL, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201230.epw site_zip_code=32348 site_time_zone_utc_offset=-5 +County "FL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201250.epw site_zip_code=32054 site_time_zone_utc_offset=-5 +County "FL, Volusia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201270.epw site_zip_code=32174 site_time_zone_utc_offset=-5 +County "FL, Wakulla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201290.epw site_zip_code=32327 site_time_zone_utc_offset=-5 +County "FL, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201310.epw site_zip_code=32459 site_time_zone_utc_offset=-6 +County "FL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1201330.epw site_zip_code=32428 site_time_zone_utc_offset=-6 +County "GA, Appling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300010.epw site_zip_code=31513 site_time_zone_utc_offset=-5 +County "GA, Atkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300030.epw site_zip_code=31642 site_time_zone_utc_offset=-5 +County "GA, Bacon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300050.epw site_zip_code=31510 site_time_zone_utc_offset=-5 +County "GA, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300070.epw site_zip_code=39870 site_time_zone_utc_offset=-5 +County "GA, Baldwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300090.epw site_zip_code=31061 site_time_zone_utc_offset=-5 +County "GA, Banks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300110.epw site_zip_code=30547 site_time_zone_utc_offset=-5 +County "GA, Barrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300130.epw site_zip_code=30680 site_time_zone_utc_offset=-5 +County "GA, Bartow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300150.epw site_zip_code=30120 site_time_zone_utc_offset=-5 +County "GA, Ben Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300170.epw site_zip_code=31750 site_time_zone_utc_offset=-5 +County "GA, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300190.epw site_zip_code=31639 site_time_zone_utc_offset=-5 +County "GA, Bibb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300210.epw site_zip_code=31204 site_time_zone_utc_offset=-5 +County "GA, Bleckley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300230.epw site_zip_code=31014 site_time_zone_utc_offset=-5 +County "GA, Brantley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300250.epw site_zip_code=31553 site_time_zone_utc_offset=-5 +County "GA, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300270.epw site_zip_code=31643 site_time_zone_utc_offset=-5 +County "GA, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300290.epw site_zip_code=31324 site_time_zone_utc_offset=-5 +County "GA, Bulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300310.epw site_zip_code=30458 site_time_zone_utc_offset=-5 +County "GA, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300330.epw site_zip_code=30830 site_time_zone_utc_offset=-5 +County "GA, Butts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300350.epw site_zip_code=30233 site_time_zone_utc_offset=-5 +County "GA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300370.epw site_zip_code=39846 site_time_zone_utc_offset=-5 +County "GA, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300390.epw site_zip_code=31558 site_time_zone_utc_offset=-5 +County "GA, Candler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300430.epw site_zip_code=30439 site_time_zone_utc_offset=-5 +County "GA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300450.epw site_zip_code=30117 site_time_zone_utc_offset=-5 +County "GA, Catoosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300470.epw site_zip_code=30736 site_time_zone_utc_offset=-5 +County "GA, Charlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300490.epw site_zip_code=31537 site_time_zone_utc_offset=-5 +County "GA, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300510.epw site_zip_code=31419 site_time_zone_utc_offset=-5 +County "GA, Chattahoochee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300530.epw site_zip_code=31905 site_time_zone_utc_offset=-5 +County "GA, Chattooga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300550.epw site_zip_code=30747 site_time_zone_utc_offset=-5 +County "GA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300570.epw site_zip_code=30188 site_time_zone_utc_offset=-5 +County "GA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300590.epw site_zip_code=30606 site_time_zone_utc_offset=-5 +County "GA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300610.epw site_zip_code=39851 site_time_zone_utc_offset=-5 +County "GA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300630.epw site_zip_code=30236 site_time_zone_utc_offset=-5 +County "GA, Clinch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300650.epw site_zip_code=31634 site_time_zone_utc_offset=-5 +County "GA, Cobb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300670.epw site_zip_code=30080 site_time_zone_utc_offset=-5 +County "GA, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300690.epw site_zip_code=31533 site_time_zone_utc_offset=-5 +County "GA, Colquitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300710.epw site_zip_code=31768 site_time_zone_utc_offset=-5 +County "GA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300730.epw site_zip_code=30809 site_time_zone_utc_offset=-5 +County "GA, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300750.epw site_zip_code=31620 site_time_zone_utc_offset=-5 +County "GA, Coweta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300770.epw site_zip_code=30263 site_time_zone_utc_offset=-5 +County "GA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300790.epw site_zip_code=31078 site_time_zone_utc_offset=-5 +County "GA, Crisp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300810.epw site_zip_code=31015 site_time_zone_utc_offset=-5 +County "GA, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300830.epw site_zip_code=30752 site_time_zone_utc_offset=-5 +County "GA, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300850.epw site_zip_code=30534 site_time_zone_utc_offset=-5 +County "GA, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300890.epw site_zip_code=30058 site_time_zone_utc_offset=-5 +County "GA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300870.epw site_zip_code=39819 site_time_zone_utc_offset=-5 +County "GA, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300910.epw site_zip_code=31023 site_time_zone_utc_offset=-5 +County "GA, Dooly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300930.epw site_zip_code=31092 site_time_zone_utc_offset=-5 +County "GA, Dougherty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300950.epw site_zip_code=31705 site_time_zone_utc_offset=-5 +County "GA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300970.epw site_zip_code=30135 site_time_zone_utc_offset=-5 +County "GA, Early County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1300990.epw site_zip_code=39823 site_time_zone_utc_offset=-5 +County "GA, Echols County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301010.epw site_zip_code=31636 site_time_zone_utc_offset=-5 +County "GA, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301030.epw site_zip_code=31326 site_time_zone_utc_offset=-5 +County "GA, Elbert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301050.epw site_zip_code=30635 site_time_zone_utc_offset=-5 +County "GA, Emanuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301070.epw site_zip_code=30401 site_time_zone_utc_offset=-5 +County "GA, Evans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301090.epw site_zip_code=30417 site_time_zone_utc_offset=-5 +County "GA, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301110.epw site_zip_code=30513 site_time_zone_utc_offset=-5 +County "GA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301130.epw site_zip_code=30269 site_time_zone_utc_offset=-5 +County "GA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301150.epw site_zip_code=30165 site_time_zone_utc_offset=-5 +County "GA, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301170.epw site_zip_code=30040 site_time_zone_utc_offset=-5 +County "GA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301190.epw site_zip_code=30553 site_time_zone_utc_offset=-5 +County "GA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301210.epw site_zip_code=30318 site_time_zone_utc_offset=-5 +County "GA, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301230.epw site_zip_code=30540 site_time_zone_utc_offset=-5 +County "GA, Glascock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301250.epw site_zip_code=30810 site_time_zone_utc_offset=-5 +County "GA, Glynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301270.epw site_zip_code=31525 site_time_zone_utc_offset=-5 +County "GA, Gordon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301290.epw site_zip_code=30701 site_time_zone_utc_offset=-5 +County "GA, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301310.epw site_zip_code=39828 site_time_zone_utc_offset=-5 +County "GA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301330.epw site_zip_code=30642 site_time_zone_utc_offset=-5 +County "GA, Gwinnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301350.epw site_zip_code=30044 site_time_zone_utc_offset=-5 +County "GA, Habersham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301370.epw site_zip_code=30531 site_time_zone_utc_offset=-5 +County "GA, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301390.epw site_zip_code=30542 site_time_zone_utc_offset=-5 +County "GA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301410.epw site_zip_code=31087 site_time_zone_utc_offset=-5 +County "GA, Haralson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301430.epw site_zip_code=30110 site_time_zone_utc_offset=-5 +County "GA, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301450.epw site_zip_code=31804 site_time_zone_utc_offset=-5 +County "GA, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301470.epw site_zip_code=30643 site_time_zone_utc_offset=-5 +County "GA, Heard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301490.epw site_zip_code=30217 site_time_zone_utc_offset=-5 +County "GA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301510.epw site_zip_code=30253 site_time_zone_utc_offset=-5 +County "GA, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301530.epw site_zip_code=31088 site_time_zone_utc_offset=-5 +County "GA, Irwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301550.epw site_zip_code=31774 site_time_zone_utc_offset=-5 +County "GA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301570.epw site_zip_code=30549 site_time_zone_utc_offset=-5 +County "GA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301590.epw site_zip_code=31064 site_time_zone_utc_offset=-5 +County "GA, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301610.epw site_zip_code=31539 site_time_zone_utc_offset=-5 +County "GA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301630.epw site_zip_code=30434 site_time_zone_utc_offset=-5 +County "GA, Jenkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301650.epw site_zip_code=30442 site_time_zone_utc_offset=-5 +County "GA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301670.epw site_zip_code=31096 site_time_zone_utc_offset=-5 +County "GA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301690.epw site_zip_code=31032 site_time_zone_utc_offset=-5 +County "GA, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301710.epw site_zip_code=30204 site_time_zone_utc_offset=-5 +County "GA, Lanier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301730.epw site_zip_code=31635 site_time_zone_utc_offset=-5 +County "GA, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301750.epw site_zip_code=31021 site_time_zone_utc_offset=-5 +County "GA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301770.epw site_zip_code=31763 site_time_zone_utc_offset=-5 +County "GA, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301790.epw site_zip_code=31313 site_time_zone_utc_offset=-5 +County "GA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301810.epw site_zip_code=30817 site_time_zone_utc_offset=-5 +County "GA, Long County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301830.epw site_zip_code=31316 site_time_zone_utc_offset=-5 +County "GA, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301850.epw site_zip_code=31601 site_time_zone_utc_offset=-5 +County "GA, Lumpkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301870.epw site_zip_code=30533 site_time_zone_utc_offset=-5 +County "GA, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301930.epw site_zip_code=31063 site_time_zone_utc_offset=-5 +County "GA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301950.epw site_zip_code=30633 site_time_zone_utc_offset=-5 +County "GA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301970.epw site_zip_code=31803 site_time_zone_utc_offset=-5 +County "GA, McDuffie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301890.epw site_zip_code=30824 site_time_zone_utc_offset=-5 +County "GA, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301910.epw site_zip_code=31331 site_time_zone_utc_offset=-5 +County "GA, Meriwether County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1301990.epw site_zip_code=31816 site_time_zone_utc_offset=-5 +County "GA, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302010.epw site_zip_code=39837 site_time_zone_utc_offset=-5 +County "GA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302050.epw site_zip_code=31730 site_time_zone_utc_offset=-5 +County "GA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302070.epw site_zip_code=31029 site_time_zone_utc_offset=-5 +County "GA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302090.epw site_zip_code=30445 site_time_zone_utc_offset=-5 +County "GA, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302110.epw site_zip_code=30650 site_time_zone_utc_offset=-5 +County "GA, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302130.epw site_zip_code=30705 site_time_zone_utc_offset=-5 +County "GA, Muscogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302150.epw site_zip_code=31907 site_time_zone_utc_offset=-5 +County "GA, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302170.epw site_zip_code=30016 site_time_zone_utc_offset=-5 +County "GA, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302190.epw site_zip_code=30677 site_time_zone_utc_offset=-5 +County "GA, Oglethorpe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302210.epw site_zip_code=30683 site_time_zone_utc_offset=-5 +County "GA, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302230.epw site_zip_code=30132 site_time_zone_utc_offset=-5 +County "GA, Peach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302250.epw site_zip_code=31030 site_time_zone_utc_offset=-5 +County "GA, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302270.epw site_zip_code=30143 site_time_zone_utc_offset=-5 +County "GA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302290.epw site_zip_code=31516 site_time_zone_utc_offset=-5 +County "GA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302310.epw site_zip_code=30292 site_time_zone_utc_offset=-5 +County "GA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302330.epw site_zip_code=30125 site_time_zone_utc_offset=-5 +County "GA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302350.epw site_zip_code=31036 site_time_zone_utc_offset=-5 +County "GA, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302370.epw site_zip_code=31024 site_time_zone_utc_offset=-5 +County "GA, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302390.epw site_zip_code=39854 site_time_zone_utc_offset=-5 +County "GA, Rabun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302410.epw site_zip_code=30525 site_time_zone_utc_offset=-5 +County "GA, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302430.epw site_zip_code=39840 site_time_zone_utc_offset=-5 +County "GA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302450.epw site_zip_code=30909 site_time_zone_utc_offset=-5 +County "GA, Rockdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302470.epw site_zip_code=30094 site_time_zone_utc_offset=-5 +County "GA, Schley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302490.epw site_zip_code=31806 site_time_zone_utc_offset=-5 +County "GA, Screven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302510.epw site_zip_code=30467 site_time_zone_utc_offset=-5 +County "GA, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302530.epw site_zip_code=39845 site_time_zone_utc_offset=-5 +County "GA, Spalding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302550.epw site_zip_code=30223 site_time_zone_utc_offset=-5 +County "GA, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302570.epw site_zip_code=30577 site_time_zone_utc_offset=-5 +County "GA, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302590.epw site_zip_code=31825 site_time_zone_utc_offset=-5 +County "GA, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302610.epw site_zip_code=31709 site_time_zone_utc_offset=-5 +County "GA, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302630.epw site_zip_code=31827 site_time_zone_utc_offset=-5 +County "GA, Taliaferro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302650.epw site_zip_code=30631 site_time_zone_utc_offset=-5 +County "GA, Tattnall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302670.epw site_zip_code=30427 site_time_zone_utc_offset=-5 +County "GA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302690.epw site_zip_code=31006 site_time_zone_utc_offset=-5 +County "GA, Telfair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302710.epw site_zip_code=31055 site_time_zone_utc_offset=-5 +County "GA, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302730.epw site_zip_code=39842 site_time_zone_utc_offset=-5 +County "GA, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302750.epw site_zip_code=31792 site_time_zone_utc_offset=-5 +County "GA, Tift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302770.epw site_zip_code=31794 site_time_zone_utc_offset=-5 +County "GA, Toombs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302790.epw site_zip_code=30474 site_time_zone_utc_offset=-5 +County "GA, Towns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302810.epw site_zip_code=30546 site_time_zone_utc_offset=-5 +County "GA, Treutlen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302830.epw site_zip_code=30457 site_time_zone_utc_offset=-5 +County "GA, Troup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302850.epw site_zip_code=30241 site_time_zone_utc_offset=-5 +County "GA, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302870.epw site_zip_code=31714 site_time_zone_utc_offset=-5 +County "GA, Twiggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302890.epw site_zip_code=31044 site_time_zone_utc_offset=-5 +County "GA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302910.epw site_zip_code=30512 site_time_zone_utc_offset=-5 +County "GA, Upson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302930.epw site_zip_code=30286 site_time_zone_utc_offset=-5 +County "GA, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302950.epw site_zip_code=30741 site_time_zone_utc_offset=-5 +County "GA, Walton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302970.epw site_zip_code=30052 site_time_zone_utc_offset=-5 +County "GA, Ware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1302990.epw site_zip_code=31503 site_time_zone_utc_offset=-5 +County "GA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303010.epw site_zip_code=30828 site_time_zone_utc_offset=-5 +County "GA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303030.epw site_zip_code=31082 site_time_zone_utc_offset=-5 +County "GA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303050.epw site_zip_code=31545 site_time_zone_utc_offset=-5 +County "GA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303070.epw site_zip_code=31824 site_time_zone_utc_offset=-5 +County "GA, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303090.epw site_zip_code=30428 site_time_zone_utc_offset=-5 +County "GA, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303110.epw site_zip_code=30528 site_time_zone_utc_offset=-5 +County "GA, Whitfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303130.epw site_zip_code=30721 site_time_zone_utc_offset=-5 +County "GA, Wilcox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303150.epw site_zip_code=31001 site_time_zone_utc_offset=-5 +County "GA, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303170.epw site_zip_code=30673 site_time_zone_utc_offset=-5 +County "GA, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303190.epw site_zip_code=31031 site_time_zone_utc_offset=-5 +County "GA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1303210.epw site_zip_code=31791 site_time_zone_utc_offset=-5 +County "HI, Hawaii County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500010.epw site_zip_code=96721 site_time_zone_utc_offset=-10 +County "HI, Honolulu County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500030.epw site_zip_code=96813 site_time_zone_utc_offset=-10 +County "HI, Kalawao County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500050.epw site_zip_code=96742 site_time_zone_utc_offset=-10 +County "HI, Kauai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500070.epw site_zip_code=96746 site_time_zone_utc_offset=-10 +County "HI, Maui County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1500090.epw site_zip_code=96793 site_time_zone_utc_offset=-10 +County "IA, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900010.epw site_zip_code=50849 site_time_zone_utc_offset=-6 +County "IA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900030.epw site_zip_code=50841 site_time_zone_utc_offset=-6 +County "IA, Allamakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900050.epw site_zip_code=52172 site_time_zone_utc_offset=-6 +County "IA, Appanoose County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900070.epw site_zip_code=52544 site_time_zone_utc_offset=-6 +County "IA, Audubon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900090.epw site_zip_code=50025 site_time_zone_utc_offset=-6 +County "IA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900110.epw site_zip_code=52349 site_time_zone_utc_offset=-6 +County "IA, Black Hawk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900130.epw site_zip_code=50613 site_time_zone_utc_offset=-6 +County "IA, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900150.epw site_zip_code=50036 site_time_zone_utc_offset=-6 +County "IA, Bremer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900170.epw site_zip_code=50677 site_time_zone_utc_offset=-6 +County "IA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900190.epw site_zip_code=50644 site_time_zone_utc_offset=-6 +County "IA, Buena Vista County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900210.epw site_zip_code=50588 site_time_zone_utc_offset=-6 +County "IA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900230.epw site_zip_code=50665 site_time_zone_utc_offset=-6 +County "IA, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900250.epw site_zip_code=50563 site_time_zone_utc_offset=-6 +County "IA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900270.epw site_zip_code=51401 site_time_zone_utc_offset=-6 +County "IA, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900290.epw site_zip_code=50022 site_time_zone_utc_offset=-6 +County "IA, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900310.epw site_zip_code=52772 site_time_zone_utc_offset=-6 +County "IA, Cerro Gordo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900330.epw site_zip_code=50401 site_time_zone_utc_offset=-6 +County "IA, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900350.epw site_zip_code=51012 site_time_zone_utc_offset=-6 +County "IA, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900370.epw site_zip_code=50659 site_time_zone_utc_offset=-6 +County "IA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900390.epw site_zip_code=50213 site_time_zone_utc_offset=-6 +County "IA, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900410.epw site_zip_code=51301 site_time_zone_utc_offset=-6 +County "IA, Clayton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900430.epw site_zip_code=52052 site_time_zone_utc_offset=-6 +County "IA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900450.epw site_zip_code=52732 site_time_zone_utc_offset=-6 +County "IA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900470.epw site_zip_code=51442 site_time_zone_utc_offset=-6 +County "IA, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900490.epw site_zip_code=50263 site_time_zone_utc_offset=-6 +County "IA, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900510.epw site_zip_code=52537 site_time_zone_utc_offset=-6 +County "IA, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900530.epw site_zip_code=50144 site_time_zone_utc_offset=-6 +County "IA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900550.epw site_zip_code=52057 site_time_zone_utc_offset=-6 +County "IA, Des Moines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900570.epw site_zip_code=52601 site_time_zone_utc_offset=-6 +County "IA, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900590.epw site_zip_code=51360 site_time_zone_utc_offset=-6 +County "IA, Dubuque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900610.epw site_zip_code=52001 site_time_zone_utc_offset=-6 +County "IA, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900630.epw site_zip_code=51334 site_time_zone_utc_offset=-6 +County "IA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900650.epw site_zip_code=50662 site_time_zone_utc_offset=-6 +County "IA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900670.epw site_zip_code=50616 site_time_zone_utc_offset=-6 +County "IA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900690.epw site_zip_code=50441 site_time_zone_utc_offset=-6 +County "IA, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900710.epw site_zip_code=51652 site_time_zone_utc_offset=-6 +County "IA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900730.epw site_zip_code=50129 site_time_zone_utc_offset=-6 +County "IA, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900750.epw site_zip_code=50638 site_time_zone_utc_offset=-6 +County "IA, Guthrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900770.epw site_zip_code=50216 site_time_zone_utc_offset=-6 +County "IA, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900790.epw site_zip_code=50595 site_time_zone_utc_offset=-6 +County "IA, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900810.epw site_zip_code=50438 site_time_zone_utc_offset=-6 +County "IA, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900830.epw site_zip_code=50126 site_time_zone_utc_offset=-6 +County "IA, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900850.epw site_zip_code=51555 site_time_zone_utc_offset=-6 +County "IA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900870.epw site_zip_code=52641 site_time_zone_utc_offset=-6 +County "IA, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900890.epw site_zip_code=52136 site_time_zone_utc_offset=-6 +County "IA, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900910.epw site_zip_code=50548 site_time_zone_utc_offset=-6 +County "IA, Ida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900930.epw site_zip_code=51445 site_time_zone_utc_offset=-6 +County "IA, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900950.epw site_zip_code=52361 site_time_zone_utc_offset=-6 +County "IA, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900970.epw site_zip_code=52060 site_time_zone_utc_offset=-6 +County "IA, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1900990.epw site_zip_code=50208 site_time_zone_utc_offset=-6 +County "IA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901010.epw site_zip_code=52556 site_time_zone_utc_offset=-6 +County "IA, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901030.epw site_zip_code=52240 site_time_zone_utc_offset=-6 +County "IA, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901050.epw site_zip_code=52205 site_time_zone_utc_offset=-6 +County "IA, Keokuk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901070.epw site_zip_code=52591 site_time_zone_utc_offset=-6 +County "IA, Kossuth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901090.epw site_zip_code=50511 site_time_zone_utc_offset=-6 +County "IA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901110.epw site_zip_code=52627 site_time_zone_utc_offset=-6 +County "IA, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901130.epw site_zip_code=52404 site_time_zone_utc_offset=-6 +County "IA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901150.epw site_zip_code=52653 site_time_zone_utc_offset=-6 +County "IA, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901170.epw site_zip_code=50049 site_time_zone_utc_offset=-6 +County "IA, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901190.epw site_zip_code=51246 site_time_zone_utc_offset=-6 +County "IA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901210.epw site_zip_code=50273 site_time_zone_utc_offset=-6 +County "IA, Mahaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901230.epw site_zip_code=52577 site_time_zone_utc_offset=-6 +County "IA, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901250.epw site_zip_code=50219 site_time_zone_utc_offset=-6 +County "IA, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901270.epw site_zip_code=50158 site_time_zone_utc_offset=-6 +County "IA, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901290.epw site_zip_code=51534 site_time_zone_utc_offset=-6 +County "IA, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901310.epw site_zip_code=50461 site_time_zone_utc_offset=-6 +County "IA, Monona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901330.epw site_zip_code=51040 site_time_zone_utc_offset=-6 +County "IA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901350.epw site_zip_code=52531 site_time_zone_utc_offset=-6 +County "IA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901370.epw site_zip_code=51566 site_time_zone_utc_offset=-6 +County "IA, Muscatine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901390.epw site_zip_code=52761 site_time_zone_utc_offset=-6 +County "IA, O'Brien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901410.epw site_zip_code=51201 site_time_zone_utc_offset=-6 +County "IA, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901430.epw site_zip_code=51249 site_time_zone_utc_offset=-6 +County "IA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901450.epw site_zip_code=51632 site_time_zone_utc_offset=-6 +County "IA, Palo Alto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901470.epw site_zip_code=50536 site_time_zone_utc_offset=-6 +County "IA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901490.epw site_zip_code=51031 site_time_zone_utc_offset=-6 +County "IA, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901510.epw site_zip_code=50574 site_time_zone_utc_offset=-6 +County "IA, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901530.epw site_zip_code=50023 site_time_zone_utc_offset=-6 +County "IA, Pottawattamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901550.epw site_zip_code=51503 site_time_zone_utc_offset=-6 +County "IA, Poweshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901570.epw site_zip_code=50112 site_time_zone_utc_offset=-6 +County "IA, Ringgold County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901590.epw site_zip_code=50854 site_time_zone_utc_offset=-6 +County "IA, Sac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901610.epw site_zip_code=50583 site_time_zone_utc_offset=-6 +County "IA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901630.epw site_zip_code=52722 site_time_zone_utc_offset=-6 +County "IA, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901650.epw site_zip_code=51537 site_time_zone_utc_offset=-6 +County "IA, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901670.epw site_zip_code=51250 site_time_zone_utc_offset=-6 +County "IA, Story County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901690.epw site_zip_code=50010 site_time_zone_utc_offset=-6 +County "IA, Tama County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901710.epw site_zip_code=52339 site_time_zone_utc_offset=-6 +County "IA, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901730.epw site_zip_code=50833 site_time_zone_utc_offset=-6 +County "IA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901750.epw site_zip_code=50801 site_time_zone_utc_offset=-6 +County "IA, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901770.epw site_zip_code=52565 site_time_zone_utc_offset=-6 +County "IA, Wapello County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901790.epw site_zip_code=52501 site_time_zone_utc_offset=-6 +County "IA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901810.epw site_zip_code=50125 site_time_zone_utc_offset=-6 +County "IA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901830.epw site_zip_code=52353 site_time_zone_utc_offset=-6 +County "IA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901850.epw site_zip_code=50060 site_time_zone_utc_offset=-6 +County "IA, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901870.epw site_zip_code=50501 site_time_zone_utc_offset=-6 +County "IA, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901890.epw site_zip_code=50436 site_time_zone_utc_offset=-6 +County "IA, Winneshiek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901910.epw site_zip_code=52101 site_time_zone_utc_offset=-6 +County "IA, Woodbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901930.epw site_zip_code=51106 site_time_zone_utc_offset=-6 +County "IA, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901950.epw site_zip_code=50459 site_time_zone_utc_offset=-6 +County "IA, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1901970.epw site_zip_code=50533 site_time_zone_utc_offset=-6 +County "ID, Ada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600010.epw site_zip_code=83646 site_time_zone_utc_offset=-7 +County "ID, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600030.epw site_zip_code=83612 site_time_zone_utc_offset=-7 +County "ID, Bannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600050.epw site_zip_code=83201 site_time_zone_utc_offset=-7 +County "ID, Bear Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600070.epw site_zip_code=83254 site_time_zone_utc_offset=-7 +County "ID, Benewah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600090.epw site_zip_code=83861 site_time_zone_utc_offset=-8 +County "ID, Bingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600110.epw site_zip_code=83221 site_time_zone_utc_offset=-7 +County "ID, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600130.epw site_zip_code=83333 site_time_zone_utc_offset=-7 +County "ID, Boise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600150.epw site_zip_code=83716 site_time_zone_utc_offset=-7 +County "ID, Bonner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600170.epw site_zip_code=83864 site_time_zone_utc_offset=-8 +County "ID, Bonneville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600190.epw site_zip_code=83401 site_time_zone_utc_offset=-7 +County "ID, Boundary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600210.epw site_zip_code=83805 site_time_zone_utc_offset=-8 +County "ID, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600230.epw site_zip_code=83213 site_time_zone_utc_offset=-7 +County "ID, Camas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600250.epw site_zip_code=83327 site_time_zone_utc_offset=-7 +County "ID, Canyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600270.epw site_zip_code=83686 site_time_zone_utc_offset=-7 +County "ID, Caribou County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600290.epw site_zip_code=83276 site_time_zone_utc_offset=-7 +County "ID, Cassia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600310.epw site_zip_code=83318 site_time_zone_utc_offset=-7 +County "ID, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600330.epw site_zip_code=83423 site_time_zone_utc_offset=-7 +County "ID, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600350.epw site_zip_code=83544 site_time_zone_utc_offset=-8 +County "ID, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600370.epw site_zip_code=83226 site_time_zone_utc_offset=-7 +County "ID, Elmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600390.epw site_zip_code=83647 site_time_zone_utc_offset=-7 +County "ID, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600410.epw site_zip_code=83263 site_time_zone_utc_offset=-7 +County "ID, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600430.epw site_zip_code=83445 site_time_zone_utc_offset=-7 +County "ID, Gem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600450.epw site_zip_code=83617 site_time_zone_utc_offset=-7 +County "ID, Gooding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600470.epw site_zip_code=83330 site_time_zone_utc_offset=-7 +County "ID, Idaho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600490.epw site_zip_code=83530 site_time_zone_utc_offset=-8 +County "ID, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600510.epw site_zip_code=83442 site_time_zone_utc_offset=-7 +County "ID, Jerome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600530.epw site_zip_code=83338 site_time_zone_utc_offset=-7 +County "ID, Kootenai County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600550.epw site_zip_code=83854 site_time_zone_utc_offset=-8 +County "ID, Latah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600570.epw site_zip_code=83843 site_time_zone_utc_offset=-8 +County "ID, Lemhi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600590.epw site_zip_code=83467 site_time_zone_utc_offset=-7 +County "ID, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600610.epw site_zip_code=83536 site_time_zone_utc_offset=-8 +County "ID, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600630.epw site_zip_code=83352 site_time_zone_utc_offset=-7 +County "ID, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600650.epw site_zip_code=83440 site_time_zone_utc_offset=-7 +County "ID, Minidoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600670.epw site_zip_code=83350 site_time_zone_utc_offset=-7 +County "ID, Nez Perce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600690.epw site_zip_code=83501 site_time_zone_utc_offset=-8 +County "ID, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600710.epw site_zip_code=83252 site_time_zone_utc_offset=-7 +County "ID, Owyhee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600730.epw site_zip_code=83628 site_time_zone_utc_offset=-7 +County "ID, Payette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600750.epw site_zip_code=83661 site_time_zone_utc_offset=-7 +County "ID, Power County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600770.epw site_zip_code=83211 site_time_zone_utc_offset=-7 +County "ID, Shoshone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600790.epw site_zip_code=83837 site_time_zone_utc_offset=-8 +County "ID, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600810.epw site_zip_code=83455 site_time_zone_utc_offset=-7 +County "ID, Twin Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600830.epw site_zip_code=83301 site_time_zone_utc_offset=-7 +County "ID, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600850.epw site_zip_code=83638 site_time_zone_utc_offset=-7 +County "ID, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1600870.epw site_zip_code=83672 site_time_zone_utc_offset=-7 +County "IL, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700010.epw site_zip_code=62301 site_time_zone_utc_offset=-6 +County "IL, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700030.epw site_zip_code=62914 site_time_zone_utc_offset=-6 +County "IL, Bond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700050.epw site_zip_code=62246 site_time_zone_utc_offset=-6 +County "IL, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700070.epw site_zip_code=61008 site_time_zone_utc_offset=-6 +County "IL, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700090.epw site_zip_code=62353 site_time_zone_utc_offset=-6 +County "IL, Bureau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700110.epw site_zip_code=61356 site_time_zone_utc_offset=-6 +County "IL, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700130.epw site_zip_code=62047 site_time_zone_utc_offset=-6 +County "IL, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700150.epw site_zip_code=61074 site_time_zone_utc_offset=-6 +County "IL, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700170.epw site_zip_code=62618 site_time_zone_utc_offset=-6 +County "IL, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700190.epw site_zip_code=61820 site_time_zone_utc_offset=-6 +County "IL, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700210.epw site_zip_code=62568 site_time_zone_utc_offset=-6 +County "IL, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700230.epw site_zip_code=62441 site_time_zone_utc_offset=-6 +County "IL, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700250.epw site_zip_code=62839 site_time_zone_utc_offset=-6 +County "IL, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700270.epw site_zip_code=62231 site_time_zone_utc_offset=-6 +County "IL, Coles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700290.epw site_zip_code=61938 site_time_zone_utc_offset=-6 +County "IL, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700310.epw site_zip_code=60657 site_time_zone_utc_offset=-6 +County "IL, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700330.epw site_zip_code=62454 site_time_zone_utc_offset=-6 +County "IL, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700350.epw site_zip_code=62428 site_time_zone_utc_offset=-6 +County "IL, De Witt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700390.epw site_zip_code=61727 site_time_zone_utc_offset=-6 +County "IL, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700370.epw site_zip_code=60115 site_time_zone_utc_offset=-6 +County "IL, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700410.epw site_zip_code=61953 site_time_zone_utc_offset=-6 +County "IL, DuPage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700430.epw site_zip_code=60148 site_time_zone_utc_offset=-6 +County "IL, Edgar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700450.epw site_zip_code=61944 site_time_zone_utc_offset=-6 +County "IL, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700470.epw site_zip_code=62806 site_time_zone_utc_offset=-6 +County "IL, Effingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700490.epw site_zip_code=62401 site_time_zone_utc_offset=-6 +County "IL, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700510.epw site_zip_code=62471 site_time_zone_utc_offset=-6 +County "IL, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700530.epw site_zip_code=60957 site_time_zone_utc_offset=-6 +County "IL, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700550.epw site_zip_code=62896 site_time_zone_utc_offset=-6 +County "IL, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700570.epw site_zip_code=61520 site_time_zone_utc_offset=-6 +County "IL, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700590.epw site_zip_code=62984 site_time_zone_utc_offset=-6 +County "IL, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700610.epw site_zip_code=62016 site_time_zone_utc_offset=-6 +County "IL, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700630.epw site_zip_code=60450 site_time_zone_utc_offset=-6 +County "IL, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700650.epw site_zip_code=62859 site_time_zone_utc_offset=-6 +County "IL, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700670.epw site_zip_code=62321 site_time_zone_utc_offset=-6 +County "IL, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700690.epw site_zip_code=62931 site_time_zone_utc_offset=-6 +County "IL, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700710.epw site_zip_code=61469 site_time_zone_utc_offset=-6 +County "IL, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700730.epw site_zip_code=61443 site_time_zone_utc_offset=-6 +County "IL, Iroquois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700750.epw site_zip_code=60970 site_time_zone_utc_offset=-6 +County "IL, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700770.epw site_zip_code=62901 site_time_zone_utc_offset=-6 +County "IL, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700790.epw site_zip_code=62448 site_time_zone_utc_offset=-6 +County "IL, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700810.epw site_zip_code=62864 site_time_zone_utc_offset=-6 +County "IL, Jersey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700830.epw site_zip_code=62052 site_time_zone_utc_offset=-6 +County "IL, Jo Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700850.epw site_zip_code=61036 site_time_zone_utc_offset=-6 +County "IL, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700870.epw site_zip_code=62995 site_time_zone_utc_offset=-6 +County "IL, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700890.epw site_zip_code=60506 site_time_zone_utc_offset=-6 +County "IL, Kankakee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700910.epw site_zip_code=60901 site_time_zone_utc_offset=-6 +County "IL, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700930.epw site_zip_code=60543 site_time_zone_utc_offset=-6 +County "IL, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700950.epw site_zip_code=61401 site_time_zone_utc_offset=-6 +County "IL, LaSalle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700990.epw site_zip_code=61350 site_time_zone_utc_offset=-6 +County "IL, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1700970.epw site_zip_code=60085 site_time_zone_utc_offset=-6 +County "IL, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701010.epw site_zip_code=62439 site_time_zone_utc_offset=-6 +County "IL, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701030.epw site_zip_code=61021 site_time_zone_utc_offset=-6 +County "IL, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701050.epw site_zip_code=61764 site_time_zone_utc_offset=-6 +County "IL, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701070.epw site_zip_code=62656 site_time_zone_utc_offset=-6 +County "IL, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701150.epw site_zip_code=62521 site_time_zone_utc_offset=-6 +County "IL, Macoupin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701170.epw site_zip_code=62626 site_time_zone_utc_offset=-6 +County "IL, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701190.epw site_zip_code=62040 site_time_zone_utc_offset=-6 +County "IL, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701210.epw site_zip_code=62801 site_time_zone_utc_offset=-6 +County "IL, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701230.epw site_zip_code=61540 site_time_zone_utc_offset=-6 +County "IL, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701250.epw site_zip_code=62644 site_time_zone_utc_offset=-6 +County "IL, Massac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701270.epw site_zip_code=62960 site_time_zone_utc_offset=-6 +County "IL, McDonough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701090.epw site_zip_code=61455 site_time_zone_utc_offset=-6 +County "IL, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701110.epw site_zip_code=60014 site_time_zone_utc_offset=-6 +County "IL, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701130.epw site_zip_code=61761 site_time_zone_utc_offset=-6 +County "IL, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701290.epw site_zip_code=62675 site_time_zone_utc_offset=-6 +County "IL, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701310.epw site_zip_code=61231 site_time_zone_utc_offset=-6 +County "IL, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701330.epw site_zip_code=62298 site_time_zone_utc_offset=-6 +County "IL, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701350.epw site_zip_code=62056 site_time_zone_utc_offset=-6 +County "IL, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701370.epw site_zip_code=62650 site_time_zone_utc_offset=-6 +County "IL, Moultrie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701390.epw site_zip_code=61951 site_time_zone_utc_offset=-6 +County "IL, Ogle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701410.epw site_zip_code=61068 site_time_zone_utc_offset=-6 +County "IL, Peoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701430.epw site_zip_code=61604 site_time_zone_utc_offset=-6 +County "IL, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701450.epw site_zip_code=62832 site_time_zone_utc_offset=-6 +County "IL, Piatt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701470.epw site_zip_code=61856 site_time_zone_utc_offset=-6 +County "IL, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701490.epw site_zip_code=62363 site_time_zone_utc_offset=-6 +County "IL, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701510.epw site_zip_code=62938 site_time_zone_utc_offset=-6 +County "IL, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701530.epw site_zip_code=62964 site_time_zone_utc_offset=-6 +County "IL, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701550.epw site_zip_code=61326 site_time_zone_utc_offset=-6 +County "IL, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701570.epw site_zip_code=62286 site_time_zone_utc_offset=-6 +County "IL, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701590.epw site_zip_code=62450 site_time_zone_utc_offset=-6 +County "IL, Rock Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701610.epw site_zip_code=61265 site_time_zone_utc_offset=-6 +County "IL, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701650.epw site_zip_code=62946 site_time_zone_utc_offset=-6 +County "IL, Sangamon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701670.epw site_zip_code=62704 site_time_zone_utc_offset=-6 +County "IL, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701690.epw site_zip_code=62681 site_time_zone_utc_offset=-6 +County "IL, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701710.epw site_zip_code=62694 site_time_zone_utc_offset=-6 +County "IL, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701730.epw site_zip_code=62565 site_time_zone_utc_offset=-6 +County "IL, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701630.epw site_zip_code=62269 site_time_zone_utc_offset=-6 +County "IL, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701750.epw site_zip_code=61491 site_time_zone_utc_offset=-6 +County "IL, Stephenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701770.epw site_zip_code=61032 site_time_zone_utc_offset=-6 +County "IL, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701790.epw site_zip_code=61554 site_time_zone_utc_offset=-6 +County "IL, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701810.epw site_zip_code=62906 site_time_zone_utc_offset=-6 +County "IL, Vermilion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701830.epw site_zip_code=61832 site_time_zone_utc_offset=-6 +County "IL, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701850.epw site_zip_code=62863 site_time_zone_utc_offset=-6 +County "IL, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701870.epw site_zip_code=61462 site_time_zone_utc_offset=-6 +County "IL, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701890.epw site_zip_code=62263 site_time_zone_utc_offset=-6 +County "IL, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701910.epw site_zip_code=62837 site_time_zone_utc_offset=-6 +County "IL, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701930.epw site_zip_code=62821 site_time_zone_utc_offset=-6 +County "IL, Whiteside County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701950.epw site_zip_code=61081 site_time_zone_utc_offset=-6 +County "IL, Will County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701970.epw site_zip_code=60435 site_time_zone_utc_offset=-6 +County "IL, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1701990.epw site_zip_code=62959 site_time_zone_utc_offset=-6 +County "IL, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702010.epw site_zip_code=61107 site_time_zone_utc_offset=-6 +County "IL, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1702030.epw site_zip_code=61548 site_time_zone_utc_offset=-6 +County "IN, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800010.epw site_zip_code=46733 site_time_zone_utc_offset=-5 +County "IN, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800030.epw site_zip_code=46835 site_time_zone_utc_offset=-5 +County "IN, Bartholomew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800050.epw site_zip_code=47201 site_time_zone_utc_offset=-5 +County "IN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800070.epw site_zip_code=47944 site_time_zone_utc_offset=-5 +County "IN, Blackford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800090.epw site_zip_code=47348 site_time_zone_utc_offset=-5 +County "IN, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800110.epw site_zip_code=46077 site_time_zone_utc_offset=-5 +County "IN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800130.epw site_zip_code=47448 site_time_zone_utc_offset=-5 +County "IN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800150.epw site_zip_code=46923 site_time_zone_utc_offset=-5 +County "IN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800170.epw site_zip_code=46947 site_time_zone_utc_offset=-5 +County "IN, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800190.epw site_zip_code=47130 site_time_zone_utc_offset=-5 +County "IN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800210.epw site_zip_code=47834 site_time_zone_utc_offset=-5 +County "IN, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800230.epw site_zip_code=46041 site_time_zone_utc_offset=-5 +County "IN, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800250.epw site_zip_code=47118 site_time_zone_utc_offset=-5 +County "IN, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800270.epw site_zip_code=47501 site_time_zone_utc_offset=-5 +County "IN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800330.epw site_zip_code=46706 site_time_zone_utc_offset=-5 +County "IN, Dearborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800290.epw site_zip_code=47025 site_time_zone_utc_offset=-5 +County "IN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800310.epw site_zip_code=47240 site_time_zone_utc_offset=-5 +County "IN, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800350.epw site_zip_code=47304 site_time_zone_utc_offset=-5 +County "IN, Dubois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800370.epw site_zip_code=47546 site_time_zone_utc_offset=-5 +County "IN, Elkhart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800390.epw site_zip_code=46514 site_time_zone_utc_offset=-5 +County "IN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800410.epw site_zip_code=47331 site_time_zone_utc_offset=-5 +County "IN, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800430.epw site_zip_code=47150 site_time_zone_utc_offset=-5 +County "IN, Fountain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800450.epw site_zip_code=47918 site_time_zone_utc_offset=-5 +County "IN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800470.epw site_zip_code=47012 site_time_zone_utc_offset=-5 +County "IN, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800490.epw site_zip_code=46975 site_time_zone_utc_offset=-5 +County "IN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800510.epw site_zip_code=47670 site_time_zone_utc_offset=-6 +County "IN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800530.epw site_zip_code=46953 site_time_zone_utc_offset=-5 +County "IN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800550.epw site_zip_code=47441 site_time_zone_utc_offset=-5 +County "IN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800570.epw site_zip_code=46032 site_time_zone_utc_offset=-5 +County "IN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800590.epw site_zip_code=46140 site_time_zone_utc_offset=-5 +County "IN, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800610.epw site_zip_code=47112 site_time_zone_utc_offset=-5 +County "IN, Hendricks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800630.epw site_zip_code=46112 site_time_zone_utc_offset=-5 +County "IN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800650.epw site_zip_code=47362 site_time_zone_utc_offset=-5 +County "IN, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800670.epw site_zip_code=46901 site_time_zone_utc_offset=-5 +County "IN, Huntington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800690.epw site_zip_code=46750 site_time_zone_utc_offset=-5 +County "IN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800710.epw site_zip_code=47274 site_time_zone_utc_offset=-5 +County "IN, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800730.epw site_zip_code=47978 site_time_zone_utc_offset=-6 +County "IN, Jay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800750.epw site_zip_code=47371 site_time_zone_utc_offset=-5 +County "IN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800770.epw site_zip_code=47250 site_time_zone_utc_offset=-5 +County "IN, Jennings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800790.epw site_zip_code=47265 site_time_zone_utc_offset=-5 +County "IN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800810.epw site_zip_code=46143 site_time_zone_utc_offset=-5 +County "IN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800830.epw site_zip_code=47591 site_time_zone_utc_offset=-5 +County "IN, Kosciusko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800850.epw site_zip_code=46580 site_time_zone_utc_offset=-5 +County "IN, LaGrange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800870.epw site_zip_code=46761 site_time_zone_utc_offset=-5 +County "IN, LaPorte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800910.epw site_zip_code=46360 site_time_zone_utc_offset=-6 +County "IN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800890.epw site_zip_code=46307 site_time_zone_utc_offset=-6 +County "IN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800930.epw site_zip_code=47421 site_time_zone_utc_offset=-5 +County "IN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800950.epw site_zip_code=46016 site_time_zone_utc_offset=-5 +County "IN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800970.epw site_zip_code=46227 site_time_zone_utc_offset=-5 +County "IN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1800990.epw site_zip_code=46563 site_time_zone_utc_offset=-5 +County "IN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801010.epw site_zip_code=47581 site_time_zone_utc_offset=-5 +County "IN, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801030.epw site_zip_code=46970 site_time_zone_utc_offset=-5 +County "IN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801050.epw site_zip_code=47401 site_time_zone_utc_offset=-5 +County "IN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801070.epw site_zip_code=47933 site_time_zone_utc_offset=-5 +County "IN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801090.epw site_zip_code=46151 site_time_zone_utc_offset=-5 +County "IN, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801110.epw site_zip_code=46349 site_time_zone_utc_offset=-6 +County "IN, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801130.epw site_zip_code=46755 site_time_zone_utc_offset=-5 +County "IN, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801150.epw site_zip_code=47040 site_time_zone_utc_offset=-5 +County "IN, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801170.epw site_zip_code=47454 site_time_zone_utc_offset=-5 +County "IN, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801190.epw site_zip_code=47460 site_time_zone_utc_offset=-5 +County "IN, Parke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801210.epw site_zip_code=47872 site_time_zone_utc_offset=-5 +County "IN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801230.epw site_zip_code=47586 site_time_zone_utc_offset=-6 +County "IN, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801250.epw site_zip_code=47567 site_time_zone_utc_offset=-5 +County "IN, Porter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801270.epw site_zip_code=46383 site_time_zone_utc_offset=-6 +County "IN, Posey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801290.epw site_zip_code=47620 site_time_zone_utc_offset=-6 +County "IN, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801310.epw site_zip_code=46996 site_time_zone_utc_offset=-5 +County "IN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801330.epw site_zip_code=46135 site_time_zone_utc_offset=-5 +County "IN, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801350.epw site_zip_code=47394 site_time_zone_utc_offset=-5 +County "IN, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801370.epw site_zip_code=47006 site_time_zone_utc_offset=-5 +County "IN, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801390.epw site_zip_code=46173 site_time_zone_utc_offset=-5 +County "IN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801430.epw site_zip_code=47170 site_time_zone_utc_offset=-5 +County "IN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801450.epw site_zip_code=46176 site_time_zone_utc_offset=-5 +County "IN, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801470.epw site_zip_code=47635 site_time_zone_utc_offset=-6 +County "IN, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801410.epw site_zip_code=46544 site_time_zone_utc_offset=-5 +County "IN, Starke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801490.epw site_zip_code=46534 site_time_zone_utc_offset=-6 +County "IN, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801510.epw site_zip_code=46703 site_time_zone_utc_offset=-5 +County "IN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801530.epw site_zip_code=47882 site_time_zone_utc_offset=-5 +County "IN, Switzerland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801550.epw site_zip_code=47043 site_time_zone_utc_offset=-5 +County "IN, Tippecanoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801570.epw site_zip_code=47906 site_time_zone_utc_offset=-5 +County "IN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801590.epw site_zip_code=46072 site_time_zone_utc_offset=-5 +County "IN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801610.epw site_zip_code=47353 site_time_zone_utc_offset=-5 +County "IN, Vanderburgh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801630.epw site_zip_code=47714 site_time_zone_utc_offset=-6 +County "IN, Vermillion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801650.epw site_zip_code=47842 site_time_zone_utc_offset=-5 +County "IN, Vigo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801670.epw site_zip_code=47802 site_time_zone_utc_offset=-5 +County "IN, Wabash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801690.epw site_zip_code=46992 site_time_zone_utc_offset=-5 +County "IN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801710.epw site_zip_code=47993 site_time_zone_utc_offset=-5 +County "IN, Warrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801730.epw site_zip_code=47630 site_time_zone_utc_offset=-6 +County "IN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801750.epw site_zip_code=47167 site_time_zone_utc_offset=-5 +County "IN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801770.epw site_zip_code=47374 site_time_zone_utc_offset=-5 +County "IN, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801790.epw site_zip_code=46714 site_time_zone_utc_offset=-5 +County "IN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801810.epw site_zip_code=47960 site_time_zone_utc_offset=-5 +County "IN, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G1801830.epw site_zip_code=46725 site_time_zone_utc_offset=-5 +County "KS, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000010.epw site_zip_code=66749 site_time_zone_utc_offset=-6 +County "KS, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000030.epw site_zip_code=66032 site_time_zone_utc_offset=-6 +County "KS, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000050.epw site_zip_code=66002 site_time_zone_utc_offset=-6 +County "KS, Barber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000070.epw site_zip_code=67104 site_time_zone_utc_offset=-6 +County "KS, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000090.epw site_zip_code=67530 site_time_zone_utc_offset=-6 +County "KS, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000110.epw site_zip_code=66701 site_time_zone_utc_offset=-6 +County "KS, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000130.epw site_zip_code=66434 site_time_zone_utc_offset=-6 +County "KS, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000150.epw site_zip_code=67042 site_time_zone_utc_offset=-6 +County "KS, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000170.epw site_zip_code=66845 site_time_zone_utc_offset=-6 +County "KS, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000190.epw site_zip_code=67361 site_time_zone_utc_offset=-6 +County "KS, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000210.epw site_zip_code=66713 site_time_zone_utc_offset=-6 +County "KS, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000230.epw site_zip_code=67756 site_time_zone_utc_offset=-6 +County "KS, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000250.epw site_zip_code=67865 site_time_zone_utc_offset=-6 +County "KS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000270.epw site_zip_code=67432 site_time_zone_utc_offset=-6 +County "KS, Cloud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000290.epw site_zip_code=66901 site_time_zone_utc_offset=-6 +County "KS, Coffey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000310.epw site_zip_code=66839 site_time_zone_utc_offset=-6 +County "KS, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000330.epw site_zip_code=67029 site_time_zone_utc_offset=-6 +County "KS, Cowley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000350.epw site_zip_code=67005 site_time_zone_utc_offset=-6 +County "KS, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000370.epw site_zip_code=66762 site_time_zone_utc_offset=-6 +County "KS, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000390.epw site_zip_code=67749 site_time_zone_utc_offset=-6 +County "KS, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000410.epw site_zip_code=67410 site_time_zone_utc_offset=-6 +County "KS, Doniphan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000430.epw site_zip_code=66090 site_time_zone_utc_offset=-6 +County "KS, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000450.epw site_zip_code=66049 site_time_zone_utc_offset=-6 +County "KS, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000470.epw site_zip_code=67547 site_time_zone_utc_offset=-6 +County "KS, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000490.epw site_zip_code=67349 site_time_zone_utc_offset=-6 +County "KS, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000510.epw site_zip_code=67601 site_time_zone_utc_offset=-6 +County "KS, Ellsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000530.epw site_zip_code=67439 site_time_zone_utc_offset=-6 +County "KS, Finney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000550.epw site_zip_code=67846 site_time_zone_utc_offset=-6 +County "KS, Ford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000570.epw site_zip_code=67801 site_time_zone_utc_offset=-6 +County "KS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000590.epw site_zip_code=66067 site_time_zone_utc_offset=-6 +County "KS, Geary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000610.epw site_zip_code=66441 site_time_zone_utc_offset=-6 +County "KS, Gove County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000630.epw site_zip_code=67752 site_time_zone_utc_offset=-6 +County "KS, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000650.epw site_zip_code=67642 site_time_zone_utc_offset=-6 +County "KS, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000670.epw site_zip_code=67880 site_time_zone_utc_offset=-6 +County "KS, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000690.epw site_zip_code=67867 site_time_zone_utc_offset=-6 +County "KS, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000710.epw site_zip_code=67879 site_time_zone_utc_offset=-7 +County "KS, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000730.epw site_zip_code=67045 site_time_zone_utc_offset=-6 +County "KS, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000750.epw site_zip_code=67878 site_time_zone_utc_offset=-7 +County "KS, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000770.epw site_zip_code=67003 site_time_zone_utc_offset=-6 +County "KS, Harvey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000790.epw site_zip_code=67114 site_time_zone_utc_offset=-6 +County "KS, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000810.epw site_zip_code=67877 site_time_zone_utc_offset=-6 +County "KS, Hodgeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000830.epw site_zip_code=67854 site_time_zone_utc_offset=-6 +County "KS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000850.epw site_zip_code=66436 site_time_zone_utc_offset=-6 +County "KS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000870.epw site_zip_code=66512 site_time_zone_utc_offset=-6 +County "KS, Jewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000890.epw site_zip_code=66956 site_time_zone_utc_offset=-6 +County "KS, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000910.epw site_zip_code=66062 site_time_zone_utc_offset=-6 +County "KS, Kearny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000930.epw site_zip_code=67860 site_time_zone_utc_offset=-6 +County "KS, Kingman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000950.epw site_zip_code=67068 site_time_zone_utc_offset=-6 +County "KS, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000970.epw site_zip_code=67054 site_time_zone_utc_offset=-6 +County "KS, Labette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2000990.epw site_zip_code=67357 site_time_zone_utc_offset=-6 +County "KS, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001010.epw site_zip_code=67839 site_time_zone_utc_offset=-6 +County "KS, Leavenworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001030.epw site_zip_code=66048 site_time_zone_utc_offset=-6 +County "KS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001050.epw site_zip_code=67455 site_time_zone_utc_offset=-6 +County "KS, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001070.epw site_zip_code=66040 site_time_zone_utc_offset=-6 +County "KS, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001090.epw site_zip_code=67748 site_time_zone_utc_offset=-6 +County "KS, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001110.epw site_zip_code=66801 site_time_zone_utc_offset=-6 +County "KS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001150.epw site_zip_code=67063 site_time_zone_utc_offset=-6 +County "KS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001170.epw site_zip_code=66508 site_time_zone_utc_offset=-6 +County "KS, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001130.epw site_zip_code=67460 site_time_zone_utc_offset=-6 +County "KS, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001190.epw site_zip_code=67864 site_time_zone_utc_offset=-6 +County "KS, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001210.epw site_zip_code=66071 site_time_zone_utc_offset=-6 +County "KS, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001230.epw site_zip_code=67420 site_time_zone_utc_offset=-6 +County "KS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001250.epw site_zip_code=67301 site_time_zone_utc_offset=-6 +County "KS, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001270.epw site_zip_code=66846 site_time_zone_utc_offset=-6 +County "KS, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001290.epw site_zip_code=67950 site_time_zone_utc_offset=-6 +County "KS, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001310.epw site_zip_code=66538 site_time_zone_utc_offset=-6 +County "KS, Neosho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001330.epw site_zip_code=66720 site_time_zone_utc_offset=-6 +County "KS, Ness County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001350.epw site_zip_code=67560 site_time_zone_utc_offset=-6 +County "KS, Norton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001370.epw site_zip_code=67654 site_time_zone_utc_offset=-6 +County "KS, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001390.epw site_zip_code=66523 site_time_zone_utc_offset=-6 +County "KS, Osborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001410.epw site_zip_code=67473 site_time_zone_utc_offset=-6 +County "KS, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001430.epw site_zip_code=67467 site_time_zone_utc_offset=-6 +County "KS, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001450.epw site_zip_code=67550 site_time_zone_utc_offset=-6 +County "KS, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001470.epw site_zip_code=67661 site_time_zone_utc_offset=-6 +County "KS, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001490.epw site_zip_code=66547 site_time_zone_utc_offset=-6 +County "KS, Pratt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001510.epw site_zip_code=67124 site_time_zone_utc_offset=-6 +County "KS, Rawlins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001530.epw site_zip_code=67730 site_time_zone_utc_offset=-6 +County "KS, Reno County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001550.epw site_zip_code=67501 site_time_zone_utc_offset=-6 +County "KS, Republic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001570.epw site_zip_code=66935 site_time_zone_utc_offset=-6 +County "KS, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001590.epw site_zip_code=67554 site_time_zone_utc_offset=-6 +County "KS, Riley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001610.epw site_zip_code=66502 site_time_zone_utc_offset=-6 +County "KS, Rooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001630.epw site_zip_code=67663 site_time_zone_utc_offset=-6 +County "KS, Rush County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001650.epw site_zip_code=67548 site_time_zone_utc_offset=-6 +County "KS, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001670.epw site_zip_code=67665 site_time_zone_utc_offset=-6 +County "KS, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001690.epw site_zip_code=67401 site_time_zone_utc_offset=-6 +County "KS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001710.epw site_zip_code=67871 site_time_zone_utc_offset=-6 +County "KS, Sedgwick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001730.epw site_zip_code=67212 site_time_zone_utc_offset=-6 +County "KS, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001750.epw site_zip_code=67901 site_time_zone_utc_offset=-6 +County "KS, Shawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001770.epw site_zip_code=66614 site_time_zone_utc_offset=-6 +County "KS, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001790.epw site_zip_code=67740 site_time_zone_utc_offset=-6 +County "KS, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001810.epw site_zip_code=67735 site_time_zone_utc_offset=-7 +County "KS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001830.epw site_zip_code=66967 site_time_zone_utc_offset=-6 +County "KS, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001850.epw site_zip_code=67576 site_time_zone_utc_offset=-6 +County "KS, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001870.epw site_zip_code=67855 site_time_zone_utc_offset=-6 +County "KS, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001890.epw site_zip_code=67951 site_time_zone_utc_offset=-6 +County "KS, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001910.epw site_zip_code=67152 site_time_zone_utc_offset=-6 +County "KS, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001930.epw site_zip_code=67701 site_time_zone_utc_offset=-6 +County "KS, Trego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001950.epw site_zip_code=67672 site_time_zone_utc_offset=-6 +County "KS, Wabaunsee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001970.epw site_zip_code=66401 site_time_zone_utc_offset=-6 +County "KS, Wallace County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2001990.epw site_zip_code=67758 site_time_zone_utc_offset=-7 +County "KS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002010.epw site_zip_code=66968 site_time_zone_utc_offset=-6 +County "KS, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002030.epw site_zip_code=67861 site_time_zone_utc_offset=-6 +County "KS, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002050.epw site_zip_code=66736 site_time_zone_utc_offset=-6 +County "KS, Woodson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002070.epw site_zip_code=66783 site_time_zone_utc_offset=-6 +County "KS, Wyandotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2002090.epw site_zip_code=66102 site_time_zone_utc_offset=-6 +County "KY, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100010.epw site_zip_code=42728 site_time_zone_utc_offset=-6 +County "KY, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100030.epw site_zip_code=42164 site_time_zone_utc_offset=-6 +County "KY, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100050.epw site_zip_code=40342 site_time_zone_utc_offset=-5 +County "KY, Ballard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100070.epw site_zip_code=42053 site_time_zone_utc_offset=-6 +County "KY, Barren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100090.epw site_zip_code=42141 site_time_zone_utc_offset=-6 +County "KY, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100110.epw site_zip_code=40360 site_time_zone_utc_offset=-5 +County "KY, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100130.epw site_zip_code=40965 site_time_zone_utc_offset=-5 +County "KY, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100150.epw site_zip_code=41042 site_time_zone_utc_offset=-5 +County "KY, Bourbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100170.epw site_zip_code=40361 site_time_zone_utc_offset=-5 +County "KY, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100190.epw site_zip_code=41102 site_time_zone_utc_offset=-5 +County "KY, Boyle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100210.epw site_zip_code=40422 site_time_zone_utc_offset=-5 +County "KY, Bracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100230.epw site_zip_code=41004 site_time_zone_utc_offset=-5 +County "KY, Breathitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100250.epw site_zip_code=41339 site_time_zone_utc_offset=-5 +County "KY, Breckinridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100270.epw site_zip_code=40143 site_time_zone_utc_offset=-6 +County "KY, Bullitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100290.epw site_zip_code=40165 site_time_zone_utc_offset=-5 +County "KY, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100310.epw site_zip_code=42261 site_time_zone_utc_offset=-6 +County "KY, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100330.epw site_zip_code=42445 site_time_zone_utc_offset=-6 +County "KY, Calloway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100350.epw site_zip_code=42071 site_time_zone_utc_offset=-6 +County "KY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100370.epw site_zip_code=41071 site_time_zone_utc_offset=-5 +County "KY, Carlisle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100390.epw site_zip_code=42023 site_time_zone_utc_offset=-6 +County "KY, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100410.epw site_zip_code=41008 site_time_zone_utc_offset=-5 +County "KY, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100430.epw site_zip_code=41143 site_time_zone_utc_offset=-5 +County "KY, Casey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100450.epw site_zip_code=42539 site_time_zone_utc_offset=-5 +County "KY, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100470.epw site_zip_code=42240 site_time_zone_utc_offset=-6 +County "KY, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100490.epw site_zip_code=40391 site_time_zone_utc_offset=-5 +County "KY, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100510.epw site_zip_code=40962 site_time_zone_utc_offset=-5 +County "KY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100530.epw site_zip_code=42602 site_time_zone_utc_offset=-6 +County "KY, Crittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100550.epw site_zip_code=42064 site_time_zone_utc_offset=-6 +County "KY, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100570.epw site_zip_code=42717 site_time_zone_utc_offset=-6 +County "KY, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100590.epw site_zip_code=42301 site_time_zone_utc_offset=-6 +County "KY, Edmonson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100610.epw site_zip_code=42210 site_time_zone_utc_offset=-6 +County "KY, Elliott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100630.epw site_zip_code=41171 site_time_zone_utc_offset=-5 +County "KY, Estill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100650.epw site_zip_code=40336 site_time_zone_utc_offset=-5 +County "KY, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100670.epw site_zip_code=40509 site_time_zone_utc_offset=-5 +County "KY, Fleming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100690.epw site_zip_code=41041 site_time_zone_utc_offset=-5 +County "KY, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100710.epw site_zip_code=41653 site_time_zone_utc_offset=-5 +County "KY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100730.epw site_zip_code=40601 site_time_zone_utc_offset=-5 +County "KY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100750.epw site_zip_code=42041 site_time_zone_utc_offset=-6 +County "KY, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100770.epw site_zip_code=41095 site_time_zone_utc_offset=-5 +County "KY, Garrard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100790.epw site_zip_code=40444 site_time_zone_utc_offset=-5 +County "KY, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100810.epw site_zip_code=41035 site_time_zone_utc_offset=-5 +County "KY, Graves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100830.epw site_zip_code=42066 site_time_zone_utc_offset=-6 +County "KY, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100850.epw site_zip_code=42754 site_time_zone_utc_offset=-6 +County "KY, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100870.epw site_zip_code=42743 site_time_zone_utc_offset=-6 +County "KY, Greenup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100890.epw site_zip_code=41144 site_time_zone_utc_offset=-5 +County "KY, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100910.epw site_zip_code=42348 site_time_zone_utc_offset=-6 +County "KY, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100930.epw site_zip_code=42701 site_time_zone_utc_offset=-5 +County "KY, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100950.epw site_zip_code=40831 site_time_zone_utc_offset=-5 +County "KY, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100970.epw site_zip_code=41031 site_time_zone_utc_offset=-5 +County "KY, Hart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2100990.epw site_zip_code=42765 site_time_zone_utc_offset=-6 +County "KY, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101010.epw site_zip_code=42420 site_time_zone_utc_offset=-6 +County "KY, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101030.epw site_zip_code=40019 site_time_zone_utc_offset=-5 +County "KY, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101050.epw site_zip_code=42031 site_time_zone_utc_offset=-6 +County "KY, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101070.epw site_zip_code=42431 site_time_zone_utc_offset=-6 +County "KY, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101090.epw site_zip_code=40447 site_time_zone_utc_offset=-5 +County "KY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101110.epw site_zip_code=40214 site_time_zone_utc_offset=-5 +County "KY, Jessamine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101130.epw site_zip_code=40356 site_time_zone_utc_offset=-5 +County "KY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101150.epw site_zip_code=41240 site_time_zone_utc_offset=-5 +County "KY, Kenton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101170.epw site_zip_code=41017 site_time_zone_utc_offset=-5 +County "KY, Knott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101190.epw site_zip_code=41822 site_time_zone_utc_offset=-5 +County "KY, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101210.epw site_zip_code=40906 site_time_zone_utc_offset=-5 +County "KY, Larue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101230.epw site_zip_code=42748 site_time_zone_utc_offset=-5 +County "KY, Laurel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101250.epw site_zip_code=40741 site_time_zone_utc_offset=-5 +County "KY, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101270.epw site_zip_code=41230 site_time_zone_utc_offset=-5 +County "KY, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101290.epw site_zip_code=41311 site_time_zone_utc_offset=-5 +County "KY, Leslie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101310.epw site_zip_code=41749 site_time_zone_utc_offset=-5 +County "KY, Letcher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101330.epw site_zip_code=41858 site_time_zone_utc_offset=-5 +County "KY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101350.epw site_zip_code=41179 site_time_zone_utc_offset=-5 +County "KY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101370.epw site_zip_code=40484 site_time_zone_utc_offset=-5 +County "KY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101390.epw site_zip_code=42045 site_time_zone_utc_offset=-6 +County "KY, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101410.epw site_zip_code=42276 site_time_zone_utc_offset=-6 +County "KY, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101430.epw site_zip_code=42038 site_time_zone_utc_offset=-6 +County "KY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101510.epw site_zip_code=40475 site_time_zone_utc_offset=-5 +County "KY, Magoffin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101530.epw site_zip_code=41465 site_time_zone_utc_offset=-5 +County "KY, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101550.epw site_zip_code=40033 site_time_zone_utc_offset=-5 +County "KY, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101570.epw site_zip_code=42025 site_time_zone_utc_offset=-6 +County "KY, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101590.epw site_zip_code=41224 site_time_zone_utc_offset=-5 +County "KY, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101610.epw site_zip_code=41056 site_time_zone_utc_offset=-5 +County "KY, McCracken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101450.epw site_zip_code=42001 site_time_zone_utc_offset=-6 +County "KY, McCreary County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101470.epw site_zip_code=42653 site_time_zone_utc_offset=-5 +County "KY, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101490.epw site_zip_code=42327 site_time_zone_utc_offset=-6 +County "KY, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101630.epw site_zip_code=40108 site_time_zone_utc_offset=-5 +County "KY, Menifee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101650.epw site_zip_code=40322 site_time_zone_utc_offset=-5 +County "KY, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101670.epw site_zip_code=40330 site_time_zone_utc_offset=-5 +County "KY, Metcalfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101690.epw site_zip_code=42129 site_time_zone_utc_offset=-6 +County "KY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101710.epw site_zip_code=42167 site_time_zone_utc_offset=-6 +County "KY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101730.epw site_zip_code=40353 site_time_zone_utc_offset=-5 +County "KY, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101750.epw site_zip_code=41472 site_time_zone_utc_offset=-5 +County "KY, Muhlenberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101770.epw site_zip_code=42345 site_time_zone_utc_offset=-6 +County "KY, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101790.epw site_zip_code=40004 site_time_zone_utc_offset=-5 +County "KY, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101810.epw site_zip_code=40311 site_time_zone_utc_offset=-5 +County "KY, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101830.epw site_zip_code=42320 site_time_zone_utc_offset=-6 +County "KY, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101850.epw site_zip_code=40014 site_time_zone_utc_offset=-5 +County "KY, Owen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101870.epw site_zip_code=40359 site_time_zone_utc_offset=-5 +County "KY, Owsley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101890.epw site_zip_code=41314 site_time_zone_utc_offset=-5 +County "KY, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101910.epw site_zip_code=41040 site_time_zone_utc_offset=-5 +County "KY, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101930.epw site_zip_code=41701 site_time_zone_utc_offset=-5 +County "KY, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101950.epw site_zip_code=41501 site_time_zone_utc_offset=-5 +County "KY, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101970.epw site_zip_code=40380 site_time_zone_utc_offset=-5 +County "KY, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2101990.epw site_zip_code=42503 site_time_zone_utc_offset=-5 +County "KY, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102010.epw site_zip_code=41064 site_time_zone_utc_offset=-5 +County "KY, Rockcastle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102030.epw site_zip_code=40456 site_time_zone_utc_offset=-5 +County "KY, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102050.epw site_zip_code=40351 site_time_zone_utc_offset=-5 +County "KY, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102070.epw site_zip_code=42642 site_time_zone_utc_offset=-6 +County "KY, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102090.epw site_zip_code=40324 site_time_zone_utc_offset=-5 +County "KY, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102110.epw site_zip_code=40065 site_time_zone_utc_offset=-5 +County "KY, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102130.epw site_zip_code=42134 site_time_zone_utc_offset=-6 +County "KY, Spencer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102150.epw site_zip_code=40071 site_time_zone_utc_offset=-5 +County "KY, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102170.epw site_zip_code=42718 site_time_zone_utc_offset=-5 +County "KY, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102190.epw site_zip_code=42220 site_time_zone_utc_offset=-6 +County "KY, Trigg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102210.epw site_zip_code=42211 site_time_zone_utc_offset=-6 +County "KY, Trimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102230.epw site_zip_code=40006 site_time_zone_utc_offset=-5 +County "KY, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102250.epw site_zip_code=42437 site_time_zone_utc_offset=-6 +County "KY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102270.epw site_zip_code=42101 site_time_zone_utc_offset=-6 +County "KY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102290.epw site_zip_code=40069 site_time_zone_utc_offset=-5 +County "KY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102310.epw site_zip_code=42633 site_time_zone_utc_offset=-5 +County "KY, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102330.epw site_zip_code=42450 site_time_zone_utc_offset=-6 +County "KY, Whitley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102350.epw site_zip_code=40769 site_time_zone_utc_offset=-5 +County "KY, Wolfe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102370.epw site_zip_code=41301 site_time_zone_utc_offset=-5 +County "KY, Woodford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2102390.epw site_zip_code=40383 site_time_zone_utc_offset=-5 +County "LA, Acadia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200010.epw site_zip_code=70526 site_time_zone_utc_offset=-6 +County "LA, Allen Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200030.epw site_zip_code=71463 site_time_zone_utc_offset=-6 +County "LA, Ascension Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200050.epw site_zip_code=70737 site_time_zone_utc_offset=-6 +County "LA, Assumption Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200070.epw site_zip_code=70339 site_time_zone_utc_offset=-6 +County "LA, Avoyelles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200090.epw site_zip_code=71351 site_time_zone_utc_offset=-6 +County "LA, Beauregard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200110.epw site_zip_code=70634 site_time_zone_utc_offset=-6 +County "LA, Bienville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200130.epw site_zip_code=71001 site_time_zone_utc_offset=-6 +County "LA, Bossier Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200150.epw site_zip_code=71111 site_time_zone_utc_offset=-6 +County "LA, Caddo Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200170.epw site_zip_code=71106 site_time_zone_utc_offset=-6 +County "LA, Calcasieu Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200190.epw site_zip_code=70605 site_time_zone_utc_offset=-6 +County "LA, Caldwell Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200210.epw site_zip_code=71418 site_time_zone_utc_offset=-6 +County "LA, Cameron Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200230.epw site_zip_code=70607 site_time_zone_utc_offset=-6 +County "LA, Catahoula Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200250.epw site_zip_code=71343 site_time_zone_utc_offset=-6 +County "LA, Claiborne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200270.epw site_zip_code=71040 site_time_zone_utc_offset=-6 +County "LA, Concordia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200290.epw site_zip_code=71334 site_time_zone_utc_offset=-6 +County "LA, De Soto Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200310.epw site_zip_code=71052 site_time_zone_utc_offset=-6 +County "LA, East Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200330.epw site_zip_code=70816 site_time_zone_utc_offset=-6 +County "LA, East Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200350.epw site_zip_code=71254 site_time_zone_utc_offset=-6 +County "LA, East Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200370.epw site_zip_code=70722 site_time_zone_utc_offset=-6 +County "LA, Evangeline Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200390.epw site_zip_code=70586 site_time_zone_utc_offset=-6 +County "LA, Franklin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200410.epw site_zip_code=71295 site_time_zone_utc_offset=-6 +County "LA, Grant Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200430.epw site_zip_code=71467 site_time_zone_utc_offset=-6 +County "LA, Iberia Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200450.epw site_zip_code=70560 site_time_zone_utc_offset=-6 +County "LA, Iberville Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200470.epw site_zip_code=70764 site_time_zone_utc_offset=-6 +County "LA, Jackson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200490.epw site_zip_code=71251 site_time_zone_utc_offset=-6 +County "LA, Jefferson Davis Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200530.epw site_zip_code=70546 site_time_zone_utc_offset=-6 +County "LA, Jefferson Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200510.epw site_zip_code=70072 site_time_zone_utc_offset=-6 +County "LA, La Salle Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200590.epw site_zip_code=71342 site_time_zone_utc_offset=-6 +County "LA, Lafayette Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200550.epw site_zip_code=70506 site_time_zone_utc_offset=-6 +County "LA, Lafourche Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200570.epw site_zip_code=70301 site_time_zone_utc_offset=-6 +County "LA, Lincoln Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200610.epw site_zip_code=71270 site_time_zone_utc_offset=-6 +County "LA, Livingston Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200630.epw site_zip_code=70726 site_time_zone_utc_offset=-6 +County "LA, Madison Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200650.epw site_zip_code=71282 site_time_zone_utc_offset=-6 +County "LA, Morehouse Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200670.epw site_zip_code=71220 site_time_zone_utc_offset=-6 +County "LA, Natchitoches Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200690.epw site_zip_code=71457 site_time_zone_utc_offset=-6 +County "LA, Orleans Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200710.epw site_zip_code=70119 site_time_zone_utc_offset=-6 +County "LA, Ouachita Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200730.epw site_zip_code=71203 site_time_zone_utc_offset=-6 +County "LA, Plaquemines Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200750.epw site_zip_code=70037 site_time_zone_utc_offset=-6 +County "LA, Pointe Coupee Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200770.epw site_zip_code=70760 site_time_zone_utc_offset=-6 +County "LA, Rapides Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200790.epw site_zip_code=71360 site_time_zone_utc_offset=-6 +County "LA, Red River Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200810.epw site_zip_code=71019 site_time_zone_utc_offset=-6 +County "LA, Richland Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200830.epw site_zip_code=71269 site_time_zone_utc_offset=-6 +County "LA, Sabine Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200850.epw site_zip_code=71449 site_time_zone_utc_offset=-6 +County "LA, St. Bernard Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200870.epw site_zip_code=70043 site_time_zone_utc_offset=-6 +County "LA, St. Charles Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200890.epw site_zip_code=70070 site_time_zone_utc_offset=-6 +County "LA, St. Helena Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200910.epw site_zip_code=70441 site_time_zone_utc_offset=-6 +County "LA, St. James Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200930.epw site_zip_code=70090 site_time_zone_utc_offset=-6 +County "LA, St. John the Baptist Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200950.epw site_zip_code=70068 site_time_zone_utc_offset=-6 +County "LA, St. Landry Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200970.epw site_zip_code=70570 site_time_zone_utc_offset=-6 +County "LA, St. Martin Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2200990.epw site_zip_code=70517 site_time_zone_utc_offset=-6 +County "LA, St. Mary Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201010.epw site_zip_code=70380 site_time_zone_utc_offset=-6 +County "LA, St. Tammany Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201030.epw site_zip_code=70433 site_time_zone_utc_offset=-6 +County "LA, Tangipahoa Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201050.epw site_zip_code=70454 site_time_zone_utc_offset=-6 +County "LA, Tensas Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201070.epw site_zip_code=71366 site_time_zone_utc_offset=-6 +County "LA, Terrebonne Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201090.epw site_zip_code=70360 site_time_zone_utc_offset=-6 +County "LA, Union Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201110.epw site_zip_code=71241 site_time_zone_utc_offset=-6 +County "LA, Vermilion Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201130.epw site_zip_code=70510 site_time_zone_utc_offset=-6 +County "LA, Vernon Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201150.epw site_zip_code=71446 site_time_zone_utc_offset=-6 +County "LA, Washington Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201170.epw site_zip_code=70427 site_time_zone_utc_offset=-6 +County "LA, Webster Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201190.epw site_zip_code=71055 site_time_zone_utc_offset=-6 +County "LA, West Baton Rouge Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201210.epw site_zip_code=70767 site_time_zone_utc_offset=-6 +County "LA, West Carroll Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201230.epw site_zip_code=71263 site_time_zone_utc_offset=-6 +County "LA, West Feliciana Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201250.epw site_zip_code=70775 site_time_zone_utc_offset=-6 +County "LA, Winn Parish" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2201270.epw site_zip_code=71483 site_time_zone_utc_offset=-6 +County "MA, Barnstable County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500010.epw site_zip_code=02536 site_time_zone_utc_offset=-5 +County "MA, Berkshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500030.epw site_zip_code=01201 site_time_zone_utc_offset=-5 +County "MA, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500050.epw site_zip_code=02780 site_time_zone_utc_offset=-5 +County "MA, Dukes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500070.epw site_zip_code=02568 site_time_zone_utc_offset=-5 +County "MA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500090.epw site_zip_code=01960 site_time_zone_utc_offset=-5 +County "MA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500110.epw site_zip_code=01301 site_time_zone_utc_offset=-5 +County "MA, Hampden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500130.epw site_zip_code=01085 site_time_zone_utc_offset=-5 +County "MA, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500150.epw site_zip_code=01002 site_time_zone_utc_offset=-5 +County "MA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500170.epw site_zip_code=02148 site_time_zone_utc_offset=-5 +County "MA, Nantucket County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500190.epw site_zip_code=02554 site_time_zone_utc_offset=-5 +County "MA, Norfolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500210.epw site_zip_code=02169 site_time_zone_utc_offset=-5 +County "MA, Plymouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500230.epw site_zip_code=02360 site_time_zone_utc_offset=-5 +County "MA, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500250.epw site_zip_code=02151 site_time_zone_utc_offset=-5 +County "MA, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2500270.epw site_zip_code=01453 site_time_zone_utc_offset=-5 +County "MD, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400010.epw site_zip_code=21502 site_time_zone_utc_offset=-5 +County "MD, Anne Arundel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400030.epw site_zip_code=21122 site_time_zone_utc_offset=-5 +County "MD, Baltimore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400050.epw site_zip_code=21117 site_time_zone_utc_offset=-5 +County "MD, Baltimore city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2405100.epw site_zip_code=21215 site_time_zone_utc_offset=-5 +County "MD, Calvert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400090.epw site_zip_code=20657 site_time_zone_utc_offset=-5 +County "MD, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400110.epw site_zip_code=21629 site_time_zone_utc_offset=-5 +County "MD, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400130.epw site_zip_code=21157 site_time_zone_utc_offset=-5 +County "MD, Cecil County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400150.epw site_zip_code=21921 site_time_zone_utc_offset=-5 +County "MD, Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400170.epw site_zip_code=20603 site_time_zone_utc_offset=-5 +County "MD, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400190.epw site_zip_code=21613 site_time_zone_utc_offset=-5 +County "MD, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400210.epw site_zip_code=21702 site_time_zone_utc_offset=-5 +County "MD, Garrett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400230.epw site_zip_code=21550 site_time_zone_utc_offset=-5 +County "MD, Harford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400250.epw site_zip_code=21014 site_time_zone_utc_offset=-5 +County "MD, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400270.epw site_zip_code=21044 site_time_zone_utc_offset=-5 +County "MD, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400290.epw site_zip_code=21620 site_time_zone_utc_offset=-5 +County "MD, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400310.epw site_zip_code=20906 site_time_zone_utc_offset=-5 +County "MD, Prince George's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400330.epw site_zip_code=20774 site_time_zone_utc_offset=-5 +County "MD, Queen Anne's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400350.epw site_zip_code=21666 site_time_zone_utc_offset=-5 +County "MD, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400390.epw site_zip_code=21853 site_time_zone_utc_offset=-5 +County "MD, St. Mary's County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400370.epw site_zip_code=20653 site_time_zone_utc_offset=-5 +County "MD, Talbot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400410.epw site_zip_code=21601 site_time_zone_utc_offset=-5 +County "MD, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400430.epw site_zip_code=21740 site_time_zone_utc_offset=-5 +County "MD, Wicomico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400450.epw site_zip_code=21804 site_time_zone_utc_offset=-5 +County "MD, Worcester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2400470.epw site_zip_code=21842 site_time_zone_utc_offset=-5 +County "ME, Androscoggin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300010.epw site_zip_code=04240 site_time_zone_utc_offset=-5 +County "ME, Aroostook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300030.epw site_zip_code=04769 site_time_zone_utc_offset=-5 +County "ME, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300050.epw site_zip_code=04103 site_time_zone_utc_offset=-5 +County "ME, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300070.epw site_zip_code=04938 site_time_zone_utc_offset=-5 +County "ME, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300090.epw site_zip_code=04605 site_time_zone_utc_offset=-5 +County "ME, Kennebec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300110.epw site_zip_code=04901 site_time_zone_utc_offset=-5 +County "ME, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300130.epw site_zip_code=04841 site_time_zone_utc_offset=-5 +County "ME, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300150.epw site_zip_code=04572 site_time_zone_utc_offset=-5 +County "ME, Oxford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300170.epw site_zip_code=04276 site_time_zone_utc_offset=-5 +County "ME, Penobscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300190.epw site_zip_code=04401 site_time_zone_utc_offset=-5 +County "ME, Piscataquis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300210.epw site_zip_code=04426 site_time_zone_utc_offset=-5 +County "ME, Sagadahoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300230.epw site_zip_code=04530 site_time_zone_utc_offset=-5 +County "ME, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300250.epw site_zip_code=04976 site_time_zone_utc_offset=-5 +County "ME, Waldo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300270.epw site_zip_code=04915 site_time_zone_utc_offset=-5 +County "ME, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300290.epw site_zip_code=04654 site_time_zone_utc_offset=-5 +County "ME, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2300310.epw site_zip_code=04005 site_time_zone_utc_offset=-5 +County "MI, Alcona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600010.epw site_zip_code=48740 site_time_zone_utc_offset=-5 +County "MI, Alger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600030.epw site_zip_code=49862 site_time_zone_utc_offset=-5 +County "MI, Allegan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600050.epw site_zip_code=49010 site_time_zone_utc_offset=-5 +County "MI, Alpena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600070.epw site_zip_code=49707 site_time_zone_utc_offset=-5 +County "MI, Antrim County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600090.epw site_zip_code=49615 site_time_zone_utc_offset=-5 +County "MI, Arenac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600110.epw site_zip_code=48658 site_time_zone_utc_offset=-5 +County "MI, Baraga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600130.epw site_zip_code=49946 site_time_zone_utc_offset=-5 +County "MI, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600150.epw site_zip_code=49058 site_time_zone_utc_offset=-5 +County "MI, Bay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600170.epw site_zip_code=48706 site_time_zone_utc_offset=-5 +County "MI, Benzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600190.epw site_zip_code=49635 site_time_zone_utc_offset=-5 +County "MI, Berrien County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600210.epw site_zip_code=49022 site_time_zone_utc_offset=-5 +County "MI, Branch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600230.epw site_zip_code=49036 site_time_zone_utc_offset=-5 +County "MI, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600250.epw site_zip_code=49015 site_time_zone_utc_offset=-5 +County "MI, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600270.epw site_zip_code=49047 site_time_zone_utc_offset=-5 +County "MI, Charlevoix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600290.epw site_zip_code=49720 site_time_zone_utc_offset=-5 +County "MI, Cheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600310.epw site_zip_code=49721 site_time_zone_utc_offset=-5 +County "MI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600330.epw site_zip_code=49783 site_time_zone_utc_offset=-5 +County "MI, Clare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600350.epw site_zip_code=48625 site_time_zone_utc_offset=-5 +County "MI, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600370.epw site_zip_code=48820 site_time_zone_utc_offset=-5 +County "MI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600390.epw site_zip_code=49738 site_time_zone_utc_offset=-5 +County "MI, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600410.epw site_zip_code=49829 site_time_zone_utc_offset=-5 +County "MI, Dickinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600430.epw site_zip_code=49801 site_time_zone_utc_offset=-6 +County "MI, Eaton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600450.epw site_zip_code=48917 site_time_zone_utc_offset=-5 +County "MI, Emmet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600470.epw site_zip_code=49770 site_time_zone_utc_offset=-5 +County "MI, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600490.epw site_zip_code=48439 site_time_zone_utc_offset=-5 +County "MI, Gladwin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600510.epw site_zip_code=48624 site_time_zone_utc_offset=-5 +County "MI, Gogebic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600530.epw site_zip_code=49938 site_time_zone_utc_offset=-6 +County "MI, Grand Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600550.epw site_zip_code=49686 site_time_zone_utc_offset=-5 +County "MI, Gratiot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600570.epw site_zip_code=48801 site_time_zone_utc_offset=-5 +County "MI, Hillsdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600590.epw site_zip_code=49242 site_time_zone_utc_offset=-5 +County "MI, Houghton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600610.epw site_zip_code=49931 site_time_zone_utc_offset=-5 +County "MI, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600630.epw site_zip_code=48413 site_time_zone_utc_offset=-5 +County "MI, Ingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600650.epw site_zip_code=48823 site_time_zone_utc_offset=-5 +County "MI, Ionia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600670.epw site_zip_code=48846 site_time_zone_utc_offset=-5 +County "MI, Iosco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600690.epw site_zip_code=48750 site_time_zone_utc_offset=-5 +County "MI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600710.epw site_zip_code=49935 site_time_zone_utc_offset=-6 +County "MI, Isabella County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600730.epw site_zip_code=48858 site_time_zone_utc_offset=-5 +County "MI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600750.epw site_zip_code=49201 site_time_zone_utc_offset=-5 +County "MI, Kalamazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600770.epw site_zip_code=49009 site_time_zone_utc_offset=-5 +County "MI, Kalkaska County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600790.epw site_zip_code=49646 site_time_zone_utc_offset=-5 +County "MI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600810.epw site_zip_code=49503 site_time_zone_utc_offset=-5 +County "MI, Keweenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600830.epw site_zip_code=49950 site_time_zone_utc_offset=-5 +County "MI, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600850.epw site_zip_code=49304 site_time_zone_utc_offset=-5 +County "MI, Lapeer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600870.epw site_zip_code=48446 site_time_zone_utc_offset=-5 +County "MI, Leelanau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600890.epw site_zip_code=49684 site_time_zone_utc_offset=-5 +County "MI, Lenawee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600910.epw site_zip_code=49221 site_time_zone_utc_offset=-5 +County "MI, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600930.epw site_zip_code=48843 site_time_zone_utc_offset=-5 +County "MI, Luce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600950.epw site_zip_code=49868 site_time_zone_utc_offset=-5 +County "MI, Mackinac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600970.epw site_zip_code=49781 site_time_zone_utc_offset=-5 +County "MI, Macomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2600990.epw site_zip_code=48038 site_time_zone_utc_offset=-5 +County "MI, Manistee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601010.epw site_zip_code=49660 site_time_zone_utc_offset=-5 +County "MI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601030.epw site_zip_code=49855 site_time_zone_utc_offset=-5 +County "MI, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601050.epw site_zip_code=49431 site_time_zone_utc_offset=-5 +County "MI, Mecosta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601070.epw site_zip_code=49307 site_time_zone_utc_offset=-5 +County "MI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601090.epw site_zip_code=49858 site_time_zone_utc_offset=-6 +County "MI, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601110.epw site_zip_code=48642 site_time_zone_utc_offset=-5 +County "MI, Missaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601130.epw site_zip_code=49651 site_time_zone_utc_offset=-5 +County "MI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601150.epw site_zip_code=48162 site_time_zone_utc_offset=-5 +County "MI, Montcalm County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601170.epw site_zip_code=48838 site_time_zone_utc_offset=-5 +County "MI, Montmorency County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601190.epw site_zip_code=49709 site_time_zone_utc_offset=-5 +County "MI, Muskegon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601210.epw site_zip_code=49442 site_time_zone_utc_offset=-5 +County "MI, Newaygo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601230.epw site_zip_code=49337 site_time_zone_utc_offset=-5 +County "MI, Oakland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601250.epw site_zip_code=48307 site_time_zone_utc_offset=-5 +County "MI, Oceana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601270.epw site_zip_code=49420 site_time_zone_utc_offset=-5 +County "MI, Ogemaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601290.epw site_zip_code=48661 site_time_zone_utc_offset=-5 +County "MI, Ontonagon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601310.epw site_zip_code=49953 site_time_zone_utc_offset=-5 +County "MI, Osceola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601330.epw site_zip_code=49631 site_time_zone_utc_offset=-5 +County "MI, Oscoda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601350.epw site_zip_code=48647 site_time_zone_utc_offset=-5 +County "MI, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601370.epw site_zip_code=49735 site_time_zone_utc_offset=-5 +County "MI, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601390.epw site_zip_code=49424 site_time_zone_utc_offset=-5 +County "MI, Presque Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601410.epw site_zip_code=49779 site_time_zone_utc_offset=-5 +County "MI, Roscommon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601430.epw site_zip_code=48629 site_time_zone_utc_offset=-5 +County "MI, Saginaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601450.epw site_zip_code=48601 site_time_zone_utc_offset=-5 +County "MI, Sanilac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601510.epw site_zip_code=48450 site_time_zone_utc_offset=-5 +County "MI, Schoolcraft County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601530.epw site_zip_code=49854 site_time_zone_utc_offset=-5 +County "MI, Shiawassee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601550.epw site_zip_code=48867 site_time_zone_utc_offset=-5 +County "MI, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601470.epw site_zip_code=48060 site_time_zone_utc_offset=-5 +County "MI, St. Joseph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601490.epw site_zip_code=49091 site_time_zone_utc_offset=-5 +County "MI, Tuscola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601570.epw site_zip_code=48723 site_time_zone_utc_offset=-5 +County "MI, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601590.epw site_zip_code=49090 site_time_zone_utc_offset=-5 +County "MI, Washtenaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601610.epw site_zip_code=48197 site_time_zone_utc_offset=-5 +County "MI, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601630.epw site_zip_code=48180 site_time_zone_utc_offset=-5 +County "MI, Wexford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2601650.epw site_zip_code=49601 site_time_zone_utc_offset=-5 +County "MN, Aitkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700010.epw site_zip_code=56431 site_time_zone_utc_offset=-6 +County "MN, Anoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700030.epw site_zip_code=55303 site_time_zone_utc_offset=-6 +County "MN, Becker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700050.epw site_zip_code=56501 site_time_zone_utc_offset=-6 +County "MN, Beltrami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700070.epw site_zip_code=56601 site_time_zone_utc_offset=-6 +County "MN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700090.epw site_zip_code=56379 site_time_zone_utc_offset=-6 +County "MN, Big Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700110.epw site_zip_code=56278 site_time_zone_utc_offset=-6 +County "MN, Blue Earth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700130.epw site_zip_code=56001 site_time_zone_utc_offset=-6 +County "MN, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700150.epw site_zip_code=56073 site_time_zone_utc_offset=-6 +County "MN, Carlton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700170.epw site_zip_code=55720 site_time_zone_utc_offset=-6 +County "MN, Carver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700190.epw site_zip_code=55318 site_time_zone_utc_offset=-6 +County "MN, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700210.epw site_zip_code=56474 site_time_zone_utc_offset=-6 +County "MN, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700230.epw site_zip_code=56265 site_time_zone_utc_offset=-6 +County "MN, Chisago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700250.epw site_zip_code=55056 site_time_zone_utc_offset=-6 +County "MN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700270.epw site_zip_code=56560 site_time_zone_utc_offset=-6 +County "MN, Clearwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700290.epw site_zip_code=56621 site_time_zone_utc_offset=-6 +County "MN, Cook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700310.epw site_zip_code=55604 site_time_zone_utc_offset=-6 +County "MN, Cottonwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700330.epw site_zip_code=56101 site_time_zone_utc_offset=-6 +County "MN, Crow Wing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700350.epw site_zip_code=56401 site_time_zone_utc_offset=-6 +County "MN, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700370.epw site_zip_code=55124 site_time_zone_utc_offset=-6 +County "MN, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700390.epw site_zip_code=55944 site_time_zone_utc_offset=-6 +County "MN, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700410.epw site_zip_code=56308 site_time_zone_utc_offset=-6 +County "MN, Faribault County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700430.epw site_zip_code=56013 site_time_zone_utc_offset=-6 +County "MN, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700450.epw site_zip_code=55975 site_time_zone_utc_offset=-6 +County "MN, Freeborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700470.epw site_zip_code=56007 site_time_zone_utc_offset=-6 +County "MN, Goodhue County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700490.epw site_zip_code=55066 site_time_zone_utc_offset=-6 +County "MN, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700510.epw site_zip_code=56531 site_time_zone_utc_offset=-6 +County "MN, Hennepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700530.epw site_zip_code=55408 site_time_zone_utc_offset=-6 +County "MN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700550.epw site_zip_code=55947 site_time_zone_utc_offset=-6 +County "MN, Hubbard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700570.epw site_zip_code=56470 site_time_zone_utc_offset=-6 +County "MN, Isanti County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700590.epw site_zip_code=55008 site_time_zone_utc_offset=-6 +County "MN, Itasca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700610.epw site_zip_code=55744 site_time_zone_utc_offset=-6 +County "MN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700630.epw site_zip_code=56143 site_time_zone_utc_offset=-6 +County "MN, Kanabec County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700650.epw site_zip_code=55051 site_time_zone_utc_offset=-6 +County "MN, Kandiyohi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700670.epw site_zip_code=56201 site_time_zone_utc_offset=-6 +County "MN, Kittson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700690.epw site_zip_code=56728 site_time_zone_utc_offset=-6 +County "MN, Koochiching County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700710.epw site_zip_code=56649 site_time_zone_utc_offset=-6 +County "MN, Lac qui Parle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700730.epw site_zip_code=56256 site_time_zone_utc_offset=-6 +County "MN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700750.epw site_zip_code=55616 site_time_zone_utc_offset=-6 +County "MN, Lake of the Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700770.epw site_zip_code=56623 site_time_zone_utc_offset=-6 +County "MN, Le Sueur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700790.epw site_zip_code=56058 site_time_zone_utc_offset=-6 +County "MN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700810.epw site_zip_code=56178 site_time_zone_utc_offset=-6 +County "MN, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700830.epw site_zip_code=56258 site_time_zone_utc_offset=-6 +County "MN, Mahnomen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700870.epw site_zip_code=56557 site_time_zone_utc_offset=-6 +County "MN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700890.epw site_zip_code=56762 site_time_zone_utc_offset=-6 +County "MN, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700910.epw site_zip_code=56031 site_time_zone_utc_offset=-6 +County "MN, McLeod County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700850.epw site_zip_code=55350 site_time_zone_utc_offset=-6 +County "MN, Meeker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700930.epw site_zip_code=55355 site_time_zone_utc_offset=-6 +County "MN, Mille Lacs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700950.epw site_zip_code=56353 site_time_zone_utc_offset=-6 +County "MN, Morrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700970.epw site_zip_code=56345 site_time_zone_utc_offset=-6 +County "MN, Mower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2700990.epw site_zip_code=55912 site_time_zone_utc_offset=-6 +County "MN, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701010.epw site_zip_code=56172 site_time_zone_utc_offset=-6 +County "MN, Nicollet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701030.epw site_zip_code=56003 site_time_zone_utc_offset=-6 +County "MN, Nobles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701050.epw site_zip_code=56187 site_time_zone_utc_offset=-6 +County "MN, Norman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701070.epw site_zip_code=56510 site_time_zone_utc_offset=-6 +County "MN, Olmsted County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701090.epw site_zip_code=55901 site_time_zone_utc_offset=-6 +County "MN, Otter Tail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701110.epw site_zip_code=56537 site_time_zone_utc_offset=-6 +County "MN, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701130.epw site_zip_code=56701 site_time_zone_utc_offset=-6 +County "MN, Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701150.epw site_zip_code=55063 site_time_zone_utc_offset=-6 +County "MN, Pipestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701170.epw site_zip_code=56164 site_time_zone_utc_offset=-6 +County "MN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701190.epw site_zip_code=56721 site_time_zone_utc_offset=-6 +County "MN, Pope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701210.epw site_zip_code=56334 site_time_zone_utc_offset=-6 +County "MN, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701230.epw site_zip_code=55106 site_time_zone_utc_offset=-6 +County "MN, Red Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701250.epw site_zip_code=56750 site_time_zone_utc_offset=-6 +County "MN, Redwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701270.epw site_zip_code=56283 site_time_zone_utc_offset=-6 +County "MN, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701290.epw site_zip_code=56277 site_time_zone_utc_offset=-6 +County "MN, Rice County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701310.epw site_zip_code=55021 site_time_zone_utc_offset=-6 +County "MN, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701330.epw site_zip_code=56156 site_time_zone_utc_offset=-6 +County "MN, Roseau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701350.epw site_zip_code=56751 site_time_zone_utc_offset=-6 +County "MN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701390.epw site_zip_code=55379 site_time_zone_utc_offset=-6 +County "MN, Sherburne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701410.epw site_zip_code=55330 site_time_zone_utc_offset=-6 +County "MN, Sibley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701430.epw site_zip_code=55334 site_time_zone_utc_offset=-6 +County "MN, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701370.epw site_zip_code=55811 site_time_zone_utc_offset=-6 +County "MN, Stearns County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701450.epw site_zip_code=56301 site_time_zone_utc_offset=-6 +County "MN, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701470.epw site_zip_code=55060 site_time_zone_utc_offset=-6 +County "MN, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701490.epw site_zip_code=56267 site_time_zone_utc_offset=-6 +County "MN, Swift County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701510.epw site_zip_code=56215 site_time_zone_utc_offset=-6 +County "MN, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701530.epw site_zip_code=56347 site_time_zone_utc_offset=-6 +County "MN, Traverse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701550.epw site_zip_code=56296 site_time_zone_utc_offset=-6 +County "MN, Wabasha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701570.epw site_zip_code=55041 site_time_zone_utc_offset=-6 +County "MN, Wadena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701590.epw site_zip_code=56482 site_time_zone_utc_offset=-6 +County "MN, Waseca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701610.epw site_zip_code=56093 site_time_zone_utc_offset=-6 +County "MN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701630.epw site_zip_code=55125 site_time_zone_utc_offset=-6 +County "MN, Watonwan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701650.epw site_zip_code=56081 site_time_zone_utc_offset=-6 +County "MN, Wilkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701670.epw site_zip_code=56520 site_time_zone_utc_offset=-6 +County "MN, Winona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701690.epw site_zip_code=55987 site_time_zone_utc_offset=-6 +County "MN, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701710.epw site_zip_code=55313 site_time_zone_utc_offset=-6 +County "MN, Yellow Medicine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2701730.epw site_zip_code=56220 site_time_zone_utc_offset=-6 +County "MO, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900010.epw site_zip_code=63501 site_time_zone_utc_offset=-6 +County "MO, Andrew County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900030.epw site_zip_code=64485 site_time_zone_utc_offset=-6 +County "MO, Atchison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900050.epw site_zip_code=64491 site_time_zone_utc_offset=-6 +County "MO, Audrain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900070.epw site_zip_code=65265 site_time_zone_utc_offset=-6 +County "MO, Barry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900090.epw site_zip_code=65625 site_time_zone_utc_offset=-6 +County "MO, Barton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900110.epw site_zip_code=64759 site_time_zone_utc_offset=-6 +County "MO, Bates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900130.epw site_zip_code=64730 site_time_zone_utc_offset=-6 +County "MO, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900150.epw site_zip_code=65355 site_time_zone_utc_offset=-6 +County "MO, Bollinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900170.epw site_zip_code=63764 site_time_zone_utc_offset=-6 +County "MO, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900190.epw site_zip_code=65203 site_time_zone_utc_offset=-6 +County "MO, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900210.epw site_zip_code=64506 site_time_zone_utc_offset=-6 +County "MO, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900230.epw site_zip_code=63901 site_time_zone_utc_offset=-6 +County "MO, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900250.epw site_zip_code=64644 site_time_zone_utc_offset=-6 +County "MO, Callaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900270.epw site_zip_code=65251 site_time_zone_utc_offset=-6 +County "MO, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900290.epw site_zip_code=65020 site_time_zone_utc_offset=-6 +County "MO, Cape Girardeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900310.epw site_zip_code=63701 site_time_zone_utc_offset=-6 +County "MO, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900330.epw site_zip_code=64633 site_time_zone_utc_offset=-6 +County "MO, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900350.epw site_zip_code=63965 site_time_zone_utc_offset=-6 +County "MO, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900370.epw site_zip_code=64012 site_time_zone_utc_offset=-6 +County "MO, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900390.epw site_zip_code=64744 site_time_zone_utc_offset=-6 +County "MO, Chariton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900410.epw site_zip_code=65281 site_time_zone_utc_offset=-6 +County "MO, Christian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900430.epw site_zip_code=65714 site_time_zone_utc_offset=-6 +County "MO, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900450.epw site_zip_code=63445 site_time_zone_utc_offset=-6 +County "MO, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900470.epw site_zip_code=64118 site_time_zone_utc_offset=-6 +County "MO, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900490.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Cole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900510.epw site_zip_code=65109 site_time_zone_utc_offset=-6 +County "MO, Cooper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900530.epw site_zip_code=65233 site_time_zone_utc_offset=-6 +County "MO, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900550.epw site_zip_code=65453 site_time_zone_utc_offset=-6 +County "MO, Dade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900570.epw site_zip_code=65661 site_time_zone_utc_offset=-6 +County "MO, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900590.epw site_zip_code=65622 site_time_zone_utc_offset=-6 +County "MO, Daviess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900610.epw site_zip_code=64640 site_time_zone_utc_offset=-6 +County "MO, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900630.epw site_zip_code=64429 site_time_zone_utc_offset=-6 +County "MO, Dent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900650.epw site_zip_code=65560 site_time_zone_utc_offset=-6 +County "MO, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900670.epw site_zip_code=65608 site_time_zone_utc_offset=-6 +County "MO, Dunklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900690.epw site_zip_code=63857 site_time_zone_utc_offset=-6 +County "MO, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900710.epw site_zip_code=63090 site_time_zone_utc_offset=-6 +County "MO, Gasconade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900730.epw site_zip_code=65066 site_time_zone_utc_offset=-6 +County "MO, Gentry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900750.epw site_zip_code=64402 site_time_zone_utc_offset=-6 +County "MO, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900770.epw site_zip_code=65807 site_time_zone_utc_offset=-6 +County "MO, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900790.epw site_zip_code=64683 site_time_zone_utc_offset=-6 +County "MO, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900810.epw site_zip_code=64424 site_time_zone_utc_offset=-6 +County "MO, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900830.epw site_zip_code=64735 site_time_zone_utc_offset=-6 +County "MO, Hickory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900850.epw site_zip_code=65779 site_time_zone_utc_offset=-6 +County "MO, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900870.epw site_zip_code=64470 site_time_zone_utc_offset=-6 +County "MO, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900890.epw site_zip_code=65248 site_time_zone_utc_offset=-6 +County "MO, Howell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900910.epw site_zip_code=65775 site_time_zone_utc_offset=-6 +County "MO, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900930.epw site_zip_code=63650 site_time_zone_utc_offset=-6 +County "MO, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900950.epw site_zip_code=64055 site_time_zone_utc_offset=-6 +County "MO, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900970.epw site_zip_code=64801 site_time_zone_utc_offset=-6 +County "MO, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2900990.epw site_zip_code=63010 site_time_zone_utc_offset=-6 +County "MO, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901010.epw site_zip_code=64093 site_time_zone_utc_offset=-6 +County "MO, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901030.epw site_zip_code=63537 site_time_zone_utc_offset=-6 +County "MO, Laclede County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901050.epw site_zip_code=65536 site_time_zone_utc_offset=-6 +County "MO, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901070.epw site_zip_code=64076 site_time_zone_utc_offset=-6 +County "MO, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901090.epw site_zip_code=65605 site_time_zone_utc_offset=-6 +County "MO, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901110.epw site_zip_code=63435 site_time_zone_utc_offset=-6 +County "MO, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901130.epw site_zip_code=63379 site_time_zone_utc_offset=-6 +County "MO, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901150.epw site_zip_code=64628 site_time_zone_utc_offset=-6 +County "MO, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901170.epw site_zip_code=64601 site_time_zone_utc_offset=-6 +County "MO, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901210.epw site_zip_code=63552 site_time_zone_utc_offset=-6 +County "MO, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901230.epw site_zip_code=63645 site_time_zone_utc_offset=-6 +County "MO, Maries County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901250.epw site_zip_code=65582 site_time_zone_utc_offset=-6 +County "MO, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901270.epw site_zip_code=63401 site_time_zone_utc_offset=-6 +County "MO, McDonald County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901190.epw site_zip_code=64831 site_time_zone_utc_offset=-6 +County "MO, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901290.epw site_zip_code=64673 site_time_zone_utc_offset=-6 +County "MO, Miller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901310.epw site_zip_code=65026 site_time_zone_utc_offset=-6 +County "MO, Mississippi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901330.epw site_zip_code=63845 site_time_zone_utc_offset=-6 +County "MO, Moniteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901350.epw site_zip_code=65018 site_time_zone_utc_offset=-6 +County "MO, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901370.epw site_zip_code=65275 site_time_zone_utc_offset=-6 +County "MO, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901390.epw site_zip_code=63361 site_time_zone_utc_offset=-6 +County "MO, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901410.epw site_zip_code=65037 site_time_zone_utc_offset=-6 +County "MO, New Madrid County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901430.epw site_zip_code=63873 site_time_zone_utc_offset=-6 +County "MO, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901450.epw site_zip_code=64850 site_time_zone_utc_offset=-6 +County "MO, Nodaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901470.epw site_zip_code=64468 site_time_zone_utc_offset=-6 +County "MO, Oregon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901490.epw site_zip_code=65606 site_time_zone_utc_offset=-6 +County "MO, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901510.epw site_zip_code=65051 site_time_zone_utc_offset=-6 +County "MO, Ozark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901530.epw site_zip_code=65655 site_time_zone_utc_offset=-6 +County "MO, Pemiscot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901550.epw site_zip_code=63830 site_time_zone_utc_offset=-6 +County "MO, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901570.epw site_zip_code=63775 site_time_zone_utc_offset=-6 +County "MO, Pettis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901590.epw site_zip_code=65301 site_time_zone_utc_offset=-6 +County "MO, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901610.epw site_zip_code=65401 site_time_zone_utc_offset=-6 +County "MO, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901630.epw site_zip_code=63334 site_time_zone_utc_offset=-6 +County "MO, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901650.epw site_zip_code=64151 site_time_zone_utc_offset=-6 +County "MO, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901670.epw site_zip_code=65613 site_time_zone_utc_offset=-6 +County "MO, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901690.epw site_zip_code=65473 site_time_zone_utc_offset=-6 +County "MO, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901710.epw site_zip_code=63565 site_time_zone_utc_offset=-6 +County "MO, Ralls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901730.epw site_zip_code=63459 site_time_zone_utc_offset=-6 +County "MO, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901750.epw site_zip_code=65270 site_time_zone_utc_offset=-6 +County "MO, Ray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901770.epw site_zip_code=64085 site_time_zone_utc_offset=-6 +County "MO, Reynolds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901790.epw site_zip_code=63638 site_time_zone_utc_offset=-6 +County "MO, Ripley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901810.epw site_zip_code=63935 site_time_zone_utc_offset=-6 +County "MO, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901950.epw site_zip_code=65340 site_time_zone_utc_offset=-6 +County "MO, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901970.epw site_zip_code=63548 site_time_zone_utc_offset=-6 +County "MO, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901990.epw site_zip_code=63555 site_time_zone_utc_offset=-6 +County "MO, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902010.epw site_zip_code=63801 site_time_zone_utc_offset=-6 +County "MO, Shannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902030.epw site_zip_code=65588 site_time_zone_utc_offset=-6 +County "MO, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902050.epw site_zip_code=63468 site_time_zone_utc_offset=-6 +County "MO, St. Charles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901830.epw site_zip_code=63376 site_time_zone_utc_offset=-6 +County "MO, St. Clair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901850.epw site_zip_code=64776 site_time_zone_utc_offset=-6 +County "MO, St. Francois County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901870.epw site_zip_code=63640 site_time_zone_utc_offset=-6 +County "MO, St. Louis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901890.epw site_zip_code=63021 site_time_zone_utc_offset=-6 +County "MO, St. Louis city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2905100.epw site_zip_code=63116 site_time_zone_utc_offset=-6 +County "MO, Ste. Genevieve County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2901860.epw site_zip_code=63670 site_time_zone_utc_offset=-6 +County "MO, Stoddard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902070.epw site_zip_code=63841 site_time_zone_utc_offset=-6 +County "MO, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902090.epw site_zip_code=65737 site_time_zone_utc_offset=-6 +County "MO, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902110.epw site_zip_code=63556 site_time_zone_utc_offset=-6 +County "MO, Taney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902130.epw site_zip_code=65616 site_time_zone_utc_offset=-6 +County "MO, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902150.epw site_zip_code=65483 site_time_zone_utc_offset=-6 +County "MO, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902170.epw site_zip_code=64772 site_time_zone_utc_offset=-6 +County "MO, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902190.epw site_zip_code=63383 site_time_zone_utc_offset=-6 +County "MO, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902210.epw site_zip_code=63664 site_time_zone_utc_offset=-6 +County "MO, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902230.epw site_zip_code=63957 site_time_zone_utc_offset=-6 +County "MO, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902250.epw site_zip_code=65706 site_time_zone_utc_offset=-6 +County "MO, Worth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902270.epw site_zip_code=64456 site_time_zone_utc_offset=-6 +County "MO, Wright County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2902290.epw site_zip_code=65711 site_time_zone_utc_offset=-6 +County "MS, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800010.epw site_zip_code=39120 site_time_zone_utc_offset=-6 +County "MS, Alcorn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800030.epw site_zip_code=38834 site_time_zone_utc_offset=-6 +County "MS, Amite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800050.epw site_zip_code=39645 site_time_zone_utc_offset=-6 +County "MS, Attala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800070.epw site_zip_code=39090 site_time_zone_utc_offset=-6 +County "MS, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800090.epw site_zip_code=38603 site_time_zone_utc_offset=-6 +County "MS, Bolivar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800110.epw site_zip_code=38732 site_time_zone_utc_offset=-6 +County "MS, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800130.epw site_zip_code=38916 site_time_zone_utc_offset=-6 +County "MS, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800150.epw site_zip_code=38917 site_time_zone_utc_offset=-6 +County "MS, Chickasaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800170.epw site_zip_code=38851 site_time_zone_utc_offset=-6 +County "MS, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800190.epw site_zip_code=39735 site_time_zone_utc_offset=-6 +County "MS, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800210.epw site_zip_code=39150 site_time_zone_utc_offset=-6 +County "MS, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800230.epw site_zip_code=39355 site_time_zone_utc_offset=-6 +County "MS, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800250.epw site_zip_code=39773 site_time_zone_utc_offset=-6 +County "MS, Coahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800270.epw site_zip_code=38614 site_time_zone_utc_offset=-6 +County "MS, Copiah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800290.epw site_zip_code=39059 site_time_zone_utc_offset=-6 +County "MS, Covington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800310.epw site_zip_code=39428 site_time_zone_utc_offset=-6 +County "MS, DeSoto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800330.epw site_zip_code=38654 site_time_zone_utc_offset=-6 +County "MS, Forrest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800350.epw site_zip_code=39401 site_time_zone_utc_offset=-6 +County "MS, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800370.epw site_zip_code=39653 site_time_zone_utc_offset=-6 +County "MS, George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800390.epw site_zip_code=39452 site_time_zone_utc_offset=-6 +County "MS, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800410.epw site_zip_code=39451 site_time_zone_utc_offset=-6 +County "MS, Grenada County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800430.epw site_zip_code=38901 site_time_zone_utc_offset=-6 +County "MS, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800450.epw site_zip_code=39520 site_time_zone_utc_offset=-6 +County "MS, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800470.epw site_zip_code=39503 site_time_zone_utc_offset=-6 +County "MS, Hinds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800490.epw site_zip_code=39209 site_time_zone_utc_offset=-6 +County "MS, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800510.epw site_zip_code=39095 site_time_zone_utc_offset=-6 +County "MS, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800530.epw site_zip_code=39038 site_time_zone_utc_offset=-6 +County "MS, Issaquena County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800550.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Itawamba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800570.epw site_zip_code=38843 site_time_zone_utc_offset=-6 +County "MS, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800590.epw site_zip_code=39564 site_time_zone_utc_offset=-6 +County "MS, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800610.epw site_zip_code=39422 site_time_zone_utc_offset=-6 +County "MS, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800630.epw site_zip_code=39069 site_time_zone_utc_offset=-6 +County "MS, Jefferson Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800650.epw site_zip_code=39474 site_time_zone_utc_offset=-6 +County "MS, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800670.epw site_zip_code=39443 site_time_zone_utc_offset=-6 +County "MS, Kemper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800690.epw site_zip_code=39328 site_time_zone_utc_offset=-6 +County "MS, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800710.epw site_zip_code=38655 site_time_zone_utc_offset=-6 +County "MS, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800730.epw site_zip_code=39402 site_time_zone_utc_offset=-6 +County "MS, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800750.epw site_zip_code=39301 site_time_zone_utc_offset=-6 +County "MS, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800770.epw site_zip_code=39654 site_time_zone_utc_offset=-6 +County "MS, Leake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800790.epw site_zip_code=39051 site_time_zone_utc_offset=-6 +County "MS, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800810.epw site_zip_code=38801 site_time_zone_utc_offset=-6 +County "MS, Leflore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800830.epw site_zip_code=38930 site_time_zone_utc_offset=-6 +County "MS, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800850.epw site_zip_code=39601 site_time_zone_utc_offset=-6 +County "MS, Lowndes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800870.epw site_zip_code=39702 site_time_zone_utc_offset=-6 +County "MS, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800890.epw site_zip_code=39110 site_time_zone_utc_offset=-6 +County "MS, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800910.epw site_zip_code=39429 site_time_zone_utc_offset=-6 +County "MS, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800930.epw site_zip_code=38611 site_time_zone_utc_offset=-6 +County "MS, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800950.epw site_zip_code=38821 site_time_zone_utc_offset=-6 +County "MS, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800970.epw site_zip_code=38967 site_time_zone_utc_offset=-6 +County "MS, Neshoba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2800990.epw site_zip_code=39350 site_time_zone_utc_offset=-6 +County "MS, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801010.epw site_zip_code=39345 site_time_zone_utc_offset=-6 +County "MS, Noxubee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801030.epw site_zip_code=39341 site_time_zone_utc_offset=-6 +County "MS, Oktibbeha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801050.epw site_zip_code=39759 site_time_zone_utc_offset=-6 +County "MS, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801070.epw site_zip_code=38606 site_time_zone_utc_offset=-6 +County "MS, Pearl River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801090.epw site_zip_code=39466 site_time_zone_utc_offset=-6 +County "MS, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801110.epw site_zip_code=39476 site_time_zone_utc_offset=-6 +County "MS, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801130.epw site_zip_code=39648 site_time_zone_utc_offset=-6 +County "MS, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801150.epw site_zip_code=38863 site_time_zone_utc_offset=-6 +County "MS, Prentiss County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801170.epw site_zip_code=38829 site_time_zone_utc_offset=-6 +County "MS, Quitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801190.epw site_zip_code=38646 site_time_zone_utc_offset=-6 +County "MS, Rankin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801210.epw site_zip_code=39047 site_time_zone_utc_offset=-6 +County "MS, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801230.epw site_zip_code=39074 site_time_zone_utc_offset=-6 +County "MS, Sharkey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801250.epw site_zip_code=39159 site_time_zone_utc_offset=-6 +County "MS, Simpson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801270.epw site_zip_code=39111 site_time_zone_utc_offset=-6 +County "MS, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801290.epw site_zip_code=39168 site_time_zone_utc_offset=-6 +County "MS, Stone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801310.epw site_zip_code=39577 site_time_zone_utc_offset=-6 +County "MS, Sunflower County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801330.epw site_zip_code=38751 site_time_zone_utc_offset=-6 +County "MS, Tallahatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801350.epw site_zip_code=38921 site_time_zone_utc_offset=-6 +County "MS, Tate County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801370.epw site_zip_code=38668 site_time_zone_utc_offset=-6 +County "MS, Tippah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801390.epw site_zip_code=38663 site_time_zone_utc_offset=-6 +County "MS, Tishomingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801410.epw site_zip_code=38852 site_time_zone_utc_offset=-6 +County "MS, Tunica County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801430.epw site_zip_code=38676 site_time_zone_utc_offset=-6 +County "MS, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801450.epw site_zip_code=38652 site_time_zone_utc_offset=-6 +County "MS, Walthall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801470.epw site_zip_code=39667 site_time_zone_utc_offset=-6 +County "MS, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801490.epw site_zip_code=39180 site_time_zone_utc_offset=-6 +County "MS, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801510.epw site_zip_code=38701 site_time_zone_utc_offset=-6 +County "MS, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801530.epw site_zip_code=39367 site_time_zone_utc_offset=-6 +County "MS, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801550.epw site_zip_code=39744 site_time_zone_utc_offset=-6 +County "MS, Wilkinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801570.epw site_zip_code=39669 site_time_zone_utc_offset=-6 +County "MS, Winston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801590.epw site_zip_code=39339 site_time_zone_utc_offset=-6 +County "MS, Yalobusha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801610.epw site_zip_code=38965 site_time_zone_utc_offset=-6 +County "MS, Yazoo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G2801630.epw site_zip_code=39194 site_time_zone_utc_offset=-6 +County "MT, Beaverhead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000010.epw site_zip_code=59725 site_time_zone_utc_offset=-7 +County "MT, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000030.epw site_zip_code=59034 site_time_zone_utc_offset=-7 +County "MT, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000050.epw site_zip_code=59526 site_time_zone_utc_offset=-7 +County "MT, Broadwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000070.epw site_zip_code=59644 site_time_zone_utc_offset=-7 +County "MT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000090.epw site_zip_code=59068 site_time_zone_utc_offset=-7 +County "MT, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000110.epw site_zip_code=59324 site_time_zone_utc_offset=-7 +County "MT, Cascade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000130.epw site_zip_code=59405 site_time_zone_utc_offset=-7 +County "MT, Chouteau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000150.epw site_zip_code=59442 site_time_zone_utc_offset=-7 +County "MT, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000170.epw site_zip_code=59301 site_time_zone_utc_offset=-7 +County "MT, Daniels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000190.epw site_zip_code=59263 site_time_zone_utc_offset=-7 +County "MT, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000210.epw site_zip_code=59330 site_time_zone_utc_offset=-7 +County "MT, Deer Lodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000230.epw site_zip_code=59711 site_time_zone_utc_offset=-7 +County "MT, Fallon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000250.epw site_zip_code=59313 site_time_zone_utc_offset=-7 +County "MT, Fergus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000270.epw site_zip_code=59457 site_time_zone_utc_offset=-7 +County "MT, Flathead County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000290.epw site_zip_code=59901 site_time_zone_utc_offset=-7 +County "MT, Gallatin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000310.epw site_zip_code=59718 site_time_zone_utc_offset=-7 +County "MT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000330.epw site_zip_code=59337 site_time_zone_utc_offset=-7 +County "MT, Glacier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000350.epw site_zip_code=59427 site_time_zone_utc_offset=-7 +County "MT, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000370.epw site_zip_code=59074 site_time_zone_utc_offset=-7 +County "MT, Granite County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000390.epw site_zip_code=59858 site_time_zone_utc_offset=-7 +County "MT, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000410.epw site_zip_code=59501 site_time_zone_utc_offset=-7 +County "MT, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000430.epw site_zip_code=59634 site_time_zone_utc_offset=-7 +County "MT, Judith Basin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000450.epw site_zip_code=59479 site_time_zone_utc_offset=-7 +County "MT, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000470.epw site_zip_code=59860 site_time_zone_utc_offset=-7 +County "MT, Lewis and Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000490.epw site_zip_code=59601 site_time_zone_utc_offset=-7 +County "MT, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000510.epw site_zip_code=59522 site_time_zone_utc_offset=-7 +County "MT, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000530.epw site_zip_code=59923 site_time_zone_utc_offset=-7 +County "MT, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000570.epw site_zip_code=59729 site_time_zone_utc_offset=-7 +County "MT, McCone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000550.epw site_zip_code=59215 site_time_zone_utc_offset=-7 +County "MT, Meagher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000590.epw site_zip_code=59645 site_time_zone_utc_offset=-7 +County "MT, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000610.epw site_zip_code=59872 site_time_zone_utc_offset=-7 +County "MT, Missoula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000630.epw site_zip_code=59801 site_time_zone_utc_offset=-7 +County "MT, Musselshell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000650.epw site_zip_code=59072 site_time_zone_utc_offset=-7 +County "MT, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000670.epw site_zip_code=59047 site_time_zone_utc_offset=-7 +County "MT, Petroleum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000690.epw site_zip_code=59087 site_time_zone_utc_offset=-7 +County "MT, Phillips County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000710.epw site_zip_code=59538 site_time_zone_utc_offset=-7 +County "MT, Pondera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000730.epw site_zip_code=59425 site_time_zone_utc_offset=-7 +County "MT, Powder River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000750.epw site_zip_code=59317 site_time_zone_utc_offset=-7 +County "MT, Powell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000770.epw site_zip_code=59722 site_time_zone_utc_offset=-7 +County "MT, Prairie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000790.epw site_zip_code=59349 site_time_zone_utc_offset=-7 +County "MT, Ravalli County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000810.epw site_zip_code=59840 site_time_zone_utc_offset=-7 +County "MT, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000830.epw site_zip_code=59270 site_time_zone_utc_offset=-7 +County "MT, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000850.epw site_zip_code=59201 site_time_zone_utc_offset=-7 +County "MT, Rosebud County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000870.epw site_zip_code=59327 site_time_zone_utc_offset=-7 +County "MT, Sanders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000890.epw site_zip_code=59859 site_time_zone_utc_offset=-7 +County "MT, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000910.epw site_zip_code=59254 site_time_zone_utc_offset=-7 +County "MT, Silver Bow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000930.epw site_zip_code=59701 site_time_zone_utc_offset=-7 +County "MT, Stillwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000950.epw site_zip_code=59019 site_time_zone_utc_offset=-7 +County "MT, Sweet Grass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000970.epw site_zip_code=59011 site_time_zone_utc_offset=-7 +County "MT, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3000990.epw site_zip_code=59422 site_time_zone_utc_offset=-7 +County "MT, Toole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001010.epw site_zip_code=59474 site_time_zone_utc_offset=-7 +County "MT, Treasure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001030.epw site_zip_code=59038 site_time_zone_utc_offset=-7 +County "MT, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001050.epw site_zip_code=59230 site_time_zone_utc_offset=-7 +County "MT, Wheatland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001070.epw site_zip_code=59036 site_time_zone_utc_offset=-7 +County "MT, Wibaux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001090.epw site_zip_code=59353 site_time_zone_utc_offset=-7 +County "MT, Yellowstone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3001110.epw site_zip_code=59102 site_time_zone_utc_offset=-7 +County "NC, Alamance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700010.epw site_zip_code=27215 site_time_zone_utc_offset=-5 +County "NC, Alexander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700030.epw site_zip_code=28681 site_time_zone_utc_offset=-5 +County "NC, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700050.epw site_zip_code=28675 site_time_zone_utc_offset=-5 +County "NC, Anson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700070.epw site_zip_code=28170 site_time_zone_utc_offset=-5 +County "NC, Ashe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700090.epw site_zip_code=28694 site_time_zone_utc_offset=-5 +County "NC, Avery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700110.epw site_zip_code=28657 site_time_zone_utc_offset=-5 +County "NC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700130.epw site_zip_code=27889 site_time_zone_utc_offset=-5 +County "NC, Bertie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700150.epw site_zip_code=27983 site_time_zone_utc_offset=-5 +County "NC, Bladen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700170.epw site_zip_code=28337 site_time_zone_utc_offset=-5 +County "NC, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700190.epw site_zip_code=28451 site_time_zone_utc_offset=-5 +County "NC, Buncombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700210.epw site_zip_code=28806 site_time_zone_utc_offset=-5 +County "NC, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700230.epw site_zip_code=28655 site_time_zone_utc_offset=-5 +County "NC, Cabarrus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700250.epw site_zip_code=28027 site_time_zone_utc_offset=-5 +County "NC, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700270.epw site_zip_code=28645 site_time_zone_utc_offset=-5 +County "NC, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700290.epw site_zip_code=27921 site_time_zone_utc_offset=-5 +County "NC, Carteret County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700310.epw site_zip_code=28570 site_time_zone_utc_offset=-5 +County "NC, Caswell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700330.epw site_zip_code=27379 site_time_zone_utc_offset=-5 +County "NC, Catawba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700350.epw site_zip_code=28601 site_time_zone_utc_offset=-5 +County "NC, Chatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700370.epw site_zip_code=27312 site_time_zone_utc_offset=-5 +County "NC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700390.epw site_zip_code=28906 site_time_zone_utc_offset=-5 +County "NC, Chowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700410.epw site_zip_code=27932 site_time_zone_utc_offset=-5 +County "NC, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700430.epw site_zip_code=28904 site_time_zone_utc_offset=-5 +County "NC, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700450.epw site_zip_code=28150 site_time_zone_utc_offset=-5 +County "NC, Columbus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700470.epw site_zip_code=28472 site_time_zone_utc_offset=-5 +County "NC, Craven County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700490.epw site_zip_code=28562 site_time_zone_utc_offset=-5 +County "NC, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700510.epw site_zip_code=28314 site_time_zone_utc_offset=-5 +County "NC, Currituck County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700530.epw site_zip_code=27958 site_time_zone_utc_offset=-5 +County "NC, Dare County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700550.epw site_zip_code=27949 site_time_zone_utc_offset=-5 +County "NC, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700570.epw site_zip_code=27360 site_time_zone_utc_offset=-5 +County "NC, Davie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700590.epw site_zip_code=27028 site_time_zone_utc_offset=-5 +County "NC, Duplin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700610.epw site_zip_code=28466 site_time_zone_utc_offset=-5 +County "NC, Durham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700630.epw site_zip_code=27703 site_time_zone_utc_offset=-5 +County "NC, Edgecombe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700650.epw site_zip_code=27801 site_time_zone_utc_offset=-5 +County "NC, Forsyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700670.epw site_zip_code=27284 site_time_zone_utc_offset=-5 +County "NC, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700690.epw site_zip_code=27549 site_time_zone_utc_offset=-5 +County "NC, Gaston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700710.epw site_zip_code=28054 site_time_zone_utc_offset=-5 +County "NC, Gates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700730.epw site_zip_code=27937 site_time_zone_utc_offset=-5 +County "NC, Graham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700750.epw site_zip_code=28771 site_time_zone_utc_offset=-5 +County "NC, Granville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700770.epw site_zip_code=27565 site_time_zone_utc_offset=-5 +County "NC, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700790.epw site_zip_code=28580 site_time_zone_utc_offset=-5 +County "NC, Guilford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700810.epw site_zip_code=27406 site_time_zone_utc_offset=-5 +County "NC, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700830.epw site_zip_code=27870 site_time_zone_utc_offset=-5 +County "NC, Harnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700850.epw site_zip_code=27546 site_time_zone_utc_offset=-5 +County "NC, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700870.epw site_zip_code=28786 site_time_zone_utc_offset=-5 +County "NC, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700890.epw site_zip_code=28792 site_time_zone_utc_offset=-5 +County "NC, Hertford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700910.epw site_zip_code=27910 site_time_zone_utc_offset=-5 +County "NC, Hoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700930.epw site_zip_code=28376 site_time_zone_utc_offset=-5 +County "NC, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700950.epw site_zip_code=27824 site_time_zone_utc_offset=-5 +County "NC, Iredell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700970.epw site_zip_code=28117 site_time_zone_utc_offset=-5 +County "NC, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3700990.epw site_zip_code=28779 site_time_zone_utc_offset=-5 +County "NC, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701010.epw site_zip_code=27520 site_time_zone_utc_offset=-5 +County "NC, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701030.epw site_zip_code=28585 site_time_zone_utc_offset=-5 +County "NC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701050.epw site_zip_code=27330 site_time_zone_utc_offset=-5 +County "NC, Lenoir County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701070.epw site_zip_code=28501 site_time_zone_utc_offset=-5 +County "NC, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701090.epw site_zip_code=28092 site_time_zone_utc_offset=-5 +County "NC, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701130.epw site_zip_code=28734 site_time_zone_utc_offset=-5 +County "NC, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701150.epw site_zip_code=28753 site_time_zone_utc_offset=-5 +County "NC, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701170.epw site_zip_code=27892 site_time_zone_utc_offset=-5 +County "NC, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701110.epw site_zip_code=28752 site_time_zone_utc_offset=-5 +County "NC, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701190.epw site_zip_code=28269 site_time_zone_utc_offset=-5 +County "NC, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701210.epw site_zip_code=28777 site_time_zone_utc_offset=-5 +County "NC, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701230.epw site_zip_code=27371 site_time_zone_utc_offset=-5 +County "NC, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701250.epw site_zip_code=28374 site_time_zone_utc_offset=-5 +County "NC, Nash County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701270.epw site_zip_code=27804 site_time_zone_utc_offset=-5 +County "NC, New Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701290.epw site_zip_code=28412 site_time_zone_utc_offset=-5 +County "NC, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701310.epw site_zip_code=27831 site_time_zone_utc_offset=-5 +County "NC, Onslow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701330.epw site_zip_code=28540 site_time_zone_utc_offset=-5 +County "NC, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701350.epw site_zip_code=27514 site_time_zone_utc_offset=-5 +County "NC, Pamlico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701370.epw site_zip_code=28571 site_time_zone_utc_offset=-5 +County "NC, Pasquotank County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701390.epw site_zip_code=27909 site_time_zone_utc_offset=-5 +County "NC, Pender County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701410.epw site_zip_code=28443 site_time_zone_utc_offset=-5 +County "NC, Perquimans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701430.epw site_zip_code=27944 site_time_zone_utc_offset=-5 +County "NC, Person County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701450.epw site_zip_code=27574 site_time_zone_utc_offset=-5 +County "NC, Pitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701470.epw site_zip_code=27858 site_time_zone_utc_offset=-5 +County "NC, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701490.epw site_zip_code=28782 site_time_zone_utc_offset=-5 +County "NC, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701510.epw site_zip_code=27205 site_time_zone_utc_offset=-5 +County "NC, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701530.epw site_zip_code=28379 site_time_zone_utc_offset=-5 +County "NC, Robeson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701550.epw site_zip_code=28358 site_time_zone_utc_offset=-5 +County "NC, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701570.epw site_zip_code=27320 site_time_zone_utc_offset=-5 +County "NC, Rowan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701590.epw site_zip_code=28146 site_time_zone_utc_offset=-5 +County "NC, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701610.epw site_zip_code=28043 site_time_zone_utc_offset=-5 +County "NC, Sampson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701630.epw site_zip_code=28328 site_time_zone_utc_offset=-5 +County "NC, Scotland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701650.epw site_zip_code=28352 site_time_zone_utc_offset=-5 +County "NC, Stanly County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701670.epw site_zip_code=28001 site_time_zone_utc_offset=-5 +County "NC, Stokes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701690.epw site_zip_code=27021 site_time_zone_utc_offset=-5 +County "NC, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701710.epw site_zip_code=27030 site_time_zone_utc_offset=-5 +County "NC, Swain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701730.epw site_zip_code=28713 site_time_zone_utc_offset=-5 +County "NC, Transylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701750.epw site_zip_code=28712 site_time_zone_utc_offset=-5 +County "NC, Tyrrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701770.epw site_zip_code=27925 site_time_zone_utc_offset=-5 +County "NC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701790.epw site_zip_code=28173 site_time_zone_utc_offset=-5 +County "NC, Vance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701810.epw site_zip_code=27537 site_time_zone_utc_offset=-5 +County "NC, Wake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701830.epw site_zip_code=27610 site_time_zone_utc_offset=-5 +County "NC, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701850.epw site_zip_code=27589 site_time_zone_utc_offset=-5 +County "NC, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701870.epw site_zip_code=27962 site_time_zone_utc_offset=-5 +County "NC, Watauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701890.epw site_zip_code=28607 site_time_zone_utc_offset=-5 +County "NC, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701910.epw site_zip_code=27530 site_time_zone_utc_offset=-5 +County "NC, Wilkes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701930.epw site_zip_code=28659 site_time_zone_utc_offset=-5 +County "NC, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701950.epw site_zip_code=27893 site_time_zone_utc_offset=-5 +County "NC, Yadkin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701970.epw site_zip_code=27055 site_time_zone_utc_offset=-5 +County "NC, Yancey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3701990.epw site_zip_code=28714 site_time_zone_utc_offset=-5 +County "ND, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800010.epw site_zip_code=58639 site_time_zone_utc_offset=-7 +County "ND, Barnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800030.epw site_zip_code=58072 site_time_zone_utc_offset=-6 +County "ND, Benson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800050.epw site_zip_code=58348 site_time_zone_utc_offset=-6 +County "ND, Billings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800070.epw site_zip_code=58622 site_time_zone_utc_offset=-7 +County "ND, Bottineau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800090.epw site_zip_code=58318 site_time_zone_utc_offset=-6 +County "ND, Bowman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800110.epw site_zip_code=58623 site_time_zone_utc_offset=-7 +County "ND, Burke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800130.epw site_zip_code=58773 site_time_zone_utc_offset=-6 +County "ND, Burleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800150.epw site_zip_code=58503 site_time_zone_utc_offset=-6 +County "ND, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800170.epw site_zip_code=58103 site_time_zone_utc_offset=-6 +County "ND, Cavalier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800190.epw site_zip_code=58249 site_time_zone_utc_offset=-6 +County "ND, Dickey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800210.epw site_zip_code=58474 site_time_zone_utc_offset=-6 +County "ND, Divide County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800230.epw site_zip_code=58730 site_time_zone_utc_offset=-6 +County "ND, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800250.epw site_zip_code=58640 site_time_zone_utc_offset=-7 +County "ND, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800270.epw site_zip_code=58356 site_time_zone_utc_offset=-6 +County "ND, Emmons County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800290.epw site_zip_code=58552 site_time_zone_utc_offset=-6 +County "ND, Foster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800310.epw site_zip_code=58421 site_time_zone_utc_offset=-6 +County "ND, Golden Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800330.epw site_zip_code=58621 site_time_zone_utc_offset=-7 +County "ND, Grand Forks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800350.epw site_zip_code=58201 site_time_zone_utc_offset=-6 +County "ND, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800370.epw site_zip_code=58533 site_time_zone_utc_offset=-7 +County "ND, Griggs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800390.epw site_zip_code=58425 site_time_zone_utc_offset=-6 +County "ND, Hettinger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800410.epw site_zip_code=58646 site_time_zone_utc_offset=-7 +County "ND, Kidder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800430.epw site_zip_code=58482 site_time_zone_utc_offset=-6 +County "ND, LaMoure County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800450.epw site_zip_code=58458 site_time_zone_utc_offset=-6 +County "ND, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800470.epw site_zip_code=58561 site_time_zone_utc_offset=-6 +County "ND, McHenry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800490.epw site_zip_code=58790 site_time_zone_utc_offset=-6 +County "ND, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800510.epw site_zip_code=58495 site_time_zone_utc_offset=-6 +County "ND, McKenzie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800530.epw site_zip_code=58854 site_time_zone_utc_offset=-7 +County "ND, McLean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800550.epw site_zip_code=58540 site_time_zone_utc_offset=-6 +County "ND, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800570.epw site_zip_code=58545 site_time_zone_utc_offset=-6 +County "ND, Morton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800590.epw site_zip_code=58554 site_time_zone_utc_offset=-6 +County "ND, Mountrail County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800610.epw site_zip_code=58763 site_time_zone_utc_offset=-6 +County "ND, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800630.epw site_zip_code=58344 site_time_zone_utc_offset=-6 +County "ND, Oliver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800650.epw site_zip_code=58530 site_time_zone_utc_offset=-6 +County "ND, Pembina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800670.epw site_zip_code=58220 site_time_zone_utc_offset=-6 +County "ND, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800690.epw site_zip_code=58368 site_time_zone_utc_offset=-6 +County "ND, Ramsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800710.epw site_zip_code=58301 site_time_zone_utc_offset=-6 +County "ND, Ransom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800730.epw site_zip_code=58054 site_time_zone_utc_offset=-6 +County "ND, Renville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800750.epw site_zip_code=58761 site_time_zone_utc_offset=-6 +County "ND, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800770.epw site_zip_code=58075 site_time_zone_utc_offset=-6 +County "ND, Rolette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800790.epw site_zip_code=58367 site_time_zone_utc_offset=-6 +County "ND, Sargent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800810.epw site_zip_code=58060 site_time_zone_utc_offset=-6 +County "ND, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800830.epw site_zip_code=58463 site_time_zone_utc_offset=-6 +County "ND, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800850.epw site_zip_code=58538 site_time_zone_utc_offset=-6 +County "ND, Slope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800870.epw site_zip_code=58620 site_time_zone_utc_offset=-7 +County "ND, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800890.epw site_zip_code=58601 site_time_zone_utc_offset=-7 +County "ND, Steele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800910.epw site_zip_code=58230 site_time_zone_utc_offset=-6 +County "ND, Stutsman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800930.epw site_zip_code=58401 site_time_zone_utc_offset=-6 +County "ND, Towner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800950.epw site_zip_code=58324 site_time_zone_utc_offset=-6 +County "ND, Traill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800970.epw site_zip_code=58257 site_time_zone_utc_offset=-6 +County "ND, Walsh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3800990.epw site_zip_code=58237 site_time_zone_utc_offset=-6 +County "ND, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801010.epw site_zip_code=58701 site_time_zone_utc_offset=-6 +County "ND, Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801030.epw site_zip_code=58341 site_time_zone_utc_offset=-6 +County "ND, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3801050.epw site_zip_code=58801 site_time_zone_utc_offset=-6 +County "NE, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100010.epw site_zip_code=68901 site_time_zone_utc_offset=-6 +County "NE, Antelope County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100030.epw site_zip_code=68756 site_time_zone_utc_offset=-6 +County "NE, Arthur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100050.epw site_zip_code=69121 site_time_zone_utc_offset=-7 +County "NE, Banner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100070.epw site_zip_code=69345 site_time_zone_utc_offset=-7 +County "NE, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100090.epw site_zip_code=68833 site_time_zone_utc_offset=-6 +County "NE, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100110.epw site_zip_code=68620 site_time_zone_utc_offset=-6 +County "NE, Box Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100130.epw site_zip_code=69301 site_time_zone_utc_offset=-7 +County "NE, Boyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100150.epw site_zip_code=68777 site_time_zone_utc_offset=-6 +County "NE, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100170.epw site_zip_code=69210 site_time_zone_utc_offset=-6 +County "NE, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100190.epw site_zip_code=68845 site_time_zone_utc_offset=-6 +County "NE, Burt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100210.epw site_zip_code=68061 site_time_zone_utc_offset=-6 +County "NE, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100230.epw site_zip_code=68632 site_time_zone_utc_offset=-6 +County "NE, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100250.epw site_zip_code=68048 site_time_zone_utc_offset=-6 +County "NE, Cedar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100270.epw site_zip_code=68739 site_time_zone_utc_offset=-6 +County "NE, Chase County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100290.epw site_zip_code=69033 site_time_zone_utc_offset=-7 +County "NE, Cherry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100310.epw site_zip_code=69201 site_time_zone_utc_offset=-6 +County "NE, Cheyenne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100330.epw site_zip_code=69162 site_time_zone_utc_offset=-7 +County "NE, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100350.epw site_zip_code=68979 site_time_zone_utc_offset=-6 +County "NE, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100370.epw site_zip_code=68661 site_time_zone_utc_offset=-6 +County "NE, Cuming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100390.epw site_zip_code=68788 site_time_zone_utc_offset=-6 +County "NE, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100410.epw site_zip_code=68822 site_time_zone_utc_offset=-6 +County "NE, Dakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100430.epw site_zip_code=68776 site_time_zone_utc_offset=-6 +County "NE, Dawes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100450.epw site_zip_code=69337 site_time_zone_utc_offset=-7 +County "NE, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100470.epw site_zip_code=68850 site_time_zone_utc_offset=-6 +County "NE, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100490.epw site_zip_code=69129 site_time_zone_utc_offset=-7 +County "NE, Dixon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100510.epw site_zip_code=68770 site_time_zone_utc_offset=-6 +County "NE, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100530.epw site_zip_code=68025 site_time_zone_utc_offset=-6 +County "NE, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100550.epw site_zip_code=68022 site_time_zone_utc_offset=-6 +County "NE, Dundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100570.epw site_zip_code=69021 site_time_zone_utc_offset=-7 +County "NE, Fillmore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100590.epw site_zip_code=68361 site_time_zone_utc_offset=-6 +County "NE, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100610.epw site_zip_code=68939 site_time_zone_utc_offset=-6 +County "NE, Frontier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100630.epw site_zip_code=69025 site_time_zone_utc_offset=-6 +County "NE, Furnas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100650.epw site_zip_code=69022 site_time_zone_utc_offset=-6 +County "NE, Gage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100670.epw site_zip_code=68310 site_time_zone_utc_offset=-6 +County "NE, Garden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100690.epw site_zip_code=69154 site_time_zone_utc_offset=-7 +County "NE, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100710.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Gosper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100730.epw site_zip_code=68937 site_time_zone_utc_offset=-6 +County "NE, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100750.epw site_zip_code=69350 site_time_zone_utc_offset=-7 +County "NE, Greeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100770.epw site_zip_code=68665 site_time_zone_utc_offset=-6 +County "NE, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100790.epw site_zip_code=68801 site_time_zone_utc_offset=-6 +County "NE, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100810.epw site_zip_code=68818 site_time_zone_utc_offset=-6 +County "NE, Harlan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100830.epw site_zip_code=68920 site_time_zone_utc_offset=-6 +County "NE, Hayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100850.epw site_zip_code=69032 site_time_zone_utc_offset=-6 +County "NE, Hitchcock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100870.epw site_zip_code=69024 site_time_zone_utc_offset=-6 +County "NE, Holt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100890.epw site_zip_code=68763 site_time_zone_utc_offset=-6 +County "NE, Hooker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100910.epw site_zip_code=69152 site_time_zone_utc_offset=-7 +County "NE, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100930.epw site_zip_code=68873 site_time_zone_utc_offset=-6 +County "NE, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100950.epw site_zip_code=68352 site_time_zone_utc_offset=-6 +County "NE, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100970.epw site_zip_code=68450 site_time_zone_utc_offset=-6 +County "NE, Kearney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3100990.epw site_zip_code=68959 site_time_zone_utc_offset=-6 +County "NE, Keith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101010.epw site_zip_code=69153 site_time_zone_utc_offset=-7 +County "NE, Keya Paha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101030.epw site_zip_code=68778 site_time_zone_utc_offset=-6 +County "NE, Kimball County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101050.epw site_zip_code=69145 site_time_zone_utc_offset=-7 +County "NE, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101070.epw site_zip_code=68718 site_time_zone_utc_offset=-6 +County "NE, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101090.epw site_zip_code=68516 site_time_zone_utc_offset=-6 +County "NE, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101110.epw site_zip_code=69101 site_time_zone_utc_offset=-6 +County "NE, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101130.epw site_zip_code=69163 site_time_zone_utc_offset=-6 +County "NE, Loup County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101150.epw site_zip_code=68823 site_time_zone_utc_offset=-6 +County "NE, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101190.epw site_zip_code=68701 site_time_zone_utc_offset=-6 +County "NE, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101170.epw site_zip_code=69167 site_time_zone_utc_offset=-6 +County "NE, Merrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101210.epw site_zip_code=68826 site_time_zone_utc_offset=-6 +County "NE, Morrill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101230.epw site_zip_code=69336 site_time_zone_utc_offset=-7 +County "NE, Nance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101250.epw site_zip_code=68638 site_time_zone_utc_offset=-6 +County "NE, Nemaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101270.epw site_zip_code=68305 site_time_zone_utc_offset=-6 +County "NE, Nuckolls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101290.epw site_zip_code=68978 site_time_zone_utc_offset=-6 +County "NE, Otoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101310.epw site_zip_code=68410 site_time_zone_utc_offset=-6 +County "NE, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101330.epw site_zip_code=68420 site_time_zone_utc_offset=-6 +County "NE, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101350.epw site_zip_code=69140 site_time_zone_utc_offset=-7 +County "NE, Phelps County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101370.epw site_zip_code=68949 site_time_zone_utc_offset=-6 +County "NE, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101390.epw site_zip_code=68767 site_time_zone_utc_offset=-6 +County "NE, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101410.epw site_zip_code=68601 site_time_zone_utc_offset=-6 +County "NE, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101430.epw site_zip_code=68666 site_time_zone_utc_offset=-6 +County "NE, Red Willow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101450.epw site_zip_code=69001 site_time_zone_utc_offset=-6 +County "NE, Richardson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101470.epw site_zip_code=68355 site_time_zone_utc_offset=-6 +County "NE, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101490.epw site_zip_code=68714 site_time_zone_utc_offset=-6 +County "NE, Saline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101510.epw site_zip_code=68333 site_time_zone_utc_offset=-6 +County "NE, Sarpy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101530.epw site_zip_code=68046 site_time_zone_utc_offset=-6 +County "NE, Saunders County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101550.epw site_zip_code=68066 site_time_zone_utc_offset=-6 +County "NE, Scotts Bluff County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101570.epw site_zip_code=69361 site_time_zone_utc_offset=-7 +County "NE, Seward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101590.epw site_zip_code=68434 site_time_zone_utc_offset=-6 +County "NE, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101610.epw site_zip_code=69343 site_time_zone_utc_offset=-7 +County "NE, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101630.epw site_zip_code=68853 site_time_zone_utc_offset=-6 +County "NE, Sioux County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101650.epw site_zip_code=69346 site_time_zone_utc_offset=-7 +County "NE, Stanton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101670.epw site_zip_code=68779 site_time_zone_utc_offset=-6 +County "NE, Thayer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101690.epw site_zip_code=68370 site_time_zone_utc_offset=-6 +County "NE, Thomas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101710.epw site_zip_code=69166 site_time_zone_utc_offset=-6 +County "NE, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101730.epw site_zip_code=68071 site_time_zone_utc_offset=-6 +County "NE, Valley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101750.epw site_zip_code=68862 site_time_zone_utc_offset=-6 +County "NE, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101770.epw site_zip_code=68008 site_time_zone_utc_offset=-6 +County "NE, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101790.epw site_zip_code=68787 site_time_zone_utc_offset=-6 +County "NE, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101810.epw site_zip_code=68970 site_time_zone_utc_offset=-6 +County "NE, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101830.epw site_zip_code=68637 site_time_zone_utc_offset=-6 +County "NE, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3101850.epw site_zip_code=68467 site_time_zone_utc_offset=-6 +County "NH, Belknap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300010.epw site_zip_code=03246 site_time_zone_utc_offset=-5 +County "NH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300030.epw site_zip_code=03894 site_time_zone_utc_offset=-5 +County "NH, Cheshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300050.epw site_zip_code=03431 site_time_zone_utc_offset=-5 +County "NH, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300070.epw site_zip_code=03570 site_time_zone_utc_offset=-5 +County "NH, Grafton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300090.epw site_zip_code=03766 site_time_zone_utc_offset=-5 +County "NH, Hillsborough County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300110.epw site_zip_code=03103 site_time_zone_utc_offset=-5 +County "NH, Merrimack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300130.epw site_zip_code=03301 site_time_zone_utc_offset=-5 +County "NH, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300150.epw site_zip_code=03038 site_time_zone_utc_offset=-5 +County "NH, Strafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300170.epw site_zip_code=03820 site_time_zone_utc_offset=-5 +County "NH, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3300190.epw site_zip_code=03743 site_time_zone_utc_offset=-5 +County "NJ, Atlantic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400010.epw site_zip_code=08401 site_time_zone_utc_offset=-5 +County "NJ, Bergen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400030.epw site_zip_code=07410 site_time_zone_utc_offset=-5 +County "NJ, Burlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400050.epw site_zip_code=08054 site_time_zone_utc_offset=-5 +County "NJ, Camden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400070.epw site_zip_code=08021 site_time_zone_utc_offset=-5 +County "NJ, Cape May County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400090.epw site_zip_code=08260 site_time_zone_utc_offset=-5 +County "NJ, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400110.epw site_zip_code=08332 site_time_zone_utc_offset=-5 +County "NJ, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400130.epw site_zip_code=07111 site_time_zone_utc_offset=-5 +County "NJ, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400150.epw site_zip_code=08096 site_time_zone_utc_offset=-5 +County "NJ, Hudson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400170.epw site_zip_code=07302 site_time_zone_utc_offset=-5 +County "NJ, Hunterdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400190.epw site_zip_code=08822 site_time_zone_utc_offset=-5 +County "NJ, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400210.epw site_zip_code=08618 site_time_zone_utc_offset=-5 +County "NJ, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400230.epw site_zip_code=08831 site_time_zone_utc_offset=-5 +County "NJ, Monmouth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400250.epw site_zip_code=07728 site_time_zone_utc_offset=-5 +County "NJ, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400270.epw site_zip_code=07960 site_time_zone_utc_offset=-5 +County "NJ, Ocean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400290.epw site_zip_code=08701 site_time_zone_utc_offset=-5 +County "NJ, Passaic County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400310.epw site_zip_code=07055 site_time_zone_utc_offset=-5 +County "NJ, Salem County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400330.epw site_zip_code=08069 site_time_zone_utc_offset=-5 +County "NJ, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400350.epw site_zip_code=08873 site_time_zone_utc_offset=-5 +County "NJ, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400370.epw site_zip_code=07860 site_time_zone_utc_offset=-5 +County "NJ, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400390.epw site_zip_code=07083 site_time_zone_utc_offset=-5 +County "NJ, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3400410.epw site_zip_code=08865 site_time_zone_utc_offset=-5 +County "NM, Bernalillo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500010.epw site_zip_code=87111 site_time_zone_utc_offset=-7 +County "NM, Catron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500030.epw site_zip_code=87829 site_time_zone_utc_offset=-7 +County "NM, Chaves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500050.epw site_zip_code=88203 site_time_zone_utc_offset=-7 +County "NM, Cibola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500060.epw site_zip_code=87020 site_time_zone_utc_offset=-7 +County "NM, Colfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500070.epw site_zip_code=87740 site_time_zone_utc_offset=-7 +County "NM, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500090.epw site_zip_code=88101 site_time_zone_utc_offset=-7 +County "NM, De Baca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500110.epw site_zip_code=88119 site_time_zone_utc_offset=-7 +County "NM, Dona Ana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500130.epw site_zip_code=88001 site_time_zone_utc_offset=-7 +County "NM, Eddy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500150.epw site_zip_code=88220 site_time_zone_utc_offset=-7 +County "NM, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500170.epw site_zip_code=88061 site_time_zone_utc_offset=-7 +County "NM, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500190.epw site_zip_code=88435 site_time_zone_utc_offset=-7 +County "NM, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500210.epw site_zip_code=87743 site_time_zone_utc_offset=-7 +County "NM, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500230.epw site_zip_code=88045 site_time_zone_utc_offset=-7 +County "NM, Lea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500250.epw site_zip_code=88240 site_time_zone_utc_offset=-7 +County "NM, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500270.epw site_zip_code=88355 site_time_zone_utc_offset=-7 +County "NM, Los Alamos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500280.epw site_zip_code=87544 site_time_zone_utc_offset=-7 +County "NM, Luna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500290.epw site_zip_code=88030 site_time_zone_utc_offset=-7 +County "NM, McKinley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500310.epw site_zip_code=87301 site_time_zone_utc_offset=-7 +County "NM, Mora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500330.epw site_zip_code=87722 site_time_zone_utc_offset=-7 +County "NM, Otero County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500350.epw site_zip_code=88310 site_time_zone_utc_offset=-7 +County "NM, Quay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500370.epw site_zip_code=88401 site_time_zone_utc_offset=-7 +County "NM, Rio Arriba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500390.epw site_zip_code=87532 site_time_zone_utc_offset=-7 +County "NM, Roosevelt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500410.epw site_zip_code=88130 site_time_zone_utc_offset=-7 +County "NM, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500450.epw site_zip_code=87401 site_time_zone_utc_offset=-7 +County "NM, San Miguel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500470.epw site_zip_code=87701 site_time_zone_utc_offset=-7 +County "NM, Sandoval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500430.epw site_zip_code=87124 site_time_zone_utc_offset=-7 +County "NM, Santa Fe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500490.epw site_zip_code=87507 site_time_zone_utc_offset=-7 +County "NM, Sierra County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500510.epw site_zip_code=87901 site_time_zone_utc_offset=-7 +County "NM, Socorro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500530.epw site_zip_code=87801 site_time_zone_utc_offset=-7 +County "NM, Taos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500550.epw site_zip_code=87571 site_time_zone_utc_offset=-7 +County "NM, Torrance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500570.epw site_zip_code=87035 site_time_zone_utc_offset=-7 +County "NM, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500590.epw site_zip_code=88415 site_time_zone_utc_offset=-7 +County "NM, Valencia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3500610.epw site_zip_code=87031 site_time_zone_utc_offset=-7 +County "NV, Carson City" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3205100.epw site_zip_code=89701 site_time_zone_utc_offset=-8 +County "NV, Churchill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200010.epw site_zip_code=89406 site_time_zone_utc_offset=-8 +County "NV, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200030.epw site_zip_code=89052 site_time_zone_utc_offset=-8 +County "NV, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200050.epw site_zip_code=89460 site_time_zone_utc_offset=-8 +County "NV, Elko County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200070.epw site_zip_code=89801 site_time_zone_utc_offset=-8 +County "NV, Esmeralda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200090.epw site_zip_code=89010 site_time_zone_utc_offset=-8 +County "NV, Eureka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200110.epw site_zip_code=89316 site_time_zone_utc_offset=-8 +County "NV, Humboldt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200130.epw site_zip_code=89445 site_time_zone_utc_offset=-8 +County "NV, Lander County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200150.epw site_zip_code=89820 site_time_zone_utc_offset=-8 +County "NV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200170.epw site_zip_code=89017 site_time_zone_utc_offset=-8 +County "NV, Lyon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200190.epw site_zip_code=89408 site_time_zone_utc_offset=-8 +County "NV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200210.epw site_zip_code=89415 site_time_zone_utc_offset=-8 +County "NV, Nye County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200230.epw site_zip_code=89048 site_time_zone_utc_offset=-8 +County "NV, Pershing County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200270.epw site_zip_code=89419 site_time_zone_utc_offset=-8 +County "NV, Storey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200290.epw site_zip_code=89521 site_time_zone_utc_offset=-8 +County "NV, Washoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200310.epw site_zip_code=89502 site_time_zone_utc_offset=-8 +County "NV, White Pine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3200330.epw site_zip_code=89301 site_time_zone_utc_offset=-8 +County "NY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600010.epw site_zip_code=12203 site_time_zone_utc_offset=-5 +County "NY, Allegany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600030.epw site_zip_code=14895 site_time_zone_utc_offset=-5 +County "NY, Bronx County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600050.epw site_zip_code=10467 site_time_zone_utc_offset=-5 +County "NY, Broome County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600070.epw site_zip_code=13760 site_time_zone_utc_offset=-5 +County "NY, Cattaraugus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600090.epw site_zip_code=14760 site_time_zone_utc_offset=-5 +County "NY, Cayuga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600110.epw site_zip_code=13021 site_time_zone_utc_offset=-5 +County "NY, Chautauqua County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600130.epw site_zip_code=14701 site_time_zone_utc_offset=-5 +County "NY, Chemung County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600150.epw site_zip_code=14845 site_time_zone_utc_offset=-5 +County "NY, Chenango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600170.epw site_zip_code=13815 site_time_zone_utc_offset=-5 +County "NY, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600190.epw site_zip_code=12901 site_time_zone_utc_offset=-5 +County "NY, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600210.epw site_zip_code=12534 site_time_zone_utc_offset=-5 +County "NY, Cortland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600230.epw site_zip_code=13045 site_time_zone_utc_offset=-5 +County "NY, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600250.epw site_zip_code=13856 site_time_zone_utc_offset=-5 +County "NY, Dutchess County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600270.epw site_zip_code=12601 site_time_zone_utc_offset=-5 +County "NY, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600290.epw site_zip_code=14221 site_time_zone_utc_offset=-5 +County "NY, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600310.epw site_zip_code=12946 site_time_zone_utc_offset=-5 +County "NY, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600330.epw site_zip_code=12953 site_time_zone_utc_offset=-5 +County "NY, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600350.epw site_zip_code=12078 site_time_zone_utc_offset=-5 +County "NY, Genesee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600370.epw site_zip_code=14020 site_time_zone_utc_offset=-5 +County "NY, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600390.epw site_zip_code=12414 site_time_zone_utc_offset=-5 +County "NY, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600410.epw site_zip_code=12842 site_time_zone_utc_offset=-5 +County "NY, Herkimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600430.epw site_zip_code=13357 site_time_zone_utc_offset=-5 +County "NY, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600450.epw site_zip_code=13601 site_time_zone_utc_offset=-5 +County "NY, Kings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600470.epw site_zip_code=11226 site_time_zone_utc_offset=-5 +County "NY, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600490.epw site_zip_code=13367 site_time_zone_utc_offset=-5 +County "NY, Livingston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600510.epw site_zip_code=14454 site_time_zone_utc_offset=-5 +County "NY, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600530.epw site_zip_code=13032 site_time_zone_utc_offset=-5 +County "NY, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600550.epw site_zip_code=14580 site_time_zone_utc_offset=-5 +County "NY, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600570.epw site_zip_code=12010 site_time_zone_utc_offset=-5 +County "NY, Nassau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600590.epw site_zip_code=11758 site_time_zone_utc_offset=-5 +County "NY, New York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600610.epw site_zip_code=10025 site_time_zone_utc_offset=-5 +County "NY, Niagara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600630.epw site_zip_code=14094 site_time_zone_utc_offset=-5 +County "NY, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600650.epw site_zip_code=13440 site_time_zone_utc_offset=-5 +County "NY, Onondaga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600670.epw site_zip_code=13027 site_time_zone_utc_offset=-5 +County "NY, Ontario County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600690.epw site_zip_code=14424 site_time_zone_utc_offset=-5 +County "NY, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600710.epw site_zip_code=12550 site_time_zone_utc_offset=-5 +County "NY, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600730.epw site_zip_code=14411 site_time_zone_utc_offset=-5 +County "NY, Oswego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600750.epw site_zip_code=13126 site_time_zone_utc_offset=-5 +County "NY, Otsego County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600770.epw site_zip_code=13820 site_time_zone_utc_offset=-5 +County "NY, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600790.epw site_zip_code=10512 site_time_zone_utc_offset=-5 +County "NY, Queens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600810.epw site_zip_code=11375 site_time_zone_utc_offset=-5 +County "NY, Rensselaer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600830.epw site_zip_code=12180 site_time_zone_utc_offset=-5 +County "NY, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600850.epw site_zip_code=10314 site_time_zone_utc_offset=-5 +County "NY, Rockland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600870.epw site_zip_code=10977 site_time_zone_utc_offset=-5 +County "NY, Saratoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600910.epw site_zip_code=12866 site_time_zone_utc_offset=-5 +County "NY, Schenectady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600930.epw site_zip_code=12306 site_time_zone_utc_offset=-5 +County "NY, Schoharie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600950.epw site_zip_code=12043 site_time_zone_utc_offset=-5 +County "NY, Schuyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600970.epw site_zip_code=14891 site_time_zone_utc_offset=-5 +County "NY, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600990.epw site_zip_code=13148 site_time_zone_utc_offset=-5 +County "NY, St. Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3600890.epw site_zip_code=13676 site_time_zone_utc_offset=-5 +County "NY, Steuben County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601010.epw site_zip_code=14830 site_time_zone_utc_offset=-5 +County "NY, Suffolk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601030.epw site_zip_code=11746 site_time_zone_utc_offset=-5 +County "NY, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601050.epw site_zip_code=12701 site_time_zone_utc_offset=-5 +County "NY, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601070.epw site_zip_code=13827 site_time_zone_utc_offset=-5 +County "NY, Tompkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601090.epw site_zip_code=14850 site_time_zone_utc_offset=-5 +County "NY, Ulster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601110.epw site_zip_code=12401 site_time_zone_utc_offset=-5 +County "NY, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601130.epw site_zip_code=12804 site_time_zone_utc_offset=-5 +County "NY, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601150.epw site_zip_code=12839 site_time_zone_utc_offset=-5 +County "NY, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601170.epw site_zip_code=14513 site_time_zone_utc_offset=-5 +County "NY, Westchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601190.epw site_zip_code=10701 site_time_zone_utc_offset=-5 +County "NY, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601210.epw site_zip_code=14569 site_time_zone_utc_offset=-5 +County "NY, Yates County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3601230.epw site_zip_code=14527 site_time_zone_utc_offset=-5 +County "OH, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900010.epw site_zip_code=45693 site_time_zone_utc_offset=-5 +County "OH, Allen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900030.epw site_zip_code=45805 site_time_zone_utc_offset=-5 +County "OH, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900050.epw site_zip_code=44805 site_time_zone_utc_offset=-5 +County "OH, Ashtabula County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900070.epw site_zip_code=44004 site_time_zone_utc_offset=-5 +County "OH, Athens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900090.epw site_zip_code=45701 site_time_zone_utc_offset=-5 +County "OH, Auglaize County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900110.epw site_zip_code=45895 site_time_zone_utc_offset=-5 +County "OH, Belmont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900130.epw site_zip_code=43950 site_time_zone_utc_offset=-5 +County "OH, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900150.epw site_zip_code=45121 site_time_zone_utc_offset=-5 +County "OH, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900170.epw site_zip_code=45011 site_time_zone_utc_offset=-5 +County "OH, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900190.epw site_zip_code=44615 site_time_zone_utc_offset=-5 +County "OH, Champaign County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900210.epw site_zip_code=43078 site_time_zone_utc_offset=-5 +County "OH, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900230.epw site_zip_code=45503 site_time_zone_utc_offset=-5 +County "OH, Clermont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900250.epw site_zip_code=45103 site_time_zone_utc_offset=-5 +County "OH, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900270.epw site_zip_code=45177 site_time_zone_utc_offset=-5 +County "OH, Columbiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900290.epw site_zip_code=43920 site_time_zone_utc_offset=-5 +County "OH, Coshocton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900310.epw site_zip_code=43812 site_time_zone_utc_offset=-5 +County "OH, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900330.epw site_zip_code=44820 site_time_zone_utc_offset=-5 +County "OH, Cuyahoga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900350.epw site_zip_code=44107 site_time_zone_utc_offset=-5 +County "OH, Darke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900370.epw site_zip_code=45331 site_time_zone_utc_offset=-5 +County "OH, Defiance County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900390.epw site_zip_code=43512 site_time_zone_utc_offset=-5 +County "OH, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900410.epw site_zip_code=43015 site_time_zone_utc_offset=-5 +County "OH, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900430.epw site_zip_code=44870 site_time_zone_utc_offset=-5 +County "OH, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900450.epw site_zip_code=43130 site_time_zone_utc_offset=-5 +County "OH, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900470.epw site_zip_code=43160 site_time_zone_utc_offset=-5 +County "OH, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900490.epw site_zip_code=43081 site_time_zone_utc_offset=-5 +County "OH, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900510.epw site_zip_code=43567 site_time_zone_utc_offset=-5 +County "OH, Gallia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900530.epw site_zip_code=45631 site_time_zone_utc_offset=-5 +County "OH, Geauga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900550.epw site_zip_code=44024 site_time_zone_utc_offset=-5 +County "OH, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900570.epw site_zip_code=45324 site_time_zone_utc_offset=-5 +County "OH, Guernsey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900590.epw site_zip_code=43725 site_time_zone_utc_offset=-5 +County "OH, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900610.epw site_zip_code=45238 site_time_zone_utc_offset=-5 +County "OH, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900630.epw site_zip_code=45840 site_time_zone_utc_offset=-5 +County "OH, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900650.epw site_zip_code=43326 site_time_zone_utc_offset=-5 +County "OH, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900670.epw site_zip_code=43907 site_time_zone_utc_offset=-5 +County "OH, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900690.epw site_zip_code=43545 site_time_zone_utc_offset=-5 +County "OH, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900710.epw site_zip_code=45133 site_time_zone_utc_offset=-5 +County "OH, Hocking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900730.epw site_zip_code=43138 site_time_zone_utc_offset=-5 +County "OH, Holmes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900750.epw site_zip_code=44654 site_time_zone_utc_offset=-5 +County "OH, Huron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900770.epw site_zip_code=44857 site_time_zone_utc_offset=-5 +County "OH, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900790.epw site_zip_code=45640 site_time_zone_utc_offset=-5 +County "OH, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900810.epw site_zip_code=43952 site_time_zone_utc_offset=-5 +County "OH, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900830.epw site_zip_code=43050 site_time_zone_utc_offset=-5 +County "OH, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900850.epw site_zip_code=44060 site_time_zone_utc_offset=-5 +County "OH, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900870.epw site_zip_code=45638 site_time_zone_utc_offset=-5 +County "OH, Licking County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900890.epw site_zip_code=43055 site_time_zone_utc_offset=-5 +County "OH, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900910.epw site_zip_code=43311 site_time_zone_utc_offset=-5 +County "OH, Lorain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900930.epw site_zip_code=44035 site_time_zone_utc_offset=-5 +County "OH, Lucas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900950.epw site_zip_code=43615 site_time_zone_utc_offset=-5 +County "OH, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900970.epw site_zip_code=43140 site_time_zone_utc_offset=-5 +County "OH, Mahoning County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3900990.epw site_zip_code=44512 site_time_zone_utc_offset=-5 +County "OH, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901010.epw site_zip_code=43302 site_time_zone_utc_offset=-5 +County "OH, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901030.epw site_zip_code=44256 site_time_zone_utc_offset=-5 +County "OH, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901050.epw site_zip_code=45769 site_time_zone_utc_offset=-5 +County "OH, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901070.epw site_zip_code=45822 site_time_zone_utc_offset=-5 +County "OH, Miami County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901090.epw site_zip_code=45373 site_time_zone_utc_offset=-5 +County "OH, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901110.epw site_zip_code=43793 site_time_zone_utc_offset=-5 +County "OH, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901130.epw site_zip_code=45424 site_time_zone_utc_offset=-5 +County "OH, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901150.epw site_zip_code=43756 site_time_zone_utc_offset=-5 +County "OH, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901170.epw site_zip_code=43338 site_time_zone_utc_offset=-5 +County "OH, Muskingum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901190.epw site_zip_code=43701 site_time_zone_utc_offset=-5 +County "OH, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901210.epw site_zip_code=43724 site_time_zone_utc_offset=-5 +County "OH, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901230.epw site_zip_code=43452 site_time_zone_utc_offset=-5 +County "OH, Paulding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901250.epw site_zip_code=45879 site_time_zone_utc_offset=-5 +County "OH, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901270.epw site_zip_code=43764 site_time_zone_utc_offset=-5 +County "OH, Pickaway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901290.epw site_zip_code=43113 site_time_zone_utc_offset=-5 +County "OH, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901310.epw site_zip_code=45690 site_time_zone_utc_offset=-5 +County "OH, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901330.epw site_zip_code=44240 site_time_zone_utc_offset=-5 +County "OH, Preble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901350.epw site_zip_code=45320 site_time_zone_utc_offset=-5 +County "OH, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901370.epw site_zip_code=45875 site_time_zone_utc_offset=-5 +County "OH, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901390.epw site_zip_code=44903 site_time_zone_utc_offset=-5 +County "OH, Ross County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901410.epw site_zip_code=45601 site_time_zone_utc_offset=-5 +County "OH, Sandusky County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901430.epw site_zip_code=43420 site_time_zone_utc_offset=-5 +County "OH, Scioto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901450.epw site_zip_code=45662 site_time_zone_utc_offset=-5 +County "OH, Seneca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901470.epw site_zip_code=44883 site_time_zone_utc_offset=-5 +County "OH, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901490.epw site_zip_code=45365 site_time_zone_utc_offset=-5 +County "OH, Stark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901510.epw site_zip_code=44646 site_time_zone_utc_offset=-5 +County "OH, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901530.epw site_zip_code=44224 site_time_zone_utc_offset=-5 +County "OH, Trumbull County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901550.epw site_zip_code=44483 site_time_zone_utc_offset=-5 +County "OH, Tuscarawas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901570.epw site_zip_code=44663 site_time_zone_utc_offset=-5 +County "OH, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901590.epw site_zip_code=43040 site_time_zone_utc_offset=-5 +County "OH, Van Wert County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901610.epw site_zip_code=45891 site_time_zone_utc_offset=-5 +County "OH, Vinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901630.epw site_zip_code=45651 site_time_zone_utc_offset=-5 +County "OH, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901650.epw site_zip_code=45040 site_time_zone_utc_offset=-5 +County "OH, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901670.epw site_zip_code=45750 site_time_zone_utc_offset=-5 +County "OH, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901690.epw site_zip_code=44691 site_time_zone_utc_offset=-5 +County "OH, Williams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901710.epw site_zip_code=43506 site_time_zone_utc_offset=-5 +County "OH, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901730.epw site_zip_code=43551 site_time_zone_utc_offset=-5 +County "OH, Wyandot County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G3901750.epw site_zip_code=43351 site_time_zone_utc_offset=-5 +County "OK, Adair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000010.epw site_zip_code=74960 site_time_zone_utc_offset=-6 +County "OK, Alfalfa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000030.epw site_zip_code=73728 site_time_zone_utc_offset=-6 +County "OK, Atoka County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000050.epw site_zip_code=74525 site_time_zone_utc_offset=-6 +County "OK, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000070.epw site_zip_code=73932 site_time_zone_utc_offset=-6 +County "OK, Beckham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000090.epw site_zip_code=73644 site_time_zone_utc_offset=-6 +County "OK, Blaine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000110.epw site_zip_code=73772 site_time_zone_utc_offset=-6 +County "OK, Bryan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000130.epw site_zip_code=74701 site_time_zone_utc_offset=-6 +County "OK, Caddo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000150.epw site_zip_code=73005 site_time_zone_utc_offset=-6 +County "OK, Canadian County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000170.epw site_zip_code=73099 site_time_zone_utc_offset=-6 +County "OK, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000190.epw site_zip_code=73401 site_time_zone_utc_offset=-6 +County "OK, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000210.epw site_zip_code=74464 site_time_zone_utc_offset=-6 +County "OK, Choctaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000230.epw site_zip_code=74743 site_time_zone_utc_offset=-6 +County "OK, Cimarron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000250.epw site_zip_code=73933 site_time_zone_utc_offset=-6 +County "OK, Cleveland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000270.epw site_zip_code=73160 site_time_zone_utc_offset=-6 +County "OK, Coal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000290.epw site_zip_code=74538 site_time_zone_utc_offset=-6 +County "OK, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000310.epw site_zip_code=73505 site_time_zone_utc_offset=-6 +County "OK, Cotton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000330.epw site_zip_code=73572 site_time_zone_utc_offset=-6 +County "OK, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000350.epw site_zip_code=74301 site_time_zone_utc_offset=-6 +County "OK, Creek County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000370.epw site_zip_code=74066 site_time_zone_utc_offset=-6 +County "OK, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000390.epw site_zip_code=73096 site_time_zone_utc_offset=-6 +County "OK, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000410.epw site_zip_code=74344 site_time_zone_utc_offset=-6 +County "OK, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000430.epw site_zip_code=73859 site_time_zone_utc_offset=-6 +County "OK, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000450.epw site_zip_code=73858 site_time_zone_utc_offset=-6 +County "OK, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000470.epw site_zip_code=73703 site_time_zone_utc_offset=-6 +County "OK, Garvin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000490.epw site_zip_code=73075 site_time_zone_utc_offset=-6 +County "OK, Grady County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000510.epw site_zip_code=73018 site_time_zone_utc_offset=-6 +County "OK, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000530.epw site_zip_code=73759 site_time_zone_utc_offset=-6 +County "OK, Greer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000550.epw site_zip_code=73554 site_time_zone_utc_offset=-6 +County "OK, Harmon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000570.epw site_zip_code=73550 site_time_zone_utc_offset=-6 +County "OK, Harper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000590.epw site_zip_code=73848 site_time_zone_utc_offset=-6 +County "OK, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000610.epw site_zip_code=74462 site_time_zone_utc_offset=-6 +County "OK, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000630.epw site_zip_code=74848 site_time_zone_utc_offset=-6 +County "OK, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000650.epw site_zip_code=73521 site_time_zone_utc_offset=-6 +County "OK, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000670.epw site_zip_code=73573 site_time_zone_utc_offset=-6 +County "OK, Johnston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000690.epw site_zip_code=73460 site_time_zone_utc_offset=-6 +County "OK, Kay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000710.epw site_zip_code=74601 site_time_zone_utc_offset=-6 +County "OK, Kingfisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000730.epw site_zip_code=73750 site_time_zone_utc_offset=-6 +County "OK, Kiowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000750.epw site_zip_code=73651 site_time_zone_utc_offset=-6 +County "OK, Latimer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000770.epw site_zip_code=74578 site_time_zone_utc_offset=-6 +County "OK, Le Flore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000790.epw site_zip_code=74953 site_time_zone_utc_offset=-6 +County "OK, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000810.epw site_zip_code=74834 site_time_zone_utc_offset=-6 +County "OK, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000830.epw site_zip_code=73044 site_time_zone_utc_offset=-6 +County "OK, Love County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000850.epw site_zip_code=73448 site_time_zone_utc_offset=-6 +County "OK, Major County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000930.epw site_zip_code=73737 site_time_zone_utc_offset=-6 +County "OK, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000950.epw site_zip_code=73439 site_time_zone_utc_offset=-6 +County "OK, Mayes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000970.epw site_zip_code=74361 site_time_zone_utc_offset=-6 +County "OK, McClain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000870.epw site_zip_code=73080 site_time_zone_utc_offset=-6 +County "OK, McCurtain County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000890.epw site_zip_code=74728 site_time_zone_utc_offset=-6 +County "OK, McIntosh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000910.epw site_zip_code=74432 site_time_zone_utc_offset=-6 +County "OK, Murray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4000990.epw site_zip_code=73086 site_time_zone_utc_offset=-6 +County "OK, Muskogee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001010.epw site_zip_code=74403 site_time_zone_utc_offset=-6 +County "OK, Noble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001030.epw site_zip_code=73077 site_time_zone_utc_offset=-6 +County "OK, Nowata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001050.epw site_zip_code=74048 site_time_zone_utc_offset=-6 +County "OK, Okfuskee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001070.epw site_zip_code=74859 site_time_zone_utc_offset=-6 +County "OK, Oklahoma County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001090.epw site_zip_code=73013 site_time_zone_utc_offset=-6 +County "OK, Okmulgee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001110.epw site_zip_code=74447 site_time_zone_utc_offset=-6 +County "OK, Osage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001130.epw site_zip_code=74070 site_time_zone_utc_offset=-6 +County "OK, Ottawa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001150.epw site_zip_code=74354 site_time_zone_utc_offset=-6 +County "OK, Pawnee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001170.epw site_zip_code=74020 site_time_zone_utc_offset=-6 +County "OK, Payne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001190.epw site_zip_code=74074 site_time_zone_utc_offset=-6 +County "OK, Pittsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001210.epw site_zip_code=74501 site_time_zone_utc_offset=-6 +County "OK, Pontotoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001230.epw site_zip_code=74820 site_time_zone_utc_offset=-6 +County "OK, Pottawatomie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001250.epw site_zip_code=74801 site_time_zone_utc_offset=-6 +County "OK, Pushmataha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001270.epw site_zip_code=74523 site_time_zone_utc_offset=-6 +County "OK, Roger Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001290.epw site_zip_code=73628 site_time_zone_utc_offset=-6 +County "OK, Rogers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001310.epw site_zip_code=74017 site_time_zone_utc_offset=-6 +County "OK, Seminole County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001330.epw site_zip_code=74868 site_time_zone_utc_offset=-6 +County "OK, Sequoyah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001350.epw site_zip_code=74955 site_time_zone_utc_offset=-6 +County "OK, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001370.epw site_zip_code=73533 site_time_zone_utc_offset=-6 +County "OK, Texas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001390.epw site_zip_code=73942 site_time_zone_utc_offset=-6 +County "OK, Tillman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001410.epw site_zip_code=73542 site_time_zone_utc_offset=-6 +County "OK, Tulsa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001430.epw site_zip_code=74012 site_time_zone_utc_offset=-6 +County "OK, Wagoner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001450.epw site_zip_code=74014 site_time_zone_utc_offset=-6 +County "OK, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001470.epw site_zip_code=74006 site_time_zone_utc_offset=-6 +County "OK, Washita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001490.epw site_zip_code=73632 site_time_zone_utc_offset=-6 +County "OK, Woods County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001510.epw site_zip_code=73717 site_time_zone_utc_offset=-6 +County "OK, Woodward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4001530.epw site_zip_code=73801 site_time_zone_utc_offset=-6 +County "OR, Baker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100010.epw site_zip_code=97814 site_time_zone_utc_offset=-8 +County "OR, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100030.epw site_zip_code=97330 site_time_zone_utc_offset=-8 +County "OR, Clackamas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100050.epw site_zip_code=97045 site_time_zone_utc_offset=-8 +County "OR, Clatsop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100070.epw site_zip_code=97103 site_time_zone_utc_offset=-8 +County "OR, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100090.epw site_zip_code=97051 site_time_zone_utc_offset=-8 +County "OR, Coos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100110.epw site_zip_code=97420 site_time_zone_utc_offset=-8 +County "OR, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100130.epw site_zip_code=97754 site_time_zone_utc_offset=-8 +County "OR, Curry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100150.epw site_zip_code=97415 site_time_zone_utc_offset=-8 +County "OR, Deschutes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100170.epw site_zip_code=97702 site_time_zone_utc_offset=-8 +County "OR, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100190.epw site_zip_code=97471 site_time_zone_utc_offset=-8 +County "OR, Gilliam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100210.epw site_zip_code=97823 site_time_zone_utc_offset=-8 +County "OR, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100230.epw site_zip_code=97845 site_time_zone_utc_offset=-8 +County "OR, Harney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100250.epw site_zip_code=97720 site_time_zone_utc_offset=-8 +County "OR, Hood River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100270.epw site_zip_code=97031 site_time_zone_utc_offset=-8 +County "OR, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100290.epw site_zip_code=97504 site_time_zone_utc_offset=-8 +County "OR, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100310.epw site_zip_code=97741 site_time_zone_utc_offset=-8 +County "OR, Josephine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100330.epw site_zip_code=97526 site_time_zone_utc_offset=-8 +County "OR, Klamath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100350.epw site_zip_code=97603 site_time_zone_utc_offset=-8 +County "OR, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100370.epw site_zip_code=97630 site_time_zone_utc_offset=-8 +County "OR, Lane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100390.epw site_zip_code=97402 site_time_zone_utc_offset=-8 +County "OR, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100410.epw site_zip_code=97367 site_time_zone_utc_offset=-8 +County "OR, Linn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100430.epw site_zip_code=97322 site_time_zone_utc_offset=-8 +County "OR, Malheur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100450.epw site_zip_code=97914 site_time_zone_utc_offset=-7 +County "OR, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100470.epw site_zip_code=97301 site_time_zone_utc_offset=-8 +County "OR, Morrow County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100490.epw site_zip_code=97818 site_time_zone_utc_offset=-8 +County "OR, Multnomah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100510.epw site_zip_code=97206 site_time_zone_utc_offset=-8 +County "OR, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100530.epw site_zip_code=97304 site_time_zone_utc_offset=-8 +County "OR, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100550.epw site_zip_code=97065 site_time_zone_utc_offset=-8 +County "OR, Tillamook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100570.epw site_zip_code=97141 site_time_zone_utc_offset=-8 +County "OR, Umatilla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100590.epw site_zip_code=97838 site_time_zone_utc_offset=-8 +County "OR, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100610.epw site_zip_code=97850 site_time_zone_utc_offset=-8 +County "OR, Wallowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100630.epw site_zip_code=97828 site_time_zone_utc_offset=-8 +County "OR, Wasco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100650.epw site_zip_code=97058 site_time_zone_utc_offset=-8 +County "OR, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100670.epw site_zip_code=97229 site_time_zone_utc_offset=-8 +County "OR, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100690.epw site_zip_code=97830 site_time_zone_utc_offset=-8 +County "OR, Yamhill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4100710.epw site_zip_code=97128 site_time_zone_utc_offset=-8 +County "PA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200010.epw site_zip_code=17325 site_time_zone_utc_offset=-5 +County "PA, Allegheny County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200030.epw site_zip_code=15237 site_time_zone_utc_offset=-5 +County "PA, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200050.epw site_zip_code=16201 site_time_zone_utc_offset=-5 +County "PA, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200070.epw site_zip_code=15001 site_time_zone_utc_offset=-5 +County "PA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200090.epw site_zip_code=15522 site_time_zone_utc_offset=-5 +County "PA, Berks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200110.epw site_zip_code=19606 site_time_zone_utc_offset=-5 +County "PA, Blair County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200130.epw site_zip_code=16601 site_time_zone_utc_offset=-5 +County "PA, Bradford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200150.epw site_zip_code=18840 site_time_zone_utc_offset=-5 +County "PA, Bucks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200170.epw site_zip_code=19020 site_time_zone_utc_offset=-5 +County "PA, Butler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200190.epw site_zip_code=16001 site_time_zone_utc_offset=-5 +County "PA, Cambria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200210.epw site_zip_code=15905 site_time_zone_utc_offset=-5 +County "PA, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200230.epw site_zip_code=15834 site_time_zone_utc_offset=-5 +County "PA, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200250.epw site_zip_code=18235 site_time_zone_utc_offset=-5 +County "PA, Centre County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200270.epw site_zip_code=16801 site_time_zone_utc_offset=-5 +County "PA, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200290.epw site_zip_code=19380 site_time_zone_utc_offset=-5 +County "PA, Clarion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200310.epw site_zip_code=16214 site_time_zone_utc_offset=-5 +County "PA, Clearfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200330.epw site_zip_code=15801 site_time_zone_utc_offset=-5 +County "PA, Clinton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200350.epw site_zip_code=17745 site_time_zone_utc_offset=-5 +County "PA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200370.epw site_zip_code=17815 site_time_zone_utc_offset=-5 +County "PA, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200390.epw site_zip_code=16335 site_time_zone_utc_offset=-5 +County "PA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200410.epw site_zip_code=17055 site_time_zone_utc_offset=-5 +County "PA, Dauphin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200430.epw site_zip_code=17112 site_time_zone_utc_offset=-5 +County "PA, Delaware County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200450.epw site_zip_code=19063 site_time_zone_utc_offset=-5 +County "PA, Elk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200470.epw site_zip_code=15857 site_time_zone_utc_offset=-5 +County "PA, Erie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200490.epw site_zip_code=16509 site_time_zone_utc_offset=-5 +County "PA, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200510.epw site_zip_code=15401 site_time_zone_utc_offset=-5 +County "PA, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200530.epw site_zip_code=16353 site_time_zone_utc_offset=-5 +County "PA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200550.epw site_zip_code=17268 site_time_zone_utc_offset=-5 +County "PA, Fulton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200570.epw site_zip_code=17233 site_time_zone_utc_offset=-5 +County "PA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200590.epw site_zip_code=15370 site_time_zone_utc_offset=-5 +County "PA, Huntingdon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200610.epw site_zip_code=16652 site_time_zone_utc_offset=-5 +County "PA, Indiana County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200630.epw site_zip_code=15701 site_time_zone_utc_offset=-5 +County "PA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200650.epw site_zip_code=15767 site_time_zone_utc_offset=-5 +County "PA, Juniata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200670.epw site_zip_code=17059 site_time_zone_utc_offset=-5 +County "PA, Lackawanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200690.epw site_zip_code=18505 site_time_zone_utc_offset=-5 +County "PA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200710.epw site_zip_code=17603 site_time_zone_utc_offset=-5 +County "PA, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200730.epw site_zip_code=16101 site_time_zone_utc_offset=-5 +County "PA, Lebanon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200750.epw site_zip_code=17042 site_time_zone_utc_offset=-5 +County "PA, Lehigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200770.epw site_zip_code=18103 site_time_zone_utc_offset=-5 +County "PA, Luzerne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200790.epw site_zip_code=18702 site_time_zone_utc_offset=-5 +County "PA, Lycoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200810.epw site_zip_code=17701 site_time_zone_utc_offset=-5 +County "PA, McKean County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200830.epw site_zip_code=16701 site_time_zone_utc_offset=-5 +County "PA, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200850.epw site_zip_code=16148 site_time_zone_utc_offset=-5 +County "PA, Mifflin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200870.epw site_zip_code=17044 site_time_zone_utc_offset=-5 +County "PA, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200890.epw site_zip_code=18301 site_time_zone_utc_offset=-5 +County "PA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200910.epw site_zip_code=19446 site_time_zone_utc_offset=-5 +County "PA, Montour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200930.epw site_zip_code=17821 site_time_zone_utc_offset=-5 +County "PA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200950.epw site_zip_code=18042 site_time_zone_utc_offset=-5 +County "PA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200970.epw site_zip_code=17801 site_time_zone_utc_offset=-5 +County "PA, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4200990.epw site_zip_code=17020 site_time_zone_utc_offset=-5 +County "PA, Philadelphia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201010.epw site_zip_code=19143 site_time_zone_utc_offset=-5 +County "PA, Pike County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201030.epw site_zip_code=18337 site_time_zone_utc_offset=-5 +County "PA, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201050.epw site_zip_code=16915 site_time_zone_utc_offset=-5 +County "PA, Schuylkill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201070.epw site_zip_code=17901 site_time_zone_utc_offset=-5 +County "PA, Snyder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201090.epw site_zip_code=17870 site_time_zone_utc_offset=-5 +County "PA, Somerset County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201110.epw site_zip_code=15501 site_time_zone_utc_offset=-5 +County "PA, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201130.epw site_zip_code=18614 site_time_zone_utc_offset=-5 +County "PA, Susquehanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201150.epw site_zip_code=18801 site_time_zone_utc_offset=-5 +County "PA, Tioga County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201170.epw site_zip_code=16901 site_time_zone_utc_offset=-5 +County "PA, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201190.epw site_zip_code=17837 site_time_zone_utc_offset=-5 +County "PA, Venango County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201210.epw site_zip_code=16301 site_time_zone_utc_offset=-5 +County "PA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201230.epw site_zip_code=16365 site_time_zone_utc_offset=-5 +County "PA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201250.epw site_zip_code=15301 site_time_zone_utc_offset=-5 +County "PA, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201270.epw site_zip_code=18431 site_time_zone_utc_offset=-5 +County "PA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201290.epw site_zip_code=15601 site_time_zone_utc_offset=-5 +County "PA, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201310.epw site_zip_code=18657 site_time_zone_utc_offset=-5 +County "PA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4201330.epw site_zip_code=17331 site_time_zone_utc_offset=-5 +County "RI, Bristol County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400010.epw site_zip_code=02809 site_time_zone_utc_offset=-5 +County "RI, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400030.epw site_zip_code=02893 site_time_zone_utc_offset=-5 +County "RI, Newport County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400050.epw site_zip_code=02840 site_time_zone_utc_offset=-5 +County "RI, Providence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400070.epw site_zip_code=02860 site_time_zone_utc_offset=-5 +County "RI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4400090.epw site_zip_code=02891 site_time_zone_utc_offset=-5 +County "SC, Abbeville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500010.epw site_zip_code=29620 site_time_zone_utc_offset=-5 +County "SC, Aiken County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500030.epw site_zip_code=29803 site_time_zone_utc_offset=-5 +County "SC, Allendale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500050.epw site_zip_code=29810 site_time_zone_utc_offset=-5 +County "SC, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500070.epw site_zip_code=29621 site_time_zone_utc_offset=-5 +County "SC, Bamberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500090.epw site_zip_code=29003 site_time_zone_utc_offset=-5 +County "SC, Barnwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500110.epw site_zip_code=29812 site_time_zone_utc_offset=-5 +County "SC, Beaufort County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500130.epw site_zip_code=29910 site_time_zone_utc_offset=-5 +County "SC, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500150.epw site_zip_code=29445 site_time_zone_utc_offset=-5 +County "SC, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500170.epw site_zip_code=29135 site_time_zone_utc_offset=-5 +County "SC, Charleston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500190.epw site_zip_code=29464 site_time_zone_utc_offset=-5 +County "SC, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500210.epw site_zip_code=29340 site_time_zone_utc_offset=-5 +County "SC, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500230.epw site_zip_code=29706 site_time_zone_utc_offset=-5 +County "SC, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500250.epw site_zip_code=29520 site_time_zone_utc_offset=-5 +County "SC, Clarendon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500270.epw site_zip_code=29102 site_time_zone_utc_offset=-5 +County "SC, Colleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500290.epw site_zip_code=29488 site_time_zone_utc_offset=-5 +County "SC, Darlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500310.epw site_zip_code=29550 site_time_zone_utc_offset=-5 +County "SC, Dillon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500330.epw site_zip_code=29536 site_time_zone_utc_offset=-5 +County "SC, Dorchester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500350.epw site_zip_code=29485 site_time_zone_utc_offset=-5 +County "SC, Edgefield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500370.epw site_zip_code=29860 site_time_zone_utc_offset=-5 +County "SC, Fairfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500390.epw site_zip_code=29180 site_time_zone_utc_offset=-5 +County "SC, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500410.epw site_zip_code=29501 site_time_zone_utc_offset=-5 +County "SC, Georgetown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500430.epw site_zip_code=29440 site_time_zone_utc_offset=-5 +County "SC, Greenville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500450.epw site_zip_code=29681 site_time_zone_utc_offset=-5 +County "SC, Greenwood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500470.epw site_zip_code=29649 site_time_zone_utc_offset=-5 +County "SC, Hampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500490.epw site_zip_code=29918 site_time_zone_utc_offset=-5 +County "SC, Horry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500510.epw site_zip_code=29579 site_time_zone_utc_offset=-5 +County "SC, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500530.epw site_zip_code=29936 site_time_zone_utc_offset=-5 +County "SC, Kershaw County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500550.epw site_zip_code=29020 site_time_zone_utc_offset=-5 +County "SC, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500570.epw site_zip_code=29720 site_time_zone_utc_offset=-5 +County "SC, Laurens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500590.epw site_zip_code=29360 site_time_zone_utc_offset=-5 +County "SC, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500610.epw site_zip_code=29010 site_time_zone_utc_offset=-5 +County "SC, Lexington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500630.epw site_zip_code=29072 site_time_zone_utc_offset=-5 +County "SC, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500670.epw site_zip_code=29571 site_time_zone_utc_offset=-5 +County "SC, Marlboro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500690.epw site_zip_code=29512 site_time_zone_utc_offset=-5 +County "SC, McCormick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500650.epw site_zip_code=29835 site_time_zone_utc_offset=-5 +County "SC, Newberry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500710.epw site_zip_code=29108 site_time_zone_utc_offset=-5 +County "SC, Oconee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500730.epw site_zip_code=29678 site_time_zone_utc_offset=-5 +County "SC, Orangeburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500750.epw site_zip_code=29115 site_time_zone_utc_offset=-5 +County "SC, Pickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500770.epw site_zip_code=29640 site_time_zone_utc_offset=-5 +County "SC, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500790.epw site_zip_code=29223 site_time_zone_utc_offset=-5 +County "SC, Saluda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500810.epw site_zip_code=29138 site_time_zone_utc_offset=-5 +County "SC, Spartanburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500830.epw site_zip_code=29301 site_time_zone_utc_offset=-5 +County "SC, Sumter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500850.epw site_zip_code=29150 site_time_zone_utc_offset=-5 +County "SC, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500870.epw site_zip_code=29379 site_time_zone_utc_offset=-5 +County "SC, Williamsburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500890.epw site_zip_code=29556 site_time_zone_utc_offset=-5 +County "SC, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4500910.epw site_zip_code=29732 site_time_zone_utc_offset=-5 +County "SD, Aurora County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600030.epw site_zip_code=57368 site_time_zone_utc_offset=-6 +County "SD, Beadle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600050.epw site_zip_code=57350 site_time_zone_utc_offset=-6 +County "SD, Bennett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600070.epw site_zip_code=57551 site_time_zone_utc_offset=-7 +County "SD, Bon Homme County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600090.epw site_zip_code=57066 site_time_zone_utc_offset=-6 +County "SD, Brookings County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600110.epw site_zip_code=57006 site_time_zone_utc_offset=-6 +County "SD, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600130.epw site_zip_code=57401 site_time_zone_utc_offset=-6 +County "SD, Brule County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600150.epw site_zip_code=57325 site_time_zone_utc_offset=-6 +County "SD, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600170.epw site_zip_code=57341 site_time_zone_utc_offset=-6 +County "SD, Butte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600190.epw site_zip_code=57717 site_time_zone_utc_offset=-7 +County "SD, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600210.epw site_zip_code=57632 site_time_zone_utc_offset=-6 +County "SD, Charles Mix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600230.epw site_zip_code=57380 site_time_zone_utc_offset=-6 +County "SD, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600250.epw site_zip_code=57225 site_time_zone_utc_offset=-6 +County "SD, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600270.epw site_zip_code=57069 site_time_zone_utc_offset=-6 +County "SD, Codington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600290.epw site_zip_code=57201 site_time_zone_utc_offset=-6 +County "SD, Corson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600310.epw site_zip_code=57642 site_time_zone_utc_offset=-7 +County "SD, Custer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600330.epw site_zip_code=57730 site_time_zone_utc_offset=-7 +County "SD, Davison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600350.epw site_zip_code=57301 site_time_zone_utc_offset=-6 +County "SD, Day County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600370.epw site_zip_code=57274 site_time_zone_utc_offset=-6 +County "SD, Deuel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600390.epw site_zip_code=57226 site_time_zone_utc_offset=-6 +County "SD, Dewey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600410.epw site_zip_code=57625 site_time_zone_utc_offset=-7 +County "SD, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600430.epw site_zip_code=57328 site_time_zone_utc_offset=-6 +County "SD, Edmunds County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600450.epw site_zip_code=57451 site_time_zone_utc_offset=-6 +County "SD, Fall River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600470.epw site_zip_code=57747 site_time_zone_utc_offset=-7 +County "SD, Faulk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600490.epw site_zip_code=57438 site_time_zone_utc_offset=-6 +County "SD, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600510.epw site_zip_code=57252 site_time_zone_utc_offset=-6 +County "SD, Gregory County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600530.epw site_zip_code=57533 site_time_zone_utc_offset=-6 +County "SD, Haakon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600550.epw site_zip_code=57552 site_time_zone_utc_offset=-7 +County "SD, Hamlin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600570.epw site_zip_code=57223 site_time_zone_utc_offset=-6 +County "SD, Hand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600590.epw site_zip_code=57362 site_time_zone_utc_offset=-6 +County "SD, Hanson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600610.epw site_zip_code=57311 site_time_zone_utc_offset=-6 +County "SD, Harding County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600630.epw site_zip_code=57720 site_time_zone_utc_offset=-7 +County "SD, Hughes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600650.epw site_zip_code=57501 site_time_zone_utc_offset=-6 +County "SD, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600670.epw site_zip_code=57366 site_time_zone_utc_offset=-6 +County "SD, Hyde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600690.epw site_zip_code=57345 site_time_zone_utc_offset=-6 +County "SD, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600710.epw site_zip_code=57543 site_time_zone_utc_offset=-7 +County "SD, Jerauld County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600730.epw site_zip_code=57382 site_time_zone_utc_offset=-6 +County "SD, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600750.epw site_zip_code=57559 site_time_zone_utc_offset=-6 +County "SD, Kingsbury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600770.epw site_zip_code=57231 site_time_zone_utc_offset=-6 +County "SD, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600790.epw site_zip_code=57042 site_time_zone_utc_offset=-6 +County "SD, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600810.epw site_zip_code=57783 site_time_zone_utc_offset=-7 +County "SD, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600830.epw site_zip_code=57108 site_time_zone_utc_offset=-6 +County "SD, Lyman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600850.epw site_zip_code=57569 site_time_zone_utc_offset=-6 +County "SD, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600910.epw site_zip_code=57430 site_time_zone_utc_offset=-6 +County "SD, McCook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600870.epw site_zip_code=57058 site_time_zone_utc_offset=-6 +County "SD, McPherson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600890.epw site_zip_code=57437 site_time_zone_utc_offset=-6 +County "SD, Meade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600930.epw site_zip_code=57785 site_time_zone_utc_offset=-7 +County "SD, Mellette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600950.epw site_zip_code=57579 site_time_zone_utc_offset=-6 +County "SD, Miner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600970.epw site_zip_code=57349 site_time_zone_utc_offset=-6 +County "SD, Minnehaha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4600990.epw site_zip_code=57106 site_time_zone_utc_offset=-6 +County "SD, Moody County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601010.epw site_zip_code=57028 site_time_zone_utc_offset=-6 +County "SD, Oglala Lakota County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601020.epw site_zip_code=57770 site_time_zone_utc_offset=-7 +County "SD, Pennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601030.epw site_zip_code=57701 site_time_zone_utc_offset=-7 +County "SD, Perkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601050.epw site_zip_code=57638 site_time_zone_utc_offset=-7 +County "SD, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601070.epw site_zip_code=57442 site_time_zone_utc_offset=-6 +County "SD, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601090.epw site_zip_code=57262 site_time_zone_utc_offset=-6 +County "SD, Sanborn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601110.epw site_zip_code=57385 site_time_zone_utc_offset=-6 +County "SD, Spink County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601150.epw site_zip_code=57469 site_time_zone_utc_offset=-6 +County "SD, Stanley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601170.epw site_zip_code=57532 site_time_zone_utc_offset=-7 +County "SD, Sully County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601190.epw site_zip_code=57564 site_time_zone_utc_offset=-6 +County "SD, Todd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601210.epw site_zip_code=57555 site_time_zone_utc_offset=-6 +County "SD, Tripp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601230.epw site_zip_code=57580 site_time_zone_utc_offset=-6 +County "SD, Turner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601250.epw site_zip_code=57053 site_time_zone_utc_offset=-6 +County "SD, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601270.epw site_zip_code=57049 site_time_zone_utc_offset=-6 +County "SD, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601290.epw site_zip_code=57601 site_time_zone_utc_offset=-6 +County "SD, Yankton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601350.epw site_zip_code=57078 site_time_zone_utc_offset=-6 +County "SD, Ziebach County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4601370.epw site_zip_code=57623 site_time_zone_utc_offset=-7 +County "TN, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700010.epw site_zip_code=37830 site_time_zone_utc_offset=-5 +County "TN, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700030.epw site_zip_code=37160 site_time_zone_utc_offset=-6 +County "TN, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700050.epw site_zip_code=38320 site_time_zone_utc_offset=-6 +County "TN, Bledsoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700070.epw site_zip_code=37367 site_time_zone_utc_offset=-6 +County "TN, Blount County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700090.epw site_zip_code=37803 site_time_zone_utc_offset=-5 +County "TN, Bradley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700110.epw site_zip_code=37312 site_time_zone_utc_offset=-5 +County "TN, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700130.epw site_zip_code=37766 site_time_zone_utc_offset=-5 +County "TN, Cannon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700150.epw site_zip_code=37190 site_time_zone_utc_offset=-6 +County "TN, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700170.epw site_zip_code=38344 site_time_zone_utc_offset=-6 +County "TN, Carter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700190.epw site_zip_code=37643 site_time_zone_utc_offset=-5 +County "TN, Cheatham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700210.epw site_zip_code=37015 site_time_zone_utc_offset=-6 +County "TN, Chester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700230.epw site_zip_code=38340 site_time_zone_utc_offset=-6 +County "TN, Claiborne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700250.epw site_zip_code=37879 site_time_zone_utc_offset=-5 +County "TN, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700270.epw site_zip_code=38551 site_time_zone_utc_offset=-6 +County "TN, Cocke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700290.epw site_zip_code=37821 site_time_zone_utc_offset=-5 +County "TN, Coffee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700310.epw site_zip_code=37355 site_time_zone_utc_offset=-6 +County "TN, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700330.epw site_zip_code=38006 site_time_zone_utc_offset=-6 +County "TN, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700350.epw site_zip_code=38555 site_time_zone_utc_offset=-6 +County "TN, Davidson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700370.epw site_zip_code=37013 site_time_zone_utc_offset=-6 +County "TN, DeKalb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700410.epw site_zip_code=37166 site_time_zone_utc_offset=-6 +County "TN, Decatur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700390.epw site_zip_code=38363 site_time_zone_utc_offset=-6 +County "TN, Dickson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700430.epw site_zip_code=37055 site_time_zone_utc_offset=-6 +County "TN, Dyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700450.epw site_zip_code=38024 site_time_zone_utc_offset=-6 +County "TN, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700470.epw site_zip_code=38060 site_time_zone_utc_offset=-6 +County "TN, Fentress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700490.epw site_zip_code=38556 site_time_zone_utc_offset=-6 +County "TN, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700510.epw site_zip_code=37398 site_time_zone_utc_offset=-6 +County "TN, Gibson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700530.epw site_zip_code=38343 site_time_zone_utc_offset=-6 +County "TN, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700550.epw site_zip_code=38478 site_time_zone_utc_offset=-6 +County "TN, Grainger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700570.epw site_zip_code=37861 site_time_zone_utc_offset=-5 +County "TN, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700590.epw site_zip_code=37743 site_time_zone_utc_offset=-5 +County "TN, Grundy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700610.epw site_zip_code=37387 site_time_zone_utc_offset=-6 +County "TN, Hamblen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700630.epw site_zip_code=37814 site_time_zone_utc_offset=-5 +County "TN, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700650.epw site_zip_code=37421 site_time_zone_utc_offset=-5 +County "TN, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700670.epw site_zip_code=37869 site_time_zone_utc_offset=-5 +County "TN, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700690.epw site_zip_code=38008 site_time_zone_utc_offset=-6 +County "TN, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700710.epw site_zip_code=38372 site_time_zone_utc_offset=-6 +County "TN, Hawkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700730.epw site_zip_code=37857 site_time_zone_utc_offset=-5 +County "TN, Haywood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700750.epw site_zip_code=38012 site_time_zone_utc_offset=-6 +County "TN, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700770.epw site_zip_code=38351 site_time_zone_utc_offset=-6 +County "TN, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700790.epw site_zip_code=38242 site_time_zone_utc_offset=-6 +County "TN, Hickman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700810.epw site_zip_code=37033 site_time_zone_utc_offset=-6 +County "TN, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700830.epw site_zip_code=37061 site_time_zone_utc_offset=-6 +County "TN, Humphreys County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700850.epw site_zip_code=37185 site_time_zone_utc_offset=-6 +County "TN, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700870.epw site_zip_code=38562 site_time_zone_utc_offset=-6 +County "TN, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700890.epw site_zip_code=37725 site_time_zone_utc_offset=-5 +County "TN, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700910.epw site_zip_code=37683 site_time_zone_utc_offset=-5 +County "TN, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700930.epw site_zip_code=37920 site_time_zone_utc_offset=-5 +County "TN, Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700950.epw site_zip_code=38079 site_time_zone_utc_offset=-6 +County "TN, Lauderdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700970.epw site_zip_code=38063 site_time_zone_utc_offset=-6 +County "TN, Lawrence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4700990.epw site_zip_code=38464 site_time_zone_utc_offset=-6 +County "TN, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701010.epw site_zip_code=38462 site_time_zone_utc_offset=-6 +County "TN, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701030.epw site_zip_code=37334 site_time_zone_utc_offset=-6 +County "TN, Loudon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701050.epw site_zip_code=37774 site_time_zone_utc_offset=-5 +County "TN, Macon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701110.epw site_zip_code=37083 site_time_zone_utc_offset=-6 +County "TN, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701130.epw site_zip_code=38305 site_time_zone_utc_offset=-6 +County "TN, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701150.epw site_zip_code=37397 site_time_zone_utc_offset=-6 +County "TN, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701170.epw site_zip_code=37091 site_time_zone_utc_offset=-6 +County "TN, Maury County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701190.epw site_zip_code=38401 site_time_zone_utc_offset=-6 +County "TN, McMinn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701070.epw site_zip_code=37303 site_time_zone_utc_offset=-5 +County "TN, McNairy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701090.epw site_zip_code=38375 site_time_zone_utc_offset=-6 +County "TN, Meigs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701210.epw site_zip_code=37322 site_time_zone_utc_offset=-5 +County "TN, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701230.epw site_zip_code=37354 site_time_zone_utc_offset=-5 +County "TN, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701250.epw site_zip_code=37042 site_time_zone_utc_offset=-6 +County "TN, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701270.epw site_zip_code=37352 site_time_zone_utc_offset=-6 +County "TN, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701290.epw site_zip_code=37887 site_time_zone_utc_offset=-5 +County "TN, Obion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701310.epw site_zip_code=38261 site_time_zone_utc_offset=-6 +County "TN, Overton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701330.epw site_zip_code=38570 site_time_zone_utc_offset=-6 +County "TN, Perry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701350.epw site_zip_code=37096 site_time_zone_utc_offset=-6 +County "TN, Pickett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701370.epw site_zip_code=38549 site_time_zone_utc_offset=-6 +County "TN, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701390.epw site_zip_code=37307 site_time_zone_utc_offset=-5 +County "TN, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701410.epw site_zip_code=38501 site_time_zone_utc_offset=-6 +County "TN, Rhea County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701430.epw site_zip_code=37321 site_time_zone_utc_offset=-5 +County "TN, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701450.epw site_zip_code=37748 site_time_zone_utc_offset=-5 +County "TN, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701470.epw site_zip_code=37172 site_time_zone_utc_offset=-6 +County "TN, Rutherford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701490.epw site_zip_code=37128 site_time_zone_utc_offset=-6 +County "TN, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701510.epw site_zip_code=37841 site_time_zone_utc_offset=-5 +County "TN, Sequatchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701530.epw site_zip_code=37327 site_time_zone_utc_offset=-6 +County "TN, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701550.epw site_zip_code=37876 site_time_zone_utc_offset=-5 +County "TN, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701570.epw site_zip_code=38111 site_time_zone_utc_offset=-6 +County "TN, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701590.epw site_zip_code=37030 site_time_zone_utc_offset=-6 +County "TN, Stewart County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701610.epw site_zip_code=37058 site_time_zone_utc_offset=-6 +County "TN, Sullivan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701630.epw site_zip_code=37660 site_time_zone_utc_offset=-5 +County "TN, Sumner County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701650.epw site_zip_code=37075 site_time_zone_utc_offset=-6 +County "TN, Tipton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701670.epw site_zip_code=38019 site_time_zone_utc_offset=-6 +County "TN, Trousdale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701690.epw site_zip_code=37074 site_time_zone_utc_offset=-6 +County "TN, Unicoi County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701710.epw site_zip_code=37650 site_time_zone_utc_offset=-5 +County "TN, Union County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701730.epw site_zip_code=37807 site_time_zone_utc_offset=-5 +County "TN, Van Buren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701750.epw site_zip_code=38585 site_time_zone_utc_offset=-6 +County "TN, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701770.epw site_zip_code=37110 site_time_zone_utc_offset=-6 +County "TN, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701790.epw site_zip_code=37604 site_time_zone_utc_offset=-5 +County "TN, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701810.epw site_zip_code=38485 site_time_zone_utc_offset=-6 +County "TN, Weakley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701830.epw site_zip_code=38237 site_time_zone_utc_offset=-6 +County "TN, White County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701850.epw site_zip_code=38583 site_time_zone_utc_offset=-6 +County "TN, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701870.epw site_zip_code=37064 site_time_zone_utc_offset=-6 +County "TN, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4701890.epw site_zip_code=37122 site_time_zone_utc_offset=-6 +County "TX, Anderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800010.epw site_zip_code=75803 site_time_zone_utc_offset=-6 +County "TX, Andrews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800030.epw site_zip_code=79714 site_time_zone_utc_offset=-6 +County "TX, Angelina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800050.epw site_zip_code=75904 site_time_zone_utc_offset=-6 +County "TX, Aransas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800070.epw site_zip_code=78382 site_time_zone_utc_offset=-6 +County "TX, Archer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800090.epw site_zip_code=76310 site_time_zone_utc_offset=-6 +County "TX, Armstrong County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800110.epw site_zip_code=79019 site_time_zone_utc_offset=-6 +County "TX, Atascosa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800130.epw site_zip_code=78064 site_time_zone_utc_offset=-6 +County "TX, Austin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800150.epw site_zip_code=77474 site_time_zone_utc_offset=-6 +County "TX, Bailey County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800170.epw site_zip_code=79347 site_time_zone_utc_offset=-6 +County "TX, Bandera County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800190.epw site_zip_code=78003 site_time_zone_utc_offset=-6 +County "TX, Bastrop County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800210.epw site_zip_code=78602 site_time_zone_utc_offset=-6 +County "TX, Baylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800230.epw site_zip_code=76380 site_time_zone_utc_offset=-6 +County "TX, Bee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800250.epw site_zip_code=78102 site_time_zone_utc_offset=-6 +County "TX, Bell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800270.epw site_zip_code=76502 site_time_zone_utc_offset=-6 +County "TX, Bexar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800290.epw site_zip_code=78245 site_time_zone_utc_offset=-6 +County "TX, Blanco County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800310.epw site_zip_code=78606 site_time_zone_utc_offset=-6 +County "TX, Borden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800330.epw site_zip_code=79351 site_time_zone_utc_offset=-6 +County "TX, Bosque County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800350.epw site_zip_code=76634 site_time_zone_utc_offset=-6 +County "TX, Bowie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800370.epw site_zip_code=75501 site_time_zone_utc_offset=-6 +County "TX, Brazoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800390.epw site_zip_code=77584 site_time_zone_utc_offset=-6 +County "TX, Brazos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800410.epw site_zip_code=77845 site_time_zone_utc_offset=-6 +County "TX, Brewster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800430.epw site_zip_code=79830 site_time_zone_utc_offset=-6 +County "TX, Briscoe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800450.epw site_zip_code=79257 site_time_zone_utc_offset=-6 +County "TX, Brooks County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800470.epw site_zip_code=78355 site_time_zone_utc_offset=-6 +County "TX, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800490.epw site_zip_code=76801 site_time_zone_utc_offset=-6 +County "TX, Burleson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800510.epw site_zip_code=77836 site_time_zone_utc_offset=-6 +County "TX, Burnet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800530.epw site_zip_code=78654 site_time_zone_utc_offset=-6 +County "TX, Caldwell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800550.epw site_zip_code=78644 site_time_zone_utc_offset=-6 +County "TX, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800570.epw site_zip_code=77979 site_time_zone_utc_offset=-6 +County "TX, Callahan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800590.epw site_zip_code=79510 site_time_zone_utc_offset=-6 +County "TX, Cameron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800610.epw site_zip_code=78521 site_time_zone_utc_offset=-6 +County "TX, Camp County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800630.epw site_zip_code=75686 site_time_zone_utc_offset=-6 +County "TX, Carson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800650.epw site_zip_code=79068 site_time_zone_utc_offset=-6 +County "TX, Cass County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800670.epw site_zip_code=75551 site_time_zone_utc_offset=-6 +County "TX, Castro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800690.epw site_zip_code=79027 site_time_zone_utc_offset=-6 +County "TX, Chambers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800710.epw site_zip_code=77523 site_time_zone_utc_offset=-6 +County "TX, Cherokee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800730.epw site_zip_code=75766 site_time_zone_utc_offset=-6 +County "TX, Childress County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800750.epw site_zip_code=79201 site_time_zone_utc_offset=-6 +County "TX, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800770.epw site_zip_code=76365 site_time_zone_utc_offset=-6 +County "TX, Cochran County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800790.epw site_zip_code=79346 site_time_zone_utc_offset=-6 +County "TX, Coke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800810.epw site_zip_code=76945 site_time_zone_utc_offset=-6 +County "TX, Coleman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800830.epw site_zip_code=76834 site_time_zone_utc_offset=-6 +County "TX, Collin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800850.epw site_zip_code=75035 site_time_zone_utc_offset=-6 +County "TX, Collingsworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800870.epw site_zip_code=79095 site_time_zone_utc_offset=-6 +County "TX, Colorado County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800890.epw site_zip_code=78934 site_time_zone_utc_offset=-6 +County "TX, Comal County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800910.epw site_zip_code=78130 site_time_zone_utc_offset=-6 +County "TX, Comanche County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800930.epw site_zip_code=76442 site_time_zone_utc_offset=-6 +County "TX, Concho County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800950.epw site_zip_code=76837 site_time_zone_utc_offset=-6 +County "TX, Cooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800970.epw site_zip_code=76240 site_time_zone_utc_offset=-6 +County "TX, Coryell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4800990.epw site_zip_code=76522 site_time_zone_utc_offset=-6 +County "TX, Cottle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801010.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Crane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801030.epw site_zip_code=79731 site_time_zone_utc_offset=-6 +County "TX, Crockett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801050.epw site_zip_code=76943 site_time_zone_utc_offset=-6 +County "TX, Crosby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801070.epw site_zip_code=79322 site_time_zone_utc_offset=-6 +County "TX, Culberson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801090.epw site_zip_code=79847 site_time_zone_utc_offset=-6 +County "TX, Dallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801110.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Dallas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801130.epw site_zip_code=75243 site_time_zone_utc_offset=-6 +County "TX, Dawson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801150.epw site_zip_code=79331 site_time_zone_utc_offset=-6 +County "TX, DeWitt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801230.epw site_zip_code=77954 site_time_zone_utc_offset=-6 +County "TX, Deaf Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801170.epw site_zip_code=79045 site_time_zone_utc_offset=-6 +County "TX, Delta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801190.epw site_zip_code=75432 site_time_zone_utc_offset=-6 +County "TX, Denton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801210.epw site_zip_code=75056 site_time_zone_utc_offset=-6 +County "TX, Dickens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801250.epw site_zip_code=79370 site_time_zone_utc_offset=-6 +County "TX, Dimmit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801270.epw site_zip_code=78834 site_time_zone_utc_offset=-6 +County "TX, Donley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801290.epw site_zip_code=79226 site_time_zone_utc_offset=-6 +County "TX, Duval County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801310.epw site_zip_code=78384 site_time_zone_utc_offset=-6 +County "TX, Eastland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801330.epw site_zip_code=76437 site_time_zone_utc_offset=-6 +County "TX, Ector County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801350.epw site_zip_code=79762 site_time_zone_utc_offset=-6 +County "TX, Edwards County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801370.epw site_zip_code=78880 site_time_zone_utc_offset=-6 +County "TX, El Paso County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801410.epw site_zip_code=79936 site_time_zone_utc_offset=-7 +County "TX, Ellis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801390.epw site_zip_code=75165 site_time_zone_utc_offset=-6 +County "TX, Erath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801430.epw site_zip_code=76401 site_time_zone_utc_offset=-6 +County "TX, Falls County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801450.epw site_zip_code=76661 site_time_zone_utc_offset=-6 +County "TX, Fannin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801470.epw site_zip_code=75418 site_time_zone_utc_offset=-6 +County "TX, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801490.epw site_zip_code=78945 site_time_zone_utc_offset=-6 +County "TX, Fisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801510.epw site_zip_code=79546 site_time_zone_utc_offset=-6 +County "TX, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801530.epw site_zip_code=79235 site_time_zone_utc_offset=-6 +County "TX, Foard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801550.epw site_zip_code=79227 site_time_zone_utc_offset=-6 +County "TX, Fort Bend County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801570.epw site_zip_code=77494 site_time_zone_utc_offset=-6 +County "TX, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801590.epw site_zip_code=75457 site_time_zone_utc_offset=-6 +County "TX, Freestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801610.epw site_zip_code=75860 site_time_zone_utc_offset=-6 +County "TX, Frio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801630.epw site_zip_code=78061 site_time_zone_utc_offset=-6 +County "TX, Gaines County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801650.epw site_zip_code=79360 site_time_zone_utc_offset=-6 +County "TX, Galveston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801670.epw site_zip_code=77573 site_time_zone_utc_offset=-6 +County "TX, Garza County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801690.epw site_zip_code=79356 site_time_zone_utc_offset=-6 +County "TX, Gillespie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801710.epw site_zip_code=78624 site_time_zone_utc_offset=-6 +County "TX, Glasscock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801730.epw site_zip_code=79739 site_time_zone_utc_offset=-6 +County "TX, Goliad County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801750.epw site_zip_code=77963 site_time_zone_utc_offset=-6 +County "TX, Gonzales County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801770.epw site_zip_code=78629 site_time_zone_utc_offset=-6 +County "TX, Gray County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801790.epw site_zip_code=79065 site_time_zone_utc_offset=-6 +County "TX, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801810.epw site_zip_code=75092 site_time_zone_utc_offset=-6 +County "TX, Gregg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801830.epw site_zip_code=75605 site_time_zone_utc_offset=-6 +County "TX, Grimes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801850.epw site_zip_code=77868 site_time_zone_utc_offset=-6 +County "TX, Guadalupe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801870.epw site_zip_code=78155 site_time_zone_utc_offset=-6 +County "TX, Hale County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801890.epw site_zip_code=79072 site_time_zone_utc_offset=-6 +County "TX, Hall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801910.epw site_zip_code=79245 site_time_zone_utc_offset=-6 +County "TX, Hamilton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801930.epw site_zip_code=76531 site_time_zone_utc_offset=-6 +County "TX, Hansford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801950.epw site_zip_code=79081 site_time_zone_utc_offset=-6 +County "TX, Hardeman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801970.epw site_zip_code=79252 site_time_zone_utc_offset=-6 +County "TX, Hardin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4801990.epw site_zip_code=77657 site_time_zone_utc_offset=-6 +County "TX, Harris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802010.epw site_zip_code=77449 site_time_zone_utc_offset=-6 +County "TX, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802030.epw site_zip_code=75672 site_time_zone_utc_offset=-6 +County "TX, Hartley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802050.epw site_zip_code=79022 site_time_zone_utc_offset=-6 +County "TX, Haskell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802070.epw site_zip_code=79521 site_time_zone_utc_offset=-6 +County "TX, Hays County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802090.epw site_zip_code=78666 site_time_zone_utc_offset=-6 +County "TX, Hemphill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802110.epw site_zip_code=79014 site_time_zone_utc_offset=-6 +County "TX, Henderson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802130.epw site_zip_code=75156 site_time_zone_utc_offset=-6 +County "TX, Hidalgo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802150.epw site_zip_code=78572 site_time_zone_utc_offset=-6 +County "TX, Hill County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802170.epw site_zip_code=76692 site_time_zone_utc_offset=-6 +County "TX, Hockley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802190.epw site_zip_code=79336 site_time_zone_utc_offset=-6 +County "TX, Hood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802210.epw site_zip_code=76048 site_time_zone_utc_offset=-6 +County "TX, Hopkins County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802230.epw site_zip_code=75482 site_time_zone_utc_offset=-6 +County "TX, Houston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802250.epw site_zip_code=75835 site_time_zone_utc_offset=-6 +County "TX, Howard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802270.epw site_zip_code=79720 site_time_zone_utc_offset=-6 +County "TX, Hudspeth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802290.epw site_zip_code=79839 site_time_zone_utc_offset=-7 +County "TX, Hunt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802310.epw site_zip_code=75401 site_time_zone_utc_offset=-6 +County "TX, Hutchinson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802330.epw site_zip_code=79007 site_time_zone_utc_offset=-6 +County "TX, Irion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802350.epw site_zip_code=76941 site_time_zone_utc_offset=-6 +County "TX, Jack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802370.epw site_zip_code=76458 site_time_zone_utc_offset=-6 +County "TX, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802390.epw site_zip_code=77957 site_time_zone_utc_offset=-6 +County "TX, Jasper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802410.epw site_zip_code=75951 site_time_zone_utc_offset=-6 +County "TX, Jeff Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802430.epw site_zip_code=79734 site_time_zone_utc_offset=-6 +County "TX, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802450.epw site_zip_code=77642 site_time_zone_utc_offset=-6 +County "TX, Jim Hogg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802470.epw site_zip_code=78361 site_time_zone_utc_offset=-6 +County "TX, Jim Wells County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802490.epw site_zip_code=78332 site_time_zone_utc_offset=-6 +County "TX, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802510.epw site_zip_code=76028 site_time_zone_utc_offset=-6 +County "TX, Jones County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802530.epw site_zip_code=79501 site_time_zone_utc_offset=-6 +County "TX, Karnes County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802550.epw site_zip_code=78119 site_time_zone_utc_offset=-6 +County "TX, Kaufman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802570.epw site_zip_code=75126 site_time_zone_utc_offset=-6 +County "TX, Kendall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802590.epw site_zip_code=78006 site_time_zone_utc_offset=-6 +County "TX, Kenedy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802610.epw site_zip_code=78385 site_time_zone_utc_offset=-6 +County "TX, Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802630.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Kerr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802650.epw site_zip_code=78028 site_time_zone_utc_offset=-6 +County "TX, Kimble County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802670.epw site_zip_code=76849 site_time_zone_utc_offset=-6 +County "TX, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802690.epw site_zip_code=79248 site_time_zone_utc_offset=-6 +County "TX, Kinney County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802710.epw site_zip_code=78832 site_time_zone_utc_offset=-6 +County "TX, Kleberg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802730.epw site_zip_code=78363 site_time_zone_utc_offset=-6 +County "TX, Knox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802750.epw site_zip_code=76371 site_time_zone_utc_offset=-6 +County "TX, La Salle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802830.epw site_zip_code=78014 site_time_zone_utc_offset=-6 +County "TX, Lamar County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802770.epw site_zip_code=75460 site_time_zone_utc_offset=-6 +County "TX, Lamb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802790.epw site_zip_code=79339 site_time_zone_utc_offset=-6 +County "TX, Lampasas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802810.epw site_zip_code=76550 site_time_zone_utc_offset=-6 +County "TX, Lavaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802850.epw site_zip_code=77964 site_time_zone_utc_offset=-6 +County "TX, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802870.epw site_zip_code=78942 site_time_zone_utc_offset=-6 +County "TX, Leon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802890.epw site_zip_code=75831 site_time_zone_utc_offset=-6 +County "TX, Liberty County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802910.epw site_zip_code=77327 site_time_zone_utc_offset=-6 +County "TX, Limestone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802930.epw site_zip_code=76667 site_time_zone_utc_offset=-6 +County "TX, Lipscomb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802950.epw site_zip_code=79005 site_time_zone_utc_offset=-6 +County "TX, Live Oak County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802970.epw site_zip_code=78022 site_time_zone_utc_offset=-6 +County "TX, Llano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4802990.epw site_zip_code=78657 site_time_zone_utc_offset=-6 +County "TX, Loving County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803010.epw site_zip_code=79754 site_time_zone_utc_offset=-6 +County "TX, Lubbock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803030.epw site_zip_code=79424 site_time_zone_utc_offset=-6 +County "TX, Lynn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803050.epw site_zip_code=79373 site_time_zone_utc_offset=-6 +County "TX, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803130.epw site_zip_code=77864 site_time_zone_utc_offset=-6 +County "TX, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803150.epw site_zip_code=75657 site_time_zone_utc_offset=-6 +County "TX, Martin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803170.epw site_zip_code=79782 site_time_zone_utc_offset=-6 +County "TX, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803190.epw site_zip_code=76856 site_time_zone_utc_offset=-6 +County "TX, Matagorda County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803210.epw site_zip_code=77414 site_time_zone_utc_offset=-6 +County "TX, Maverick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803230.epw site_zip_code=78852 site_time_zone_utc_offset=-6 +County "TX, McCulloch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803070.epw site_zip_code=76825 site_time_zone_utc_offset=-6 +County "TX, McLennan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803090.epw site_zip_code=76706 site_time_zone_utc_offset=-6 +County "TX, McMullen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803110.epw site_zip_code=78072 site_time_zone_utc_offset=-6 +County "TX, Medina County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803250.epw site_zip_code=78861 site_time_zone_utc_offset=-6 +County "TX, Menard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803270.epw site_zip_code=76859 site_time_zone_utc_offset=-6 +County "TX, Midland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803290.epw site_zip_code=79705 site_time_zone_utc_offset=-6 +County "TX, Milam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803310.epw site_zip_code=76567 site_time_zone_utc_offset=-6 +County "TX, Mills County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803330.epw site_zip_code=76844 site_time_zone_utc_offset=-6 +County "TX, Mitchell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803350.epw site_zip_code=79512 site_time_zone_utc_offset=-6 +County "TX, Montague County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803370.epw site_zip_code=76230 site_time_zone_utc_offset=-6 +County "TX, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803390.epw site_zip_code=77386 site_time_zone_utc_offset=-6 +County "TX, Moore County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803410.epw site_zip_code=79029 site_time_zone_utc_offset=-6 +County "TX, Morris County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803430.epw site_zip_code=75638 site_time_zone_utc_offset=-6 +County "TX, Motley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803450.epw site_zip_code=79234 site_time_zone_utc_offset=-6 +County "TX, Nacogdoches County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803470.epw site_zip_code=75964 site_time_zone_utc_offset=-6 +County "TX, Navarro County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803490.epw site_zip_code=75110 site_time_zone_utc_offset=-6 +County "TX, Newton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803510.epw site_zip_code=75966 site_time_zone_utc_offset=-6 +County "TX, Nolan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803530.epw site_zip_code=79556 site_time_zone_utc_offset=-6 +County "TX, Nueces County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803550.epw site_zip_code=78414 site_time_zone_utc_offset=-6 +County "TX, Ochiltree County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803570.epw site_zip_code=79070 site_time_zone_utc_offset=-6 +County "TX, Oldham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803590.epw site_zip_code=79092 site_time_zone_utc_offset=-6 +County "TX, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803610.epw site_zip_code=77630 site_time_zone_utc_offset=-6 +County "TX, Palo Pinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803630.epw site_zip_code=76067 site_time_zone_utc_offset=-6 +County "TX, Panola County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803650.epw site_zip_code=75633 site_time_zone_utc_offset=-6 +County "TX, Parker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803670.epw site_zip_code=76087 site_time_zone_utc_offset=-6 +County "TX, Parmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803690.epw site_zip_code=79035 site_time_zone_utc_offset=-6 +County "TX, Pecos County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803710.epw site_zip_code=79735 site_time_zone_utc_offset=-6 +County "TX, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803730.epw site_zip_code=77351 site_time_zone_utc_offset=-6 +County "TX, Potter County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803750.epw site_zip_code=79107 site_time_zone_utc_offset=-6 +County "TX, Presidio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803770.epw site_zip_code=79845 site_time_zone_utc_offset=-6 +County "TX, Rains County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803790.epw site_zip_code=75440 site_time_zone_utc_offset=-6 +County "TX, Randall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803810.epw site_zip_code=79109 site_time_zone_utc_offset=-6 +County "TX, Reagan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803830.epw site_zip_code=76932 site_time_zone_utc_offset=-6 +County "TX, Real County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803850.epw site_zip_code=78873 site_time_zone_utc_offset=-6 +County "TX, Red River County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803870.epw site_zip_code=75426 site_time_zone_utc_offset=-6 +County "TX, Reeves County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803890.epw site_zip_code=79772 site_time_zone_utc_offset=-6 +County "TX, Refugio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803910.epw site_zip_code=78377 site_time_zone_utc_offset=-6 +County "TX, Roberts County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803930.epw site_zip_code=79059 site_time_zone_utc_offset=-6 +County "TX, Robertson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803950.epw site_zip_code=77859 site_time_zone_utc_offset=-6 +County "TX, Rockwall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803970.epw site_zip_code=75087 site_time_zone_utc_offset=-6 +County "TX, Runnels County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4803990.epw site_zip_code=76821 site_time_zone_utc_offset=-6 +County "TX, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804010.epw site_zip_code=75652 site_time_zone_utc_offset=-6 +County "TX, Sabine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804030.epw site_zip_code=75948 site_time_zone_utc_offset=-6 +County "TX, San Augustine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804050.epw site_zip_code=75972 site_time_zone_utc_offset=-6 +County "TX, San Jacinto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804070.epw site_zip_code=77331 site_time_zone_utc_offset=-6 +County "TX, San Patricio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804090.epw site_zip_code=78374 site_time_zone_utc_offset=-6 +County "TX, San Saba County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804110.epw site_zip_code=76877 site_time_zone_utc_offset=-6 +County "TX, Schleicher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804130.epw site_zip_code=76936 site_time_zone_utc_offset=-6 +County "TX, Scurry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804150.epw site_zip_code=79549 site_time_zone_utc_offset=-6 +County "TX, Shackelford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804170.epw site_zip_code=76430 site_time_zone_utc_offset=-6 +County "TX, Shelby County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804190.epw site_zip_code=75935 site_time_zone_utc_offset=-6 +County "TX, Sherman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804210.epw site_zip_code=79084 site_time_zone_utc_offset=-6 +County "TX, Smith County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804230.epw site_zip_code=75703 site_time_zone_utc_offset=-6 +County "TX, Somervell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804250.epw site_zip_code=76043 site_time_zone_utc_offset=-6 +County "TX, Starr County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804270.epw site_zip_code=78582 site_time_zone_utc_offset=-6 +County "TX, Stephens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804290.epw site_zip_code=76424 site_time_zone_utc_offset=-6 +County "TX, Sterling County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804310.epw site_zip_code=76951 site_time_zone_utc_offset=-6 +County "TX, Stonewall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804330.epw site_zip_code=79502 site_time_zone_utc_offset=-6 +County "TX, Sutton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804350.epw site_zip_code=76950 site_time_zone_utc_offset=-6 +County "TX, Swisher County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804370.epw site_zip_code=79088 site_time_zone_utc_offset=-6 +County "TX, Tarrant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804390.epw site_zip_code=76244 site_time_zone_utc_offset=-6 +County "TX, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804410.epw site_zip_code=79605 site_time_zone_utc_offset=-6 +County "TX, Terrell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804430.epw site_zip_code=78851 site_time_zone_utc_offset=-6 +County "TX, Terry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804450.epw site_zip_code=79316 site_time_zone_utc_offset=-6 +County "TX, Throckmorton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804470.epw site_zip_code=76483 site_time_zone_utc_offset=-6 +County "TX, Titus County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804490.epw site_zip_code=75455 site_time_zone_utc_offset=-6 +County "TX, Tom Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804510.epw site_zip_code=76904 site_time_zone_utc_offset=-6 +County "TX, Travis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804530.epw site_zip_code=78660 site_time_zone_utc_offset=-6 +County "TX, Trinity County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804550.epw site_zip_code=75862 site_time_zone_utc_offset=-6 +County "TX, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804570.epw site_zip_code=75979 site_time_zone_utc_offset=-6 +County "TX, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804590.epw site_zip_code=75644 site_time_zone_utc_offset=-6 +County "TX, Upton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804610.epw site_zip_code=79778 site_time_zone_utc_offset=-6 +County "TX, Uvalde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804630.epw site_zip_code=78801 site_time_zone_utc_offset=-6 +County "TX, Val Verde County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804650.epw site_zip_code=78840 site_time_zone_utc_offset=-6 +County "TX, Van Zandt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804670.epw site_zip_code=75103 site_time_zone_utc_offset=-6 +County "TX, Victoria County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804690.epw site_zip_code=77901 site_time_zone_utc_offset=-6 +County "TX, Walker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804710.epw site_zip_code=77340 site_time_zone_utc_offset=-6 +County "TX, Waller County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804730.epw site_zip_code=77423 site_time_zone_utc_offset=-6 +County "TX, Ward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804750.epw site_zip_code=79756 site_time_zone_utc_offset=-6 +County "TX, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804770.epw site_zip_code=77833 site_time_zone_utc_offset=-6 +County "TX, Webb County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804790.epw site_zip_code=78045 site_time_zone_utc_offset=-6 +County "TX, Wharton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804810.epw site_zip_code=77437 site_time_zone_utc_offset=-6 +County "TX, Wheeler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804830.epw site_zip_code=79079 site_time_zone_utc_offset=-6 +County "TX, Wichita County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804850.epw site_zip_code=76311 site_time_zone_utc_offset=-6 +County "TX, Wilbarger County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804870.epw site_zip_code=76384 site_time_zone_utc_offset=-6 +County "TX, Willacy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804890.epw site_zip_code=78580 site_time_zone_utc_offset=-6 +County "TX, Williamson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804910.epw site_zip_code=78641 site_time_zone_utc_offset=-6 +County "TX, Wilson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804930.epw site_zip_code=78114 site_time_zone_utc_offset=-6 +County "TX, Winkler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804950.epw site_zip_code=79745 site_time_zone_utc_offset=-6 +County "TX, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804970.epw site_zip_code=76234 site_time_zone_utc_offset=-6 +County "TX, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4804990.epw site_zip_code=75773 site_time_zone_utc_offset=-6 +County "TX, Yoakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805010.epw site_zip_code=79323 site_time_zone_utc_offset=-6 +County "TX, Young County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805030.epw site_zip_code=76450 site_time_zone_utc_offset=-6 +County "TX, Zapata County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805050.epw site_zip_code=78076 site_time_zone_utc_offset=-6 +County "TX, Zavala County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4805070.epw site_zip_code=78839 site_time_zone_utc_offset=-6 +County "UT, Beaver County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900010.epw site_zip_code=84713 site_time_zone_utc_offset=-7 +County "UT, Box Elder County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900030.epw site_zip_code=84302 site_time_zone_utc_offset=-7 +County "UT, Cache County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900050.epw site_zip_code=84321 site_time_zone_utc_offset=-7 +County "UT, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900070.epw site_zip_code=84501 site_time_zone_utc_offset=-7 +County "UT, Daggett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900090.epw site_zip_code=84046 site_time_zone_utc_offset=-7 +County "UT, Davis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900110.epw site_zip_code=84015 site_time_zone_utc_offset=-7 +County "UT, Duchesne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900130.epw site_zip_code=84066 site_time_zone_utc_offset=-7 +County "UT, Emery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900150.epw site_zip_code=84528 site_time_zone_utc_offset=-7 +County "UT, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900170.epw site_zip_code=84726 site_time_zone_utc_offset=-7 +County "UT, Grand County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900190.epw site_zip_code=84532 site_time_zone_utc_offset=-7 +County "UT, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900210.epw site_zip_code=84721 site_time_zone_utc_offset=-7 +County "UT, Juab County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900230.epw site_zip_code=84648 site_time_zone_utc_offset=-7 +County "UT, Kane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900250.epw site_zip_code=84741 site_time_zone_utc_offset=-7 +County "UT, Millard County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900270.epw site_zip_code=84624 site_time_zone_utc_offset=-7 +County "UT, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900290.epw site_zip_code=84050 site_time_zone_utc_offset=-7 +County "UT, Piute County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900310.epw site_zip_code=84750 site_time_zone_utc_offset=-7 +County "UT, Rich County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900330.epw site_zip_code=84028 site_time_zone_utc_offset=-7 +County "UT, Salt Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900350.epw site_zip_code=84096 site_time_zone_utc_offset=-7 +County "UT, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900370.epw site_zip_code=84511 site_time_zone_utc_offset=-7 +County "UT, Sanpete County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900390.epw site_zip_code=84627 site_time_zone_utc_offset=-7 +County "UT, Sevier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900410.epw site_zip_code=84701 site_time_zone_utc_offset=-7 +County "UT, Summit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900430.epw site_zip_code=84098 site_time_zone_utc_offset=-7 +County "UT, Tooele County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900450.epw site_zip_code=84074 site_time_zone_utc_offset=-7 +County "UT, Uintah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900470.epw site_zip_code=84078 site_time_zone_utc_offset=-7 +County "UT, Utah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900490.epw site_zip_code=84043 site_time_zone_utc_offset=-7 +County "UT, Wasatch County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900510.epw site_zip_code=84032 site_time_zone_utc_offset=-7 +County "UT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900530.epw site_zip_code=84770 site_time_zone_utc_offset=-7 +County "UT, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900550.epw site_zip_code=84775 site_time_zone_utc_offset=-7 +County "UT, Weber County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G4900570.epw site_zip_code=84404 site_time_zone_utc_offset=-7 +County "VA, Accomack County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100010.epw site_zip_code=23336 site_time_zone_utc_offset=-5 +County "VA, Albemarle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100030.epw site_zip_code=22901 site_time_zone_utc_offset=-5 +County "VA, Alexandria city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105100.epw site_zip_code=22304 site_time_zone_utc_offset=-5 +County "VA, Alleghany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100050.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Amelia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100070.epw site_zip_code=23002 site_time_zone_utc_offset=-5 +County "VA, Amherst County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100090.epw site_zip_code=24572 site_time_zone_utc_offset=-5 +County "VA, Appomattox County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100110.epw site_zip_code=24522 site_time_zone_utc_offset=-5 +County "VA, Arlington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100130.epw site_zip_code=22204 site_time_zone_utc_offset=-5 +County "VA, Augusta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100150.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Bath County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100170.epw site_zip_code=24460 site_time_zone_utc_offset=-5 +County "VA, Bedford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100190.epw site_zip_code=24551 site_time_zone_utc_offset=-5 +County "VA, Bland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100210.epw site_zip_code=24315 site_time_zone_utc_offset=-5 +County "VA, Botetourt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100230.epw site_zip_code=24175 site_time_zone_utc_offset=-5 +County "VA, Bristol city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105200.epw site_zip_code=24201 site_time_zone_utc_offset=-5 +County "VA, Brunswick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100250.epw site_zip_code=23868 site_time_zone_utc_offset=-5 +County "VA, Buchanan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100270.epw site_zip_code=24614 site_time_zone_utc_offset=-5 +County "VA, Buckingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100290.epw site_zip_code=23936 site_time_zone_utc_offset=-5 +County "VA, Buena Vista city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105300.epw site_zip_code=24416 site_time_zone_utc_offset=-5 +County "VA, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100310.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Caroline County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100330.epw site_zip_code=22546 site_time_zone_utc_offset=-5 +County "VA, Carroll County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100350.epw site_zip_code=24343 site_time_zone_utc_offset=-5 +County "VA, Charles City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100360.epw site_zip_code=23030 site_time_zone_utc_offset=-5 +County "VA, Charlotte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100370.epw site_zip_code=23923 site_time_zone_utc_offset=-5 +County "VA, Charlottesville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105400.epw site_zip_code=22903 site_time_zone_utc_offset=-5 +County "VA, Chesapeake city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105500.epw site_zip_code=23320 site_time_zone_utc_offset=-5 +County "VA, Chesterfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100410.epw site_zip_code=23112 site_time_zone_utc_offset=-5 +County "VA, Clarke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100430.epw site_zip_code=22611 site_time_zone_utc_offset=-5 +County "VA, Colonial Heights city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105700.epw site_zip_code=23834 site_time_zone_utc_offset=-5 +County "VA, Covington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105800.epw site_zip_code=24426 site_time_zone_utc_offset=-5 +County "VA, Craig County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100450.epw site_zip_code=24127 site_time_zone_utc_offset=-5 +County "VA, Culpeper County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100470.epw site_zip_code=22701 site_time_zone_utc_offset=-5 +County "VA, Cumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100490.epw site_zip_code=23040 site_time_zone_utc_offset=-5 +County "VA, Danville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105900.epw site_zip_code=24541 site_time_zone_utc_offset=-5 +County "VA, Dickenson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100510.epw site_zip_code=24228 site_time_zone_utc_offset=-5 +County "VA, Dinwiddie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100530.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Emporia city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5105950.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100570.epw site_zip_code=22560 site_time_zone_utc_offset=-5 +County "VA, Fairfax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100590.epw site_zip_code=20171 site_time_zone_utc_offset=-5 +County "VA, Fairfax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106000.epw site_zip_code=22030 site_time_zone_utc_offset=-5 +County "VA, Falls Church city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106100.epw site_zip_code=22046 site_time_zone_utc_offset=-5 +County "VA, Fauquier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100610.epw site_zip_code=20187 site_time_zone_utc_offset=-5 +County "VA, Floyd County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100630.epw site_zip_code=24091 site_time_zone_utc_offset=-5 +County "VA, Fluvanna County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100650.epw site_zip_code=22963 site_time_zone_utc_offset=-5 +County "VA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100670.epw site_zip_code=24151 site_time_zone_utc_offset=-5 +County "VA, Franklin city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106200.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Frederick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100690.epw site_zip_code=22602 site_time_zone_utc_offset=-5 +County "VA, Fredericksburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106300.epw site_zip_code=22401 site_time_zone_utc_offset=-5 +County "VA, Galax city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106400.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Giles County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100710.epw site_zip_code=24134 site_time_zone_utc_offset=-5 +County "VA, Gloucester County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100730.epw site_zip_code=23061 site_time_zone_utc_offset=-5 +County "VA, Goochland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100750.epw site_zip_code=23103 site_time_zone_utc_offset=-5 +County "VA, Grayson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100770.epw site_zip_code=24333 site_time_zone_utc_offset=-5 +County "VA, Greene County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100790.epw site_zip_code=22968 site_time_zone_utc_offset=-5 +County "VA, Greensville County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100810.epw site_zip_code=23847 site_time_zone_utc_offset=-5 +County "VA, Halifax County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100830.epw site_zip_code=24592 site_time_zone_utc_offset=-5 +County "VA, Hampton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106500.epw site_zip_code=23666 site_time_zone_utc_offset=-5 +County "VA, Hanover County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100850.epw site_zip_code=23111 site_time_zone_utc_offset=-5 +County "VA, Harrisonburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106600.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Henrico County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100870.epw site_zip_code=23228 site_time_zone_utc_offset=-5 +County "VA, Henry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100890.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Highland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100910.epw site_zip_code=24465 site_time_zone_utc_offset=-5 +County "VA, Hopewell city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106700.epw site_zip_code=23860 site_time_zone_utc_offset=-5 +County "VA, Isle of Wight County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100930.epw site_zip_code=23430 site_time_zone_utc_offset=-5 +County "VA, James City County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100950.epw site_zip_code=23188 site_time_zone_utc_offset=-5 +County "VA, King George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100990.epw site_zip_code=22485 site_time_zone_utc_offset=-5 +County "VA, King William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101010.epw site_zip_code=23009 site_time_zone_utc_offset=-5 +County "VA, King and Queen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5100970.epw site_zip_code=23156 site_time_zone_utc_offset=-5 +County "VA, Lancaster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101030.epw site_zip_code=22503 site_time_zone_utc_offset=-5 +County "VA, Lee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101050.epw site_zip_code=24263 site_time_zone_utc_offset=-5 +County "VA, Lexington city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106780.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Loudoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101070.epw site_zip_code=20189 site_time_zone_utc_offset=-5 +County "VA, Louisa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101090.epw site_zip_code=23093 site_time_zone_utc_offset=-5 +County "VA, Lunenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101110.epw site_zip_code=23974 site_time_zone_utc_offset=-5 +County "VA, Lynchburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106800.epw site_zip_code=24502 site_time_zone_utc_offset=-5 +County "VA, Madison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101130.epw site_zip_code=22727 site_time_zone_utc_offset=-5 +County "VA, Manassas Park city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106850.epw site_zip_code=20111 site_time_zone_utc_offset=-5 +County "VA, Manassas city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106830.epw site_zip_code=20110 site_time_zone_utc_offset=-5 +County "VA, Martinsville city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5106900.epw site_zip_code=24112 site_time_zone_utc_offset=-5 +County "VA, Mathews County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101150.epw site_zip_code=23109 site_time_zone_utc_offset=-5 +County "VA, Mecklenburg County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101170.epw site_zip_code=23970 site_time_zone_utc_offset=-5 +County "VA, Middlesex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101190.epw site_zip_code=23043 site_time_zone_utc_offset=-5 +County "VA, Montgomery County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101210.epw site_zip_code=24060 site_time_zone_utc_offset=-5 +County "VA, Nelson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101250.epw site_zip_code=22967 site_time_zone_utc_offset=-5 +County "VA, New Kent County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101270.epw site_zip_code=23141 site_time_zone_utc_offset=-5 +County "VA, Newport News city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107000.epw site_zip_code=23608 site_time_zone_utc_offset=-5 +County "VA, Norfolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107100.epw site_zip_code=23503 site_time_zone_utc_offset=-5 +County "VA, Northampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101310.epw site_zip_code=23310 site_time_zone_utc_offset=-5 +County "VA, Northumberland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101330.epw site_zip_code=22473 site_time_zone_utc_offset=-5 +County "VA, Norton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107200.epw site_zip_code=24273 site_time_zone_utc_offset=-5 +County "VA, Nottoway County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101350.epw site_zip_code=23824 site_time_zone_utc_offset=-5 +County "VA, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101370.epw site_zip_code=22508 site_time_zone_utc_offset=-5 +County "VA, Page County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101390.epw site_zip_code=22835 site_time_zone_utc_offset=-5 +County "VA, Patrick County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101410.epw site_zip_code=24171 site_time_zone_utc_offset=-5 +County "VA, Petersburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107300.epw site_zip_code=23803 site_time_zone_utc_offset=-5 +County "VA, Pittsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101430.epw site_zip_code=24540 site_time_zone_utc_offset=-5 +County "VA, Poquoson city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107350.epw site_zip_code=23662 site_time_zone_utc_offset=-5 +County "VA, Portsmouth city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107400.epw site_zip_code=23703 site_time_zone_utc_offset=-5 +County "VA, Powhatan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101450.epw site_zip_code=23139 site_time_zone_utc_offset=-5 +County "VA, Prince Edward County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101470.epw site_zip_code=23901 site_time_zone_utc_offset=-5 +County "VA, Prince George County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101490.epw site_zip_code=23875 site_time_zone_utc_offset=-5 +County "VA, Prince William County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101530.epw site_zip_code=22191 site_time_zone_utc_offset=-5 +County "VA, Pulaski County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101550.epw site_zip_code=24301 site_time_zone_utc_offset=-5 +County "VA, Radford city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107500.epw site_zip_code=24141 site_time_zone_utc_offset=-5 +County "VA, Rappahannock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101570.epw site_zip_code=20106 site_time_zone_utc_offset=-5 +County "VA, Richmond County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101590.epw site_zip_code=22572 site_time_zone_utc_offset=-5 +County "VA, Richmond city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107600.epw site_zip_code=23220 site_time_zone_utc_offset=-5 +County "VA, Roanoke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101610.epw site_zip_code=24018 site_time_zone_utc_offset=-5 +County "VA, Roanoke city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107700.epw site_zip_code=24017 site_time_zone_utc_offset=-5 +County "VA, Rockbridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101630.epw site_zip_code=24450 site_time_zone_utc_offset=-5 +County "VA, Rockingham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101650.epw site_zip_code=22801 site_time_zone_utc_offset=-5 +County "VA, Russell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101670.epw site_zip_code=24266 site_time_zone_utc_offset=-5 +County "VA, Salem city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107750.epw site_zip_code=24153 site_time_zone_utc_offset=-5 +County "VA, Scott County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101690.epw site_zip_code=24251 site_time_zone_utc_offset=-5 +County "VA, Shenandoah County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101710.epw site_zip_code=22657 site_time_zone_utc_offset=-5 +County "VA, Smyth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101730.epw site_zip_code=24354 site_time_zone_utc_offset=-5 +County "VA, Southampton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101750.epw site_zip_code=23851 site_time_zone_utc_offset=-5 +County "VA, Spotsylvania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101770.epw site_zip_code=22407 site_time_zone_utc_offset=-5 +County "VA, Stafford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101790.epw site_zip_code=22554 site_time_zone_utc_offset=-5 +County "VA, Staunton city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5107900.epw site_zip_code=24401 site_time_zone_utc_offset=-5 +County "VA, Suffolk city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108000.epw site_zip_code=23434 site_time_zone_utc_offset=-5 +County "VA, Surry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101810.epw site_zip_code=23883 site_time_zone_utc_offset=-5 +County "VA, Sussex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101830.epw site_zip_code=23890 site_time_zone_utc_offset=-5 +County "VA, Tazewell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101850.epw site_zip_code=24605 site_time_zone_utc_offset=-5 +County "VA, Virginia Beach city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108100.epw site_zip_code=23462 site_time_zone_utc_offset=-5 +County "VA, Warren County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101870.epw site_zip_code=22630 site_time_zone_utc_offset=-5 +County "VA, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101910.epw site_zip_code=24210 site_time_zone_utc_offset=-5 +County "VA, Waynesboro city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108200.epw site_zip_code=22980 site_time_zone_utc_offset=-5 +County "VA, Westmoreland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101930.epw site_zip_code=22443 site_time_zone_utc_offset=-5 +County "VA, Williamsburg city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108300.epw site_zip_code=23185 site_time_zone_utc_offset=-5 +County "VA, Winchester city" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5108400.epw site_zip_code=22601 site_time_zone_utc_offset=-5 +County "VA, Wise County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101950.epw site_zip_code=24219 site_time_zone_utc_offset=-5 +County "VA, Wythe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101970.epw site_zip_code=24382 site_time_zone_utc_offset=-5 +County "VA, York County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5101990.epw site_zip_code=23692 site_time_zone_utc_offset=-5 +County "VT, Addison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000010.epw site_zip_code=05753 site_time_zone_utc_offset=-5 +County "VT, Bennington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000030.epw site_zip_code=05201 site_time_zone_utc_offset=-5 +County "VT, Caledonia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000050.epw site_zip_code=05819 site_time_zone_utc_offset=-5 +County "VT, Chittenden County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000070.epw site_zip_code=05401 site_time_zone_utc_offset=-5 +County "VT, Essex County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000090.epw site_zip_code=05906 site_time_zone_utc_offset=-5 +County "VT, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000110.epw site_zip_code=05478 site_time_zone_utc_offset=-5 +County "VT, Grand Isle County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000130.epw site_zip_code=05440 site_time_zone_utc_offset=-5 +County "VT, Lamoille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000150.epw site_zip_code=05672 site_time_zone_utc_offset=-5 +County "VT, Orange County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000170.epw site_zip_code=05060 site_time_zone_utc_offset=-5 +County "VT, Orleans County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000190.epw site_zip_code=05855 site_time_zone_utc_offset=-5 +County "VT, Rutland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000210.epw site_zip_code=05701 site_time_zone_utc_offset=-5 +County "VT, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000230.epw site_zip_code=05641 site_time_zone_utc_offset=-5 +County "VT, Windham County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000250.epw site_zip_code=05301 site_time_zone_utc_offset=-5 +County "VT, Windsor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5000270.epw site_zip_code=05156 site_time_zone_utc_offset=-5 +County "WA, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300010.epw site_zip_code=99344 site_time_zone_utc_offset=-8 +County "WA, Asotin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300030.epw site_zip_code=99403 site_time_zone_utc_offset=-8 +County "WA, Benton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300050.epw site_zip_code=99336 site_time_zone_utc_offset=-8 +County "WA, Chelan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300070.epw site_zip_code=98801 site_time_zone_utc_offset=-8 +County "WA, Clallam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300090.epw site_zip_code=98382 site_time_zone_utc_offset=-8 +County "WA, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300110.epw site_zip_code=98682 site_time_zone_utc_offset=-8 +County "WA, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300130.epw site_zip_code=99328 site_time_zone_utc_offset=-8 +County "WA, Cowlitz County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300150.epw site_zip_code=98632 site_time_zone_utc_offset=-8 +County "WA, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300170.epw site_zip_code=98802 site_time_zone_utc_offset=-8 +County "WA, Ferry County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300190.epw site_zip_code=99166 site_time_zone_utc_offset=-8 +County "WA, Franklin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300210.epw site_zip_code=99301 site_time_zone_utc_offset=-8 +County "WA, Garfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300230.epw site_zip_code=99347 site_time_zone_utc_offset=-8 +County "WA, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300250.epw site_zip_code=98837 site_time_zone_utc_offset=-8 +County "WA, Grays Harbor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300270.epw site_zip_code=98520 site_time_zone_utc_offset=-8 +County "WA, Island County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300290.epw site_zip_code=98277 site_time_zone_utc_offset=-8 +County "WA, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300310.epw site_zip_code=98368 site_time_zone_utc_offset=-8 +County "WA, King County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300330.epw site_zip_code=98052 site_time_zone_utc_offset=-8 +County "WA, Kitsap County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300350.epw site_zip_code=98312 site_time_zone_utc_offset=-8 +County "WA, Kittitas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300370.epw site_zip_code=98926 site_time_zone_utc_offset=-8 +County "WA, Klickitat County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300390.epw site_zip_code=98672 site_time_zone_utc_offset=-8 +County "WA, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300410.epw site_zip_code=98531 site_time_zone_utc_offset=-8 +County "WA, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300430.epw site_zip_code=99122 site_time_zone_utc_offset=-8 +County "WA, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300450.epw site_zip_code=98584 site_time_zone_utc_offset=-8 +County "WA, Okanogan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300470.epw site_zip_code=98841 site_time_zone_utc_offset=-8 +County "WA, Pacific County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300490.epw site_zip_code=98640 site_time_zone_utc_offset=-8 +County "WA, Pend Oreille County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300510.epw site_zip_code=99156 site_time_zone_utc_offset=-8 +County "WA, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300530.epw site_zip_code=98391 site_time_zone_utc_offset=-8 +County "WA, San Juan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300550.epw site_zip_code=98250 site_time_zone_utc_offset=-8 +County "WA, Skagit County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300570.epw site_zip_code=98273 site_time_zone_utc_offset=-8 +County "WA, Skamania County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300590.epw site_zip_code=98648 site_time_zone_utc_offset=-8 +County "WA, Snohomish County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300610.epw site_zip_code=98012 site_time_zone_utc_offset=-8 +County "WA, Spokane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300630.epw site_zip_code=99208 site_time_zone_utc_offset=-8 +County "WA, Stevens County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300650.epw site_zip_code=99114 site_time_zone_utc_offset=-8 +County "WA, Thurston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300670.epw site_zip_code=98501 site_time_zone_utc_offset=-8 +County "WA, Wahkiakum County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300690.epw site_zip_code=98612 site_time_zone_utc_offset=-8 +County "WA, Walla Walla County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300710.epw site_zip_code=99362 site_time_zone_utc_offset=-8 +County "WA, Whatcom County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300730.epw site_zip_code=98225 site_time_zone_utc_offset=-8 +County "WA, Whitman County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300750.epw site_zip_code=99163 site_time_zone_utc_offset=-8 +County "WA, Yakima County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5300770.epw site_zip_code=98902 site_time_zone_utc_offset=-8 +County "WI, Adams County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500010.epw site_zip_code=53934 site_time_zone_utc_offset=-6 +County "WI, Ashland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500030.epw site_zip_code=54806 site_time_zone_utc_offset=-6 +County "WI, Barron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500050.epw site_zip_code=54868 site_time_zone_utc_offset=-6 +County "WI, Bayfield County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500070.epw site_zip_code=54891 site_time_zone_utc_offset=-6 +County "WI, Brown County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500090.epw site_zip_code=54115 site_time_zone_utc_offset=-6 +County "WI, Buffalo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500110.epw site_zip_code=54755 site_time_zone_utc_offset=-6 +County "WI, Burnett County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500130.epw site_zip_code=54830 site_time_zone_utc_offset=-6 +County "WI, Calumet County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500150.epw site_zip_code=54915 site_time_zone_utc_offset=-6 +County "WI, Chippewa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500170.epw site_zip_code=54729 site_time_zone_utc_offset=-6 +County "WI, Clark County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500190.epw site_zip_code=54456 site_time_zone_utc_offset=-6 +County "WI, Columbia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500210.epw site_zip_code=53901 site_time_zone_utc_offset=-6 +County "WI, Crawford County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500230.epw site_zip_code=53821 site_time_zone_utc_offset=-6 +County "WI, Dane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500250.epw site_zip_code=53711 site_time_zone_utc_offset=-6 +County "WI, Dodge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500270.epw site_zip_code=53916 site_time_zone_utc_offset=-6 +County "WI, Door County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500290.epw site_zip_code=54235 site_time_zone_utc_offset=-6 +County "WI, Douglas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500310.epw site_zip_code=54880 site_time_zone_utc_offset=-6 +County "WI, Dunn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500330.epw site_zip_code=54751 site_time_zone_utc_offset=-6 +County "WI, Eau Claire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500350.epw site_zip_code=54703 site_time_zone_utc_offset=-6 +County "WI, Florence County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500370.epw site_zip_code=54121 site_time_zone_utc_offset=-6 +County "WI, Fond du Lac County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500390.epw site_zip_code=54935 site_time_zone_utc_offset=-6 +County "WI, Forest County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500410.epw site_zip_code=54520 site_time_zone_utc_offset=-6 +County "WI, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500430.epw site_zip_code=53818 site_time_zone_utc_offset=-6 +County "WI, Green County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500450.epw site_zip_code=53566 site_time_zone_utc_offset=-6 +County "WI, Green Lake County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500470.epw site_zip_code=54923 site_time_zone_utc_offset=-6 +County "WI, Iowa County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500490.epw site_zip_code=53533 site_time_zone_utc_offset=-6 +County "WI, Iron County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500510.epw site_zip_code=54547 site_time_zone_utc_offset=-6 +County "WI, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500530.epw site_zip_code=54615 site_time_zone_utc_offset=-6 +County "WI, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500550.epw site_zip_code=53538 site_time_zone_utc_offset=-6 +County "WI, Juneau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500570.epw site_zip_code=53948 site_time_zone_utc_offset=-6 +County "WI, Kenosha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500590.epw site_zip_code=53142 site_time_zone_utc_offset=-6 +County "WI, Kewaunee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500610.epw site_zip_code=54216 site_time_zone_utc_offset=-6 +County "WI, La Crosse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500630.epw site_zip_code=54601 site_time_zone_utc_offset=-6 +County "WI, Lafayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500650.epw site_zip_code=53530 site_time_zone_utc_offset=-6 +County "WI, Langlade County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500670.epw site_zip_code=54409 site_time_zone_utc_offset=-6 +County "WI, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500690.epw site_zip_code=54452 site_time_zone_utc_offset=-6 +County "WI, Manitowoc County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500710.epw site_zip_code=54220 site_time_zone_utc_offset=-6 +County "WI, Marathon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500730.epw site_zip_code=54401 site_time_zone_utc_offset=-6 +County "WI, Marinette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500750.epw site_zip_code=54143 site_time_zone_utc_offset=-6 +County "WI, Marquette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500770.epw site_zip_code=53949 site_time_zone_utc_offset=-6 +County "WI, Menominee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500780.epw site_zip_code=54135 site_time_zone_utc_offset=-6 +County "WI, Milwaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500790.epw site_zip_code=53209 site_time_zone_utc_offset=-6 +County "WI, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500810.epw site_zip_code=54656 site_time_zone_utc_offset=-6 +County "WI, Oconto County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500830.epw site_zip_code=54153 site_time_zone_utc_offset=-6 +County "WI, Oneida County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500850.epw site_zip_code=54501 site_time_zone_utc_offset=-6 +County "WI, Outagamie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500870.epw site_zip_code=54911 site_time_zone_utc_offset=-6 +County "WI, Ozaukee County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500890.epw site_zip_code=53092 site_time_zone_utc_offset=-6 +County "WI, Pepin County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500910.epw site_zip_code=54736 site_time_zone_utc_offset=-6 +County "WI, Pierce County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500930.epw site_zip_code=54022 site_time_zone_utc_offset=-6 +County "WI, Polk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500950.epw site_zip_code=54001 site_time_zone_utc_offset=-6 +County "WI, Portage County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500970.epw site_zip_code=54481 site_time_zone_utc_offset=-6 +County "WI, Price County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5500990.epw site_zip_code=54555 site_time_zone_utc_offset=-6 +County "WI, Racine County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501010.epw site_zip_code=53402 site_time_zone_utc_offset=-6 +County "WI, Richland County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501030.epw site_zip_code=53581 site_time_zone_utc_offset=-6 +County "WI, Rock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501050.epw site_zip_code=53511 site_time_zone_utc_offset=-6 +County "WI, Rusk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501070.epw site_zip_code=54848 site_time_zone_utc_offset=-6 +County "WI, Sauk County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501110.epw site_zip_code=53913 site_time_zone_utc_offset=-6 +County "WI, Sawyer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501130.epw site_zip_code=54843 site_time_zone_utc_offset=-6 +County "WI, Shawano County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501150.epw site_zip_code=54166 site_time_zone_utc_offset=-6 +County "WI, Sheboygan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501170.epw site_zip_code=53081 site_time_zone_utc_offset=-6 +County "WI, St. Croix County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501090.epw site_zip_code=54016 site_time_zone_utc_offset=-6 +County "WI, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501190.epw site_zip_code=54451 site_time_zone_utc_offset=-6 +County "WI, Trempealeau County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501210.epw site_zip_code=54612 site_time_zone_utc_offset=-6 +County "WI, Vernon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501230.epw site_zip_code=54665 site_time_zone_utc_offset=-6 +County "WI, Vilas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501250.epw site_zip_code=54521 site_time_zone_utc_offset=-6 +County "WI, Walworth County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501270.epw site_zip_code=53147 site_time_zone_utc_offset=-6 +County "WI, Washburn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501290.epw site_zip_code=54801 site_time_zone_utc_offset=-6 +County "WI, Washington County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501310.epw site_zip_code=53022 site_time_zone_utc_offset=-6 +County "WI, Waukesha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501330.epw site_zip_code=53051 site_time_zone_utc_offset=-6 +County "WI, Waupaca County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501350.epw site_zip_code=54981 site_time_zone_utc_offset=-6 +County "WI, Waushara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501370.epw site_zip_code=54982 site_time_zone_utc_offset=-6 +County "WI, Winnebago County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501390.epw site_zip_code=54956 site_time_zone_utc_offset=-6 +County "WI, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5501410.epw site_zip_code=54449 site_time_zone_utc_offset=-6 +County "WV, Barbour County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400010.epw site_zip_code=26416 site_time_zone_utc_offset=-5 +County "WV, Berkeley County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400030.epw site_zip_code=25404 site_time_zone_utc_offset=-5 +County "WV, Boone County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400050.epw site_zip_code=25130 site_time_zone_utc_offset=-5 +County "WV, Braxton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400070.epw site_zip_code=26601 site_time_zone_utc_offset=-5 +County "WV, Brooke County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400090.epw site_zip_code=26070 site_time_zone_utc_offset=-5 +County "WV, Cabell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400110.epw site_zip_code=25701 site_time_zone_utc_offset=-5 +County "WV, Calhoun County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400130.epw site_zip_code=26147 site_time_zone_utc_offset=-5 +County "WV, Clay County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400150.epw site_zip_code=25043 site_time_zone_utc_offset=-5 +County "WV, Doddridge County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400170.epw site_zip_code=26456 site_time_zone_utc_offset=-5 +County "WV, Fayette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400190.epw site_zip_code=25901 site_time_zone_utc_offset=-5 +County "WV, Gilmer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400210.epw site_zip_code=26351 site_time_zone_utc_offset=-5 +County "WV, Grant County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400230.epw site_zip_code=26847 site_time_zone_utc_offset=-5 +County "WV, Greenbrier County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400250.epw site_zip_code=24901 site_time_zone_utc_offset=-5 +County "WV, Hampshire County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400270.epw site_zip_code=26757 site_time_zone_utc_offset=-5 +County "WV, Hancock County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400290.epw site_zip_code=26062 site_time_zone_utc_offset=-5 +County "WV, Hardy County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400310.epw site_zip_code=26836 site_time_zone_utc_offset=-5 +County "WV, Harrison County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400330.epw site_zip_code=26301 site_time_zone_utc_offset=-5 +County "WV, Jackson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400350.epw site_zip_code=25271 site_time_zone_utc_offset=-5 +County "WV, Jefferson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400370.epw site_zip_code=25414 site_time_zone_utc_offset=-5 +County "WV, Kanawha County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400390.epw site_zip_code=25177 site_time_zone_utc_offset=-5 +County "WV, Lewis County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400410.epw site_zip_code=26452 site_time_zone_utc_offset=-5 +County "WV, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400430.epw site_zip_code=25506 site_time_zone_utc_offset=-5 +County "WV, Logan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400450.epw site_zip_code=25601 site_time_zone_utc_offset=-5 +County "WV, Marion County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400490.epw site_zip_code=26554 site_time_zone_utc_offset=-5 +County "WV, Marshall County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400510.epw site_zip_code=26041 site_time_zone_utc_offset=-5 +County "WV, Mason County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400530.epw site_zip_code=25550 site_time_zone_utc_offset=-5 +County "WV, McDowell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400470.epw site_zip_code=24801 site_time_zone_utc_offset=-5 +County "WV, Mercer County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400550.epw site_zip_code=24701 site_time_zone_utc_offset=-5 +County "WV, Mineral County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400570.epw site_zip_code=26726 site_time_zone_utc_offset=-5 +County "WV, Mingo County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400590.epw site_zip_code=25661 site_time_zone_utc_offset=-5 +County "WV, Monongalia County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400610.epw site_zip_code=26505 site_time_zone_utc_offset=-5 +County "WV, Monroe County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400630.epw site_zip_code=24963 site_time_zone_utc_offset=-5 +County "WV, Morgan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400650.epw site_zip_code=25411 site_time_zone_utc_offset=-5 +County "WV, Nicholas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400670.epw site_zip_code=26651 site_time_zone_utc_offset=-5 +County "WV, Ohio County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400690.epw site_zip_code=26003 site_time_zone_utc_offset=-5 +County "WV, Pendleton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400710.epw site_zip_code=26807 site_time_zone_utc_offset=-5 +County "WV, Pleasants County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400730.epw site_zip_code=26170 site_time_zone_utc_offset=-5 +County "WV, Pocahontas County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400750.epw site_zip_code=24954 site_time_zone_utc_offset=-5 +County "WV, Preston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400770.epw site_zip_code=26537 site_time_zone_utc_offset=-5 +County "WV, Putnam County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400790.epw site_zip_code=25526 site_time_zone_utc_offset=-5 +County "WV, Raleigh County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400810.epw site_zip_code=25801 site_time_zone_utc_offset=-5 +County "WV, Randolph County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400830.epw site_zip_code=26241 site_time_zone_utc_offset=-5 +County "WV, Ritchie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400850.epw site_zip_code=26362 site_time_zone_utc_offset=-5 +County "WV, Roane County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400870.epw site_zip_code=25276 site_time_zone_utc_offset=-5 +County "WV, Summers County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400890.epw site_zip_code=25951 site_time_zone_utc_offset=-5 +County "WV, Taylor County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400910.epw site_zip_code=26354 site_time_zone_utc_offset=-5 +County "WV, Tucker County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400930.epw site_zip_code=26287 site_time_zone_utc_offset=-5 +County "WV, Tyler County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400950.epw site_zip_code=26175 site_time_zone_utc_offset=-5 +County "WV, Upshur County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400970.epw site_zip_code=26201 site_time_zone_utc_offset=-5 +County "WV, Wayne County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5400990.epw site_zip_code=25704 site_time_zone_utc_offset=-5 +County "WV, Webster County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401010.epw site_zip_code=26288 site_time_zone_utc_offset=-5 +County "WV, Wetzel County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401030.epw site_zip_code=26155 site_time_zone_utc_offset=-5 +County "WV, Wirt County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401050.epw site_zip_code=26143 site_time_zone_utc_offset=-5 +County "WV, Wood County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401070.epw site_zip_code=26101 site_time_zone_utc_offset=-5 +County "WV, Wyoming County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5401090.epw site_zip_code=25882 site_time_zone_utc_offset=-5 +County "WY, Albany County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600010.epw site_zip_code=82070 site_time_zone_utc_offset=-7 +County "WY, Big Horn County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600030.epw site_zip_code=82431 site_time_zone_utc_offset=-7 +County "WY, Campbell County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600050.epw site_zip_code=82718 site_time_zone_utc_offset=-7 +County "WY, Carbon County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600070.epw site_zip_code=82301 site_time_zone_utc_offset=-7 +County "WY, Converse County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600090.epw site_zip_code=82633 site_time_zone_utc_offset=-7 +County "WY, Crook County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600110.epw site_zip_code=82729 site_time_zone_utc_offset=-7 +County "WY, Fremont County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600130.epw site_zip_code=82501 site_time_zone_utc_offset=-7 +County "WY, Goshen County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600150.epw site_zip_code=82240 site_time_zone_utc_offset=-7 +County "WY, Hot Springs County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600170.epw site_zip_code=82443 site_time_zone_utc_offset=-7 +County "WY, Johnson County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600190.epw site_zip_code=82834 site_time_zone_utc_offset=-7 +County "WY, Laramie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600210.epw site_zip_code=82001 site_time_zone_utc_offset=-7 +County "WY, Lincoln County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600230.epw site_zip_code=83127 site_time_zone_utc_offset=-7 +County "WY, Natrona County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600250.epw site_zip_code=82601 site_time_zone_utc_offset=-7 +County "WY, Niobrara County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600270.epw site_zip_code=82225 site_time_zone_utc_offset=-7 +County "WY, Park County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600290.epw site_zip_code=82414 site_time_zone_utc_offset=-7 +County "WY, Platte County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600310.epw site_zip_code=82201 site_time_zone_utc_offset=-7 +County "WY, Sheridan County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600330.epw site_zip_code=82801 site_time_zone_utc_offset=-7 +County "WY, Sublette County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600350.epw site_zip_code=82941 site_time_zone_utc_offset=-7 +County "WY, Sweetwater County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600370.epw site_zip_code=82901 site_time_zone_utc_offset=-7 +County "WY, Teton County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600390.epw site_zip_code=83001 site_time_zone_utc_offset=-7 +County "WY, Uinta County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600410.epw site_zip_code=82930 site_time_zone_utc_offset=-7 +County "WY, Washakie County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600430.epw site_zip_code=82401 site_time_zone_utc_offset=-7 +County "WY, Weston County" ResStockArguments simulation_control_daylight_saving_enabled=true weather_station_epw_filepath=../../../weather/G5600450.epw site_zip_code=82701 site_time_zone_utc_offset=-7 +County and PUMA "G0100010, G01002100" +County and PUMA "G0100030, G01002600" +County and PUMA "G0100050, G01002400" +County and PUMA "G0100070, G01001700" +County and PUMA "G0100090, G01000800" +County and PUMA "G0100110, G01002400" +County and PUMA "G0100130, G01002300" +County and PUMA "G0100150, G01001100" +County and PUMA "G0100170, G01001800" +County and PUMA "G0100190, G01001000" +County and PUMA "G0100210, G01001800" +County and PUMA "G0100230, G01002200" +County and PUMA "G0100250, G01002200" +County and PUMA "G0100270, G01001000" +County and PUMA "G0100290, G01001000" +County and PUMA "G0100310, G01002300" +County and PUMA "G0100330, G01000100" +County and PUMA "G0100350, G01002200" +County and PUMA "G0100370, G01001800" +County and PUMA "G0100390, G01002300" +County and PUMA "G0100410, G01002300" +County and PUMA "G0100430, G01000700" +County and PUMA "G0100450, G01002500" +County and PUMA "G0100470, G01001700" +County and PUMA "G0100490, G01000400" +County and PUMA "G0100510, G01002100" +County and PUMA "G0100530, G01002200" +County and PUMA "G0100550, G01000900" +County and PUMA "G0100570, G01001400" +County and PUMA "G0100590, G01000100" +County and PUMA "G0100610, G01002500" +County and PUMA "G0100630, G01001700" +County and PUMA "G0100650, G01001700" +County and PUMA "G0100670, G01002500" +County and PUMA "G0100690, G01002500" +County and PUMA "G0100710, G01000400" +County and PUMA "G0100730, G01001301" +County and PUMA "G0100730, G01001302" +County and PUMA "G0100730, G01001303" +County and PUMA "G0100730, G01001304" +County and PUMA "G0100730, G01001305" +County and PUMA "G0100750, G01001400" +County and PUMA "G0100770, G01000100" +County and PUMA "G0100790, G01000600" +County and PUMA "G0100810, G01001900" +County and PUMA "G0100830, G01000200" +County and PUMA "G0100850, G01002100" +County and PUMA "G0100870, G01002400" +County and PUMA "G0100890, G01000200" +County and PUMA "G0100890, G01000301" +County and PUMA "G0100890, G01000302" +County and PUMA "G0100890, G01000500" +County and PUMA "G0100910, G01001700" +County and PUMA "G0100930, G01000100" +County and PUMA "G0100930, G01001400" +County and PUMA "G0100950, G01000500" +County and PUMA "G0100970, G01002701" +County and PUMA "G0100970, G01002702" +County and PUMA "G0100970, G01002703" +County and PUMA "G0100990, G01002200" +County and PUMA "G0101010, G01002000" +County and PUMA "G0101010, G01002100" +County and PUMA "G0101030, G01000600" +County and PUMA "G0101050, G01001700" +County and PUMA "G0101070, G01001500" +County and PUMA "G0101090, G01002400" +County and PUMA "G0101110, G01001000" +County and PUMA "G0101130, G01002400" +County and PUMA "G0101150, G01000800" +County and PUMA "G0101170, G01001200" +County and PUMA "G0101190, G01001700" +County and PUMA "G0101210, G01001000" +County and PUMA "G0101230, G01001800" +County and PUMA "G0101250, G01001500" +County and PUMA "G0101250, G01001600" +County and PUMA "G0101270, G01001400" +County and PUMA "G0101290, G01002200" +County and PUMA "G0101310, G01002200" +County and PUMA "G0101330, G01000700" +County and PUMA "G0200130, G02000400" +County and PUMA "G0200160, G02000400" +County and PUMA "G0200200, G02000101" +County and PUMA "G0200200, G02000102" +County and PUMA "G0200500, G02000400" +County and PUMA "G0200600, G02000400" +County and PUMA "G0200680, G02000300" +County and PUMA "G0200700, G02000400" +County and PUMA "G0200900, G02000300" +County and PUMA "G0201000, G02000300" +County and PUMA "G0201050, G02000400" +County and PUMA "G0201100, G02000300" +County and PUMA "G0201220, G02000200" +County and PUMA "G0201300, G02000300" +County and PUMA "G0201500, G02000400" +County and PUMA "G0201580, G02000400" +County and PUMA "G0201640, G02000400" +County and PUMA "G0201700, G02000200" +County and PUMA "G0201800, G02000400" +County and PUMA "G0201850, G02000400" +County and PUMA "G0201880, G02000400" +County and PUMA "G0201950, G02000400" +County and PUMA "G0201980, G02000400" +County and PUMA "G0202200, G02000400" +County and PUMA "G0202300, G02000300" +County and PUMA "G0202400, G02000300" +County and PUMA "G0202610, G02000300" +County and PUMA "G0202750, G02000400" +County and PUMA "G0202820, G02000400" +County and PUMA "G0202900, G02000400" +County and PUMA "G0400010, G04000300" +County and PUMA "G0400030, G04000900" +County and PUMA "G0400050, G04000400" +County and PUMA "G0400070, G04000800" +County and PUMA "G0400090, G04000800" +County and PUMA "G0400110, G04000800" +County and PUMA "G0400120, G04000600" +County and PUMA "G0400130, G04000100" +County and PUMA "G0400130, G04000101" +County and PUMA "G0400130, G04000102" +County and PUMA "G0400130, G04000103" +County and PUMA "G0400130, G04000104" +County and PUMA "G0400130, G04000105" +County and PUMA "G0400130, G04000106" +County and PUMA "G0400130, G04000107" +County and PUMA "G0400130, G04000108" +County and PUMA "G0400130, G04000109" +County and PUMA "G0400130, G04000110" +County and PUMA "G0400130, G04000111" +County and PUMA "G0400130, G04000112" +County and PUMA "G0400130, G04000113" +County and PUMA "G0400130, G04000114" +County and PUMA "G0400130, G04000115" +County and PUMA "G0400130, G04000116" +County and PUMA "G0400130, G04000117" +County and PUMA "G0400130, G04000118" +County and PUMA "G0400130, G04000119" +County and PUMA "G0400130, G04000120" +County and PUMA "G0400130, G04000121" +County and PUMA "G0400130, G04000122" +County and PUMA "G0400130, G04000123" +County and PUMA "G0400130, G04000124" +County and PUMA "G0400130, G04000125" +County and PUMA "G0400130, G04000126" +County and PUMA "G0400130, G04000127" +County and PUMA "G0400130, G04000128" +County and PUMA "G0400130, G04000129" +County and PUMA "G0400130, G04000130" +County and PUMA "G0400130, G04000131" +County and PUMA "G0400130, G04000132" +County and PUMA "G0400130, G04000133" +County and PUMA "G0400130, G04000134" +County and PUMA "G0400150, G04000600" +County and PUMA "G0400170, G04000300" +County and PUMA "G0400190, G04000201" +County and PUMA "G0400190, G04000202" +County and PUMA "G0400190, G04000203" +County and PUMA "G0400190, G04000204" +County and PUMA "G0400190, G04000205" +County and PUMA "G0400190, G04000206" +County and PUMA "G0400190, G04000207" +County and PUMA "G0400190, G04000208" +County and PUMA "G0400190, G04000209" +County and PUMA "G0400210, G04000800" +County and PUMA "G0400210, G04000803" +County and PUMA "G0400210, G04000805" +County and PUMA "G0400210, G04000807" +County and PUMA "G0400230, G04000900" +County and PUMA "G0400250, G04000500" +County and PUMA "G0400270, G04000700" +County and PUMA "G0500010, G05001700" +County and PUMA "G0500010, G05001800" +County and PUMA "G0500030, G05001800" +County and PUMA "G0500050, G05000300" +County and PUMA "G0500070, G05000100" +County and PUMA "G0500090, G05000300" +County and PUMA "G0500110, G05001800" +County and PUMA "G0500130, G05001900" +County and PUMA "G0500150, G05000300" +County and PUMA "G0500170, G05001800" +County and PUMA "G0500190, G05001600" +County and PUMA "G0500210, G05000500" +County and PUMA "G0500230, G05000400" +County and PUMA "G0500250, G05001800" +County and PUMA "G0500270, G05001900" +County and PUMA "G0500290, G05001300" +County and PUMA "G0500310, G05000500" +County and PUMA "G0500310, G05000600" +County and PUMA "G0500330, G05001400" +County and PUMA "G0500350, G05000600" +County and PUMA "G0500370, G05000700" +County and PUMA "G0500390, G05001900" +County and PUMA "G0500410, G05001800" +County and PUMA "G0500430, G05001800" +County and PUMA "G0500450, G05001100" +County and PUMA "G0500470, G05001500" +County and PUMA "G0500490, G05000400" +County and PUMA "G0500510, G05001600" +County and PUMA "G0500530, G05001700" +County and PUMA "G0500550, G05000500" +County and PUMA "G0500570, G05002000" +County and PUMA "G0500590, G05001600" +County and PUMA "G0500610, G05001500" +County and PUMA "G0500630, G05000400" +County and PUMA "G0500650, G05000400" +County and PUMA "G0500670, G05000800" +County and PUMA "G0500690, G05001700" +County and PUMA "G0500710, G05001300" +County and PUMA "G0500730, G05002000" +County and PUMA "G0500750, G05000500" +County and PUMA "G0500770, G05000700" +County and PUMA "G0500790, G05001800" +County and PUMA "G0500810, G05002000" +County and PUMA "G0500830, G05001500" +County and PUMA "G0500850, G05001100" +County and PUMA "G0500870, G05000300" +County and PUMA "G0500890, G05000300" +County and PUMA "G0500910, G05002000" +County and PUMA "G0500930, G05000600" +County and PUMA "G0500950, G05000700" +County and PUMA "G0500970, G05001600" +County and PUMA "G0500990, G05002000" +County and PUMA "G0501010, G05000300" +County and PUMA "G0501030, G05001900" +County and PUMA "G0501050, G05001300" +County and PUMA "G0501070, G05000700" +County and PUMA "G0501090, G05002000" +County and PUMA "G0501110, G05000700" +County and PUMA "G0501130, G05001500" +County and PUMA "G0501150, G05001300" +County and PUMA "G0501170, G05000800" +County and PUMA "G0501190, G05000900" +County and PUMA "G0501190, G05001000" +County and PUMA "G0501210, G05000500" +County and PUMA "G0501230, G05000700" +County and PUMA "G0501250, G05001200" +County and PUMA "G0501270, G05001500" +County and PUMA "G0501290, G05000300" +County and PUMA "G0501310, G05001400" +County and PUMA "G0501330, G05001500" +County and PUMA "G0501350, G05000400" +County and PUMA "G0501370, G05000400" +County and PUMA "G0501390, G05001900" +County and PUMA "G0501410, G05000400" +County and PUMA "G0501430, G05000200" +County and PUMA "G0501450, G05000800" +County and PUMA "G0501470, G05000800" +County and PUMA "G0501490, G05001300" +County and PUMA "G0600010, G06000101" +County and PUMA "G0600010, G06000102" +County and PUMA "G0600010, G06000103" +County and PUMA "G0600010, G06000104" +County and PUMA "G0600010, G06000105" +County and PUMA "G0600010, G06000106" +County and PUMA "G0600010, G06000107" +County and PUMA "G0600010, G06000108" +County and PUMA "G0600010, G06000109" +County and PUMA "G0600010, G06000110" +County and PUMA "G0600030, G06000300" +County and PUMA "G0600050, G06000300" +County and PUMA "G0600070, G06000701" +County and PUMA "G0600070, G06000702" +County and PUMA "G0600090, G06000300" +County and PUMA "G0600110, G06001100" +County and PUMA "G0600130, G06001301" +County and PUMA "G0600130, G06001302" +County and PUMA "G0600130, G06001303" +County and PUMA "G0600130, G06001304" +County and PUMA "G0600130, G06001305" +County and PUMA "G0600130, G06001306" +County and PUMA "G0600130, G06001307" +County and PUMA "G0600130, G06001308" +County and PUMA "G0600130, G06001309" +County and PUMA "G0600150, G06001500" +County and PUMA "G0600170, G06001700" +County and PUMA "G0600190, G06001901" +County and PUMA "G0600190, G06001902" +County and PUMA "G0600190, G06001903" +County and PUMA "G0600190, G06001904" +County and PUMA "G0600190, G06001905" +County and PUMA "G0600190, G06001906" +County and PUMA "G0600190, G06001907" +County and PUMA "G0600210, G06001100" +County and PUMA "G0600230, G06002300" +County and PUMA "G0600250, G06002500" +County and PUMA "G0600270, G06000300" +County and PUMA "G0600290, G06002901" +County and PUMA "G0600290, G06002902" +County and PUMA "G0600290, G06002903" +County and PUMA "G0600290, G06002904" +County and PUMA "G0600290, G06002905" +County and PUMA "G0600310, G06003100" +County and PUMA "G0600330, G06003300" +County and PUMA "G0600350, G06001500" +County and PUMA "G0600370, G06003701" +County and PUMA "G0600370, G06003702" +County and PUMA "G0600370, G06003703" +County and PUMA "G0600370, G06003704" +County and PUMA "G0600370, G06003705" +County and PUMA "G0600370, G06003706" +County and PUMA "G0600370, G06003707" +County and PUMA "G0600370, G06003708" +County and PUMA "G0600370, G06003709" +County and PUMA "G0600370, G06003710" +County and PUMA "G0600370, G06003711" +County and PUMA "G0600370, G06003712" +County and PUMA "G0600370, G06003713" +County and PUMA "G0600370, G06003714" +County and PUMA "G0600370, G06003715" +County and PUMA "G0600370, G06003716" +County and PUMA "G0600370, G06003717" +County and PUMA "G0600370, G06003718" +County and PUMA "G0600370, G06003719" +County and PUMA "G0600370, G06003720" +County and PUMA "G0600370, G06003721" +County and PUMA "G0600370, G06003722" +County and PUMA "G0600370, G06003723" +County and PUMA "G0600370, G06003724" +County and PUMA "G0600370, G06003725" +County and PUMA "G0600370, G06003726" +County and PUMA "G0600370, G06003727" +County and PUMA "G0600370, G06003728" +County and PUMA "G0600370, G06003729" +County and PUMA "G0600370, G06003730" +County and PUMA "G0600370, G06003731" +County and PUMA "G0600370, G06003732" +County and PUMA "G0600370, G06003733" +County and PUMA "G0600370, G06003734" +County and PUMA "G0600370, G06003735" +County and PUMA "G0600370, G06003736" +County and PUMA "G0600370, G06003737" +County and PUMA "G0600370, G06003738" +County and PUMA "G0600370, G06003739" +County and PUMA "G0600370, G06003740" +County and PUMA "G0600370, G06003741" +County and PUMA "G0600370, G06003742" +County and PUMA "G0600370, G06003743" +County and PUMA "G0600370, G06003744" +County and PUMA "G0600370, G06003745" +County and PUMA "G0600370, G06003746" +County and PUMA "G0600370, G06003747" +County and PUMA "G0600370, G06003748" +County and PUMA "G0600370, G06003749" +County and PUMA "G0600370, G06003750" +County and PUMA "G0600370, G06003751" +County and PUMA "G0600370, G06003752" +County and PUMA "G0600370, G06003753" +County and PUMA "G0600370, G06003754" +County and PUMA "G0600370, G06003755" +County and PUMA "G0600370, G06003756" +County and PUMA "G0600370, G06003757" +County and PUMA "G0600370, G06003758" +County and PUMA "G0600370, G06003759" +County and PUMA "G0600370, G06003760" +County and PUMA "G0600370, G06003761" +County and PUMA "G0600370, G06003762" +County and PUMA "G0600370, G06003763" +County and PUMA "G0600370, G06003764" +County and PUMA "G0600370, G06003765" +County and PUMA "G0600370, G06003766" +County and PUMA "G0600370, G06003767" +County and PUMA "G0600370, G06003768" +County and PUMA "G0600370, G06003769" +County and PUMA "G0600390, G06003900" +County and PUMA "G0600410, G06004101" +County and PUMA "G0600410, G06004102" +County and PUMA "G0600430, G06000300" +County and PUMA "G0600450, G06003300" +County and PUMA "G0600470, G06004701" +County and PUMA "G0600470, G06004702" +County and PUMA "G0600490, G06001500" +County and PUMA "G0600510, G06000300" +County and PUMA "G0600530, G06005301" +County and PUMA "G0600530, G06005302" +County and PUMA "G0600530, G06005303" +County and PUMA "G0600550, G06005500" +County and PUMA "G0600570, G06005700" +County and PUMA "G0600590, G06005901" +County and PUMA "G0600590, G06005902" +County and PUMA "G0600590, G06005903" +County and PUMA "G0600590, G06005904" +County and PUMA "G0600590, G06005905" +County and PUMA "G0600590, G06005906" +County and PUMA "G0600590, G06005907" +County and PUMA "G0600590, G06005908" +County and PUMA "G0600590, G06005909" +County and PUMA "G0600590, G06005910" +County and PUMA "G0600590, G06005911" +County and PUMA "G0600590, G06005912" +County and PUMA "G0600590, G06005913" +County and PUMA "G0600590, G06005914" +County and PUMA "G0600590, G06005915" +County and PUMA "G0600590, G06005916" +County and PUMA "G0600590, G06005917" +County and PUMA "G0600590, G06005918" +County and PUMA "G0600610, G06006101" +County and PUMA "G0600610, G06006102" +County and PUMA "G0600610, G06006103" +County and PUMA "G0600630, G06001500" +County and PUMA "G0600650, G06006501" +County and PUMA "G0600650, G06006502" +County and PUMA "G0600650, G06006503" +County and PUMA "G0600650, G06006504" +County and PUMA "G0600650, G06006505" +County and PUMA "G0600650, G06006506" +County and PUMA "G0600650, G06006507" +County and PUMA "G0600650, G06006508" +County and PUMA "G0600650, G06006509" +County and PUMA "G0600650, G06006510" +County and PUMA "G0600650, G06006511" +County and PUMA "G0600650, G06006512" +County and PUMA "G0600650, G06006513" +County and PUMA "G0600650, G06006514" +County and PUMA "G0600650, G06006515" +County and PUMA "G0600670, G06006701" +County and PUMA "G0600670, G06006702" +County and PUMA "G0600670, G06006703" +County and PUMA "G0600670, G06006704" +County and PUMA "G0600670, G06006705" +County and PUMA "G0600670, G06006706" +County and PUMA "G0600670, G06006707" +County and PUMA "G0600670, G06006708" +County and PUMA "G0600670, G06006709" +County and PUMA "G0600670, G06006710" +County and PUMA "G0600670, G06006711" +County and PUMA "G0600670, G06006712" +County and PUMA "G0600690, G06005303" +County and PUMA "G0600710, G06007101" +County and PUMA "G0600710, G06007102" +County and PUMA "G0600710, G06007103" +County and PUMA "G0600710, G06007104" +County and PUMA "G0600710, G06007105" +County and PUMA "G0600710, G06007106" +County and PUMA "G0600710, G06007107" +County and PUMA "G0600710, G06007108" +County and PUMA "G0600710, G06007109" +County and PUMA "G0600710, G06007110" +County and PUMA "G0600710, G06007111" +County and PUMA "G0600710, G06007112" +County and PUMA "G0600710, G06007113" +County and PUMA "G0600710, G06007114" +County and PUMA "G0600710, G06007115" +County and PUMA "G0600730, G06007301" +County and PUMA "G0600730, G06007302" +County and PUMA "G0600730, G06007303" +County and PUMA "G0600730, G06007304" +County and PUMA "G0600730, G06007305" +County and PUMA "G0600730, G06007306" +County and PUMA "G0600730, G06007307" +County and PUMA "G0600730, G06007308" +County and PUMA "G0600730, G06007309" +County and PUMA "G0600730, G06007310" +County and PUMA "G0600730, G06007311" +County and PUMA "G0600730, G06007312" +County and PUMA "G0600730, G06007313" +County and PUMA "G0600730, G06007314" +County and PUMA "G0600730, G06007315" +County and PUMA "G0600730, G06007316" +County and PUMA "G0600730, G06007317" +County and PUMA "G0600730, G06007318" +County and PUMA "G0600730, G06007319" +County and PUMA "G0600730, G06007320" +County and PUMA "G0600730, G06007321" +County and PUMA "G0600730, G06007322" +County and PUMA "G0600750, G06007501" +County and PUMA "G0600750, G06007502" +County and PUMA "G0600750, G06007503" +County and PUMA "G0600750, G06007504" +County and PUMA "G0600750, G06007505" +County and PUMA "G0600750, G06007506" +County and PUMA "G0600750, G06007507" +County and PUMA "G0600770, G06007701" +County and PUMA "G0600770, G06007702" +County and PUMA "G0600770, G06007703" +County and PUMA "G0600770, G06007704" +County and PUMA "G0600790, G06007901" +County and PUMA "G0600790, G06007902" +County and PUMA "G0600810, G06008101" +County and PUMA "G0600810, G06008102" +County and PUMA "G0600810, G06008103" +County and PUMA "G0600810, G06008104" +County and PUMA "G0600810, G06008105" +County and PUMA "G0600810, G06008106" +County and PUMA "G0600830, G06008301" +County and PUMA "G0600830, G06008302" +County and PUMA "G0600830, G06008303" +County and PUMA "G0600850, G06008501" +County and PUMA "G0600850, G06008502" +County and PUMA "G0600850, G06008503" +County and PUMA "G0600850, G06008504" +County and PUMA "G0600850, G06008505" +County and PUMA "G0600850, G06008506" +County and PUMA "G0600850, G06008507" +County and PUMA "G0600850, G06008508" +County and PUMA "G0600850, G06008509" +County and PUMA "G0600850, G06008510" +County and PUMA "G0600850, G06008511" +County and PUMA "G0600850, G06008512" +County and PUMA "G0600850, G06008513" +County and PUMA "G0600850, G06008514" +County and PUMA "G0600870, G06008701" +County and PUMA "G0600870, G06008702" +County and PUMA "G0600890, G06008900" +County and PUMA "G0600910, G06005700" +County and PUMA "G0600930, G06001500" +County and PUMA "G0600950, G06009501" +County and PUMA "G0600950, G06009502" +County and PUMA "G0600950, G06009503" +County and PUMA "G0600970, G06009701" +County and PUMA "G0600970, G06009702" +County and PUMA "G0600970, G06009703" +County and PUMA "G0600990, G06009901" +County and PUMA "G0600990, G06009902" +County and PUMA "G0600990, G06009903" +County and PUMA "G0600990, G06009904" +County and PUMA "G0601010, G06010100" +County and PUMA "G0601030, G06001100" +County and PUMA "G0601050, G06001100" +County and PUMA "G0601070, G06010701" +County and PUMA "G0601070, G06010702" +County and PUMA "G0601070, G06010703" +County and PUMA "G0601090, G06000300" +County and PUMA "G0601110, G06011101" +County and PUMA "G0601110, G06011102" +County and PUMA "G0601110, G06011103" +County and PUMA "G0601110, G06011104" +County and PUMA "G0601110, G06011105" +County and PUMA "G0601110, G06011106" +County and PUMA "G0601130, G06011300" +County and PUMA "G0601150, G06010100" +County and PUMA "G0800010, G08000804" +County and PUMA "G0800010, G08000805" +County and PUMA "G0800010, G08000806" +County and PUMA "G0800010, G08000807" +County and PUMA "G0800010, G08000809" +County and PUMA "G0800010, G08000810" +County and PUMA "G0800010, G08000817" +County and PUMA "G0800010, G08000824" +County and PUMA "G0800030, G08000800" +County and PUMA "G0800050, G08000808" +County and PUMA "G0800050, G08000809" +County and PUMA "G0800050, G08000810" +County and PUMA "G0800050, G08000811" +County and PUMA "G0800050, G08000815" +County and PUMA "G0800050, G08000820" +County and PUMA "G0800050, G08000824" +County and PUMA "G0800070, G08000900" +County and PUMA "G0800090, G08000800" +County and PUMA "G0800110, G08000100" +County and PUMA "G0800130, G08000801" +County and PUMA "G0800130, G08000802" +County and PUMA "G0800130, G08000803" +County and PUMA "G0800130, G08000804" +County and PUMA "G0800140, G08000804" +County and PUMA "G0800140, G08000805" +County and PUMA "G0800150, G08000600" +County and PUMA "G0800170, G08000100" +County and PUMA "G0800190, G08000801" +County and PUMA "G0800210, G08000800" +County and PUMA "G0800230, G08000800" +County and PUMA "G0800250, G08000100" +County and PUMA "G0800270, G08000600" +County and PUMA "G0800290, G08001002" +County and PUMA "G0800310, G08000812" +County and PUMA "G0800310, G08000813" +County and PUMA "G0800310, G08000814" +County and PUMA "G0800310, G08000815" +County and PUMA "G0800310, G08000816" +County and PUMA "G0800330, G08000900" +County and PUMA "G0800350, G08000821" +County and PUMA "G0800350, G08000822" +County and PUMA "G0800350, G08000823" +County and PUMA "G0800370, G08000400" +County and PUMA "G0800390, G08000100" +County and PUMA "G0800390, G08000823" +County and PUMA "G0800410, G08004101" +County and PUMA "G0800410, G08004102" +County and PUMA "G0800410, G08004103" +County and PUMA "G0800410, G08004104" +County and PUMA "G0800410, G08004105" +County and PUMA "G0800410, G08004106" +County and PUMA "G0800430, G08000600" +County and PUMA "G0800450, G08000200" +County and PUMA "G0800470, G08000801" +County and PUMA "G0800490, G08000400" +County and PUMA "G0800510, G08000900" +County and PUMA "G0800530, G08000900" +County and PUMA "G0800550, G08000600" +County and PUMA "G0800570, G08000400" +County and PUMA "G0800590, G08000801" +County and PUMA "G0800590, G08000804" +County and PUMA "G0800590, G08000805" +County and PUMA "G0800590, G08000817" +County and PUMA "G0800590, G08000818" +County and PUMA "G0800590, G08000819" +County and PUMA "G0800590, G08000820" +County and PUMA "G0800590, G08000821" +County and PUMA "G0800610, G08000100" +County and PUMA "G0800630, G08000100" +County and PUMA "G0800650, G08000600" +County and PUMA "G0800670, G08000900" +County and PUMA "G0800690, G08000102" +County and PUMA "G0800690, G08000103" +County and PUMA "G0800710, G08000800" +County and PUMA "G0800730, G08000100" +County and PUMA "G0800750, G08000100" +County and PUMA "G0800770, G08001001" +County and PUMA "G0800770, G08001002" +County and PUMA "G0800790, G08000800" +County and PUMA "G0800810, G08000200" +County and PUMA "G0800830, G08000900" +County and PUMA "G0800850, G08001002" +County and PUMA "G0800870, G08000100" +County and PUMA "G0800890, G08000800" +County and PUMA "G0800910, G08001002" +County and PUMA "G0800930, G08000600" +County and PUMA "G0800950, G08000100" +County and PUMA "G0800970, G08000400" +County and PUMA "G0800990, G08000800" +County and PUMA "G0801010, G08000600" +County and PUMA "G0801010, G08000700" +County and PUMA "G0801010, G08000800" +County and PUMA "G0801030, G08000200" +County and PUMA "G0801050, G08000800" +County and PUMA "G0801070, G08000200" +County and PUMA "G0801090, G08000800" +County and PUMA "G0801110, G08000900" +County and PUMA "G0801130, G08001002" +County and PUMA "G0801150, G08000100" +County and PUMA "G0801170, G08000400" +County and PUMA "G0801190, G08004101" +County and PUMA "G0801210, G08000100" +County and PUMA "G0801230, G08000100" +County and PUMA "G0801230, G08000300" +County and PUMA "G0801230, G08000802" +County and PUMA "G0801230, G08000824" +County and PUMA "G0801250, G08000100" +County and PUMA "G0900010, G09000100" +County and PUMA "G0900010, G09000101" +County and PUMA "G0900010, G09000102" +County and PUMA "G0900010, G09000103" +County and PUMA "G0900010, G09000104" +County and PUMA "G0900010, G09000105" +County and PUMA "G0900030, G09000300" +County and PUMA "G0900030, G09000301" +County and PUMA "G0900030, G09000302" +County and PUMA "G0900030, G09000303" +County and PUMA "G0900030, G09000304" +County and PUMA "G0900030, G09000305" +County and PUMA "G0900030, G09000306" +County and PUMA "G0900050, G09000500" +County and PUMA "G0900070, G09000700" +County and PUMA "G0900090, G09000900" +County and PUMA "G0900090, G09000901" +County and PUMA "G0900090, G09000902" +County and PUMA "G0900090, G09000903" +County and PUMA "G0900090, G09000904" +County and PUMA "G0900090, G09000905" +County and PUMA "G0900090, G09000906" +County and PUMA "G0900110, G09001100" +County and PUMA "G0900110, G09001101" +County and PUMA "G0900130, G09001300" +County and PUMA "G0900150, G09001500" +County and PUMA "G1000010, G10000200" +County and PUMA "G1000030, G10000101" +County and PUMA "G1000030, G10000102" +County and PUMA "G1000030, G10000103" +County and PUMA "G1000030, G10000104" +County and PUMA "G1000050, G10000300" +County and PUMA "G1100010, G11000101" +County and PUMA "G1100010, G11000102" +County and PUMA "G1100010, G11000103" +County and PUMA "G1100010, G11000104" +County and PUMA "G1100010, G11000105" +County and PUMA "G1200010, G12000101" +County and PUMA "G1200010, G12000102" +County and PUMA "G1200030, G12008900" +County and PUMA "G1200050, G12000500" +County and PUMA "G1200070, G12002300" +County and PUMA "G1200090, G12000901" +County and PUMA "G1200090, G12000902" +County and PUMA "G1200090, G12000903" +County and PUMA "G1200090, G12000904" +County and PUMA "G1200110, G12001101" +County and PUMA "G1200110, G12001102" +County and PUMA "G1200110, G12001103" +County and PUMA "G1200110, G12001104" +County and PUMA "G1200110, G12001105" +County and PUMA "G1200110, G12001106" +County and PUMA "G1200110, G12001107" +County and PUMA "G1200110, G12001108" +County and PUMA "G1200110, G12001109" +County and PUMA "G1200110, G12001110" +County and PUMA "G1200110, G12001111" +County and PUMA "G1200110, G12001112" +County and PUMA "G1200110, G12001113" +County and PUMA "G1200110, G12001114" +County and PUMA "G1200130, G12006300" +County and PUMA "G1200150, G12001500" +County and PUMA "G1200170, G12001701" +County and PUMA "G1200190, G12001900" +County and PUMA "G1200210, G12002101" +County and PUMA "G1200210, G12002102" +County and PUMA "G1200210, G12002103" +County and PUMA "G1200230, G12002300" +County and PUMA "G1200270, G12002700" +County and PUMA "G1200290, G12002300" +County and PUMA "G1200310, G12003101" +County and PUMA "G1200310, G12003102" +County and PUMA "G1200310, G12003103" +County and PUMA "G1200310, G12003104" +County and PUMA "G1200310, G12003105" +County and PUMA "G1200310, G12003106" +County and PUMA "G1200310, G12003107" +County and PUMA "G1200330, G12003301" +County and PUMA "G1200330, G12003302" +County and PUMA "G1200350, G12003500" +County and PUMA "G1200370, G12006300" +County and PUMA "G1200390, G12006300" +County and PUMA "G1200410, G12002300" +County and PUMA "G1200430, G12009300" +County and PUMA "G1200450, G12006300" +County and PUMA "G1200470, G12012100" +County and PUMA "G1200490, G12002700" +County and PUMA "G1200510, G12009300" +County and PUMA "G1200530, G12005301" +County and PUMA "G1200550, G12002700" +County and PUMA "G1200550, G12009300" +County and PUMA "G1200570, G12005701" +County and PUMA "G1200570, G12005702" +County and PUMA "G1200570, G12005703" +County and PUMA "G1200570, G12005704" +County and PUMA "G1200570, G12005705" +County and PUMA "G1200570, G12005706" +County and PUMA "G1200570, G12005707" +County and PUMA "G1200570, G12005708" +County and PUMA "G1200590, G12000500" +County and PUMA "G1200610, G12006100" +County and PUMA "G1200630, G12006300" +County and PUMA "G1200650, G12006300" +County and PUMA "G1200670, G12012100" +County and PUMA "G1200690, G12006901" +County and PUMA "G1200690, G12006902" +County and PUMA "G1200690, G12006903" +County and PUMA "G1200710, G12007101" +County and PUMA "G1200710, G12007102" +County and PUMA "G1200710, G12007103" +County and PUMA "G1200710, G12007104" +County and PUMA "G1200710, G12007105" +County and PUMA "G1200730, G12007300" +County and PUMA "G1200730, G12007301" +County and PUMA "G1200750, G12002300" +County and PUMA "G1200770, G12006300" +County and PUMA "G1200790, G12012100" +County and PUMA "G1200810, G12008101" +County and PUMA "G1200810, G12008102" +County and PUMA "G1200810, G12008103" +County and PUMA "G1200830, G12008301" +County and PUMA "G1200830, G12008302" +County and PUMA "G1200830, G12008303" +County and PUMA "G1200850, G12008500" +County and PUMA "G1200860, G12008601" +County and PUMA "G1200860, G12008602" +County and PUMA "G1200860, G12008603" +County and PUMA "G1200860, G12008604" +County and PUMA "G1200860, G12008605" +County and PUMA "G1200860, G12008606" +County and PUMA "G1200860, G12008607" +County and PUMA "G1200860, G12008608" +County and PUMA "G1200860, G12008609" +County and PUMA "G1200860, G12008610" +County and PUMA "G1200860, G12008611" +County and PUMA "G1200860, G12008612" +County and PUMA "G1200860, G12008613" +County and PUMA "G1200860, G12008614" +County and PUMA "G1200860, G12008615" +County and PUMA "G1200860, G12008616" +County and PUMA "G1200860, G12008617" +County and PUMA "G1200860, G12008618" +County and PUMA "G1200860, G12008619" +County and PUMA "G1200860, G12008620" +County and PUMA "G1200860, G12008621" +County and PUMA "G1200860, G12008622" +County and PUMA "G1200860, G12008623" +County and PUMA "G1200860, G12008624" +County and PUMA "G1200860, G12008700" +County and PUMA "G1200870, G12008700" +County and PUMA "G1200890, G12008900" +County and PUMA "G1200910, G12009100" +County and PUMA "G1200930, G12009300" +County and PUMA "G1200950, G12009501" +County and PUMA "G1200950, G12009502" +County and PUMA "G1200950, G12009503" +County and PUMA "G1200950, G12009504" +County and PUMA "G1200950, G12009505" +County and PUMA "G1200950, G12009506" +County and PUMA "G1200950, G12009507" +County and PUMA "G1200950, G12009508" +County and PUMA "G1200950, G12009509" +County and PUMA "G1200950, G12009510" +County and PUMA "G1200970, G12009701" +County and PUMA "G1200970, G12009702" +County and PUMA "G1200990, G12009901" +County and PUMA "G1200990, G12009902" +County and PUMA "G1200990, G12009903" +County and PUMA "G1200990, G12009904" +County and PUMA "G1200990, G12009905" +County and PUMA "G1200990, G12009906" +County and PUMA "G1200990, G12009907" +County and PUMA "G1200990, G12009908" +County and PUMA "G1200990, G12009909" +County and PUMA "G1200990, G12009910" +County and PUMA "G1200990, G12009911" +County and PUMA "G1201010, G12010101" +County and PUMA "G1201010, G12010102" +County and PUMA "G1201010, G12010103" +County and PUMA "G1201010, G12010104" +County and PUMA "G1201030, G12010301" +County and PUMA "G1201030, G12010302" +County and PUMA "G1201030, G12010303" +County and PUMA "G1201030, G12010304" +County and PUMA "G1201030, G12010305" +County and PUMA "G1201030, G12010306" +County and PUMA "G1201030, G12010307" +County and PUMA "G1201030, G12010308" +County and PUMA "G1201050, G12010501" +County and PUMA "G1201050, G12010502" +County and PUMA "G1201050, G12010503" +County and PUMA "G1201050, G12010504" +County and PUMA "G1201070, G12010700" +County and PUMA "G1201090, G12010700" +County and PUMA "G1201090, G12010900" +County and PUMA "G1201110, G12011101" +County and PUMA "G1201110, G12011102" +County and PUMA "G1201130, G12011300" +County and PUMA "G1201150, G12011501" +County and PUMA "G1201150, G12011502" +County and PUMA "G1201150, G12011503" +County and PUMA "G1201170, G12011701" +County and PUMA "G1201170, G12011702" +County and PUMA "G1201170, G12011703" +County and PUMA "G1201170, G12011704" +County and PUMA "G1201190, G12006902" +County and PUMA "G1201190, G12006903" +County and PUMA "G1201210, G12012100" +County and PUMA "G1201230, G12012100" +County and PUMA "G1201250, G12002300" +County and PUMA "G1201270, G12003500" +County and PUMA "G1201270, G12012701" +County and PUMA "G1201270, G12012702" +County and PUMA "G1201270, G12012703" +County and PUMA "G1201270, G12012704" +County and PUMA "G1201290, G12006300" +County and PUMA "G1201310, G12000500" +County and PUMA "G1201330, G12000500" +County and PUMA "G1300010, G13001200" +County and PUMA "G1300030, G13000500" +County and PUMA "G1300050, G13000500" +County and PUMA "G1300070, G13001100" +County and PUMA "G1300090, G13001600" +County and PUMA "G1300110, G13003500" +County and PUMA "G1300130, G13003800" +County and PUMA "G1300150, G13002900" +County and PUMA "G1300170, G13000700" +County and PUMA "G1300190, G13000700" +County and PUMA "G1300210, G13001400" +County and PUMA "G1300230, G13001300" +County and PUMA "G1300250, G13000500" +County and PUMA "G1300270, G13000700" +County and PUMA "G1300290, G13000200" +County and PUMA "G1300310, G13000300" +County and PUMA "G1300330, G13004200" +County and PUMA "G1300350, G13001900" +County and PUMA "G1300370, G13001100" +County and PUMA "G1300390, G13000100" +County and PUMA "G1300430, G13001300" +County and PUMA "G1300450, G13002300" +County and PUMA "G1300470, G13002600" +County and PUMA "G1300490, G13000500" +County and PUMA "G1300510, G13000401" +County and PUMA "G1300510, G13000402" +County and PUMA "G1300530, G13001700" +County and PUMA "G1300550, G13002600" +County and PUMA "G1300570, G13003101" +County and PUMA "G1300570, G13003102" +County and PUMA "G1300590, G13003600" +County and PUMA "G1300610, G13001800" +County and PUMA "G1300630, G13005001" +County and PUMA "G1300630, G13005002" +County and PUMA "G1300650, G13000500" +County and PUMA "G1300670, G13003001" +County and PUMA "G1300670, G13003002" +County and PUMA "G1300670, G13003003" +County and PUMA "G1300670, G13003004" +County and PUMA "G1300670, G13003005" +County and PUMA "G1300690, G13000500" +County and PUMA "G1300710, G13000800" +County and PUMA "G1300730, G13004100" +County and PUMA "G1300750, G13000700" +County and PUMA "G1300770, G13002100" +County and PUMA "G1300790, G13001600" +County and PUMA "G1300810, G13001800" +County and PUMA "G1300830, G13002600" +County and PUMA "G1300850, G13003200" +County and PUMA "G1300870, G13001100" +County and PUMA "G1300890, G13001007" +County and PUMA "G1300890, G13001008" +County and PUMA "G1300890, G13002001" +County and PUMA "G1300890, G13002002" +County and PUMA "G1300890, G13002003" +County and PUMA "G1300890, G13002004" +County and PUMA "G1300910, G13001300" +County and PUMA "G1300930, G13001800" +County and PUMA "G1300950, G13000900" +County and PUMA "G1300970, G13004400" +County and PUMA "G1300990, G13001100" +County and PUMA "G1301010, G13000500" +County and PUMA "G1301030, G13000300" +County and PUMA "G1301050, G13003700" +County and PUMA "G1301070, G13001300" +County and PUMA "G1301090, G13001200" +County and PUMA "G1301110, G13002800" +County and PUMA "G1301130, G13002400" +County and PUMA "G1301150, G13002500" +County and PUMA "G1301170, G13003300" +County and PUMA "G1301190, G13003500" +County and PUMA "G1301210, G13001001" +County and PUMA "G1301210, G13001002" +County and PUMA "G1301210, G13001003" +County and PUMA "G1301210, G13001004" +County and PUMA "G1301210, G13001005" +County and PUMA "G1301210, G13001006" +County and PUMA "G1301210, G13001007" +County and PUMA "G1301210, G13004600" +County and PUMA "G1301230, G13002800" +County and PUMA "G1301250, G13004200" +County and PUMA "G1301270, G13000100" +County and PUMA "G1301290, G13002800" +County and PUMA "G1301310, G13001100" +County and PUMA "G1301330, G13003700" +County and PUMA "G1301350, G13004001" +County and PUMA "G1301350, G13004002" +County and PUMA "G1301350, G13004003" +County and PUMA "G1301350, G13004004" +County and PUMA "G1301350, G13004005" +County and PUMA "G1301350, G13004006" +County and PUMA "G1301370, G13003500" +County and PUMA "G1301390, G13003400" +County and PUMA "G1301410, G13004200" +County and PUMA "G1301430, G13002500" +County and PUMA "G1301450, G13001800" +County and PUMA "G1301470, G13003500" +County and PUMA "G1301490, G13002200" +County and PUMA "G1301510, G13006001" +County and PUMA "G1301510, G13006002" +County and PUMA "G1301530, G13001500" +County and PUMA "G1301550, G13000700" +County and PUMA "G1301570, G13003800" +County and PUMA "G1301590, G13003900" +County and PUMA "G1301610, G13001200" +County and PUMA "G1301630, G13004200" +County and PUMA "G1301650, G13004200" +County and PUMA "G1301670, G13001300" +County and PUMA "G1301690, G13001600" +County and PUMA "G1301710, G13001900" +County and PUMA "G1301730, G13000500" +County and PUMA "G1301750, G13001300" +County and PUMA "G1301770, G13000900" +County and PUMA "G1301790, G13000200" +County and PUMA "G1301810, G13004200" +County and PUMA "G1301830, G13000200" +County and PUMA "G1301850, G13000600" +County and PUMA "G1301870, G13003200" +County and PUMA "G1301890, G13004200" +County and PUMA "G1301910, G13000100" +County and PUMA "G1301930, G13001800" +County and PUMA "G1301950, G13003700" +County and PUMA "G1301970, G13001800" +County and PUMA "G1301990, G13002200" +County and PUMA "G1302010, G13001100" +County and PUMA "G1302050, G13001100" +County and PUMA "G1302070, G13001600" +County and PUMA "G1302090, G13001200" +County and PUMA "G1302110, G13003900" +County and PUMA "G1302130, G13002800" +County and PUMA "G1302150, G13001700" +County and PUMA "G1302170, G13004300" +County and PUMA "G1302190, G13003700" +County and PUMA "G1302210, G13003700" +County and PUMA "G1302230, G13004500" +County and PUMA "G1302250, G13001600" +County and PUMA "G1302270, G13002800" +County and PUMA "G1302290, G13000500" +County and PUMA "G1302310, G13001900" +County and PUMA "G1302330, G13002500" +County and PUMA "G1302350, G13001500" +County and PUMA "G1302370, G13001600" +County and PUMA "G1302390, G13001800" +County and PUMA "G1302410, G13003200" +County and PUMA "G1302430, G13001800" +County and PUMA "G1302450, G13004000" +County and PUMA "G1302470, G13004300" +County and PUMA "G1302490, G13001800" +County and PUMA "G1302510, G13000300" +County and PUMA "G1302530, G13001100" +County and PUMA "G1302550, G13001900" +County and PUMA "G1302570, G13003500" +County and PUMA "G1302590, G13001800" +County and PUMA "G1302610, G13001800" +County and PUMA "G1302630, G13001800" +County and PUMA "G1302650, G13004200" +County and PUMA "G1302670, G13001200" +County and PUMA "G1302690, G13001800" +County and PUMA "G1302710, G13001200" +County and PUMA "G1302730, G13001100" +County and PUMA "G1302750, G13000800" +County and PUMA "G1302770, G13000700" +County and PUMA "G1302790, G13001200" +County and PUMA "G1302810, G13003200" +County and PUMA "G1302830, G13001300" +County and PUMA "G1302850, G13002200" +County and PUMA "G1302870, G13000700" +County and PUMA "G1302890, G13001600" +County and PUMA "G1302910, G13003200" +County and PUMA "G1302930, G13001900" +County and PUMA "G1302950, G13002600" +County and PUMA "G1302970, G13003900" +County and PUMA "G1302990, G13000500" +County and PUMA "G1303010, G13004200" +County and PUMA "G1303030, G13004200" +County and PUMA "G1303050, G13001200" +County and PUMA "G1303070, G13001800" +County and PUMA "G1303090, G13001200" +County and PUMA "G1303110, G13003200" +County and PUMA "G1303130, G13002700" +County and PUMA "G1303150, G13001300" +County and PUMA "G1303170, G13004200" +County and PUMA "G1303190, G13001600" +County and PUMA "G1303210, G13000800" +County and PUMA "G1500010, G15000200" +County and PUMA "G1500030, G15000301" +County and PUMA "G1500030, G15000302" +County and PUMA "G1500030, G15000303" +County and PUMA "G1500030, G15000304" +County and PUMA "G1500030, G15000305" +County and PUMA "G1500030, G15000306" +County and PUMA "G1500030, G15000307" +County and PUMA "G1500030, G15000308" +County and PUMA "G1500050, G15000100" +County and PUMA "G1500070, G15000100" +County and PUMA "G1500090, G15000100" +County and PUMA "G1600010, G16000400" +County and PUMA "G1600010, G16000600" +County and PUMA "G1600010, G16000701" +County and PUMA "G1600010, G16000702" +County and PUMA "G1600010, G16000800" +County and PUMA "G1600030, G16000300" +County and PUMA "G1600050, G16001300" +County and PUMA "G1600070, G16001300" +County and PUMA "G1600090, G16000100" +County and PUMA "G1600110, G16001100" +County and PUMA "G1600110, G16001300" +County and PUMA "G1600130, G16001000" +County and PUMA "G1600150, G16000300" +County and PUMA "G1600170, G16000100" +County and PUMA "G1600190, G16001200" +County and PUMA "G1600210, G16000100" +County and PUMA "G1600230, G16000300" +County and PUMA "G1600250, G16001000" +County and PUMA "G1600270, G16000400" +County and PUMA "G1600270, G16000500" +County and PUMA "G1600270, G16000600" +County and PUMA "G1600290, G16001300" +County and PUMA "G1600310, G16000900" +County and PUMA "G1600330, G16000300" +County and PUMA "G1600350, G16000300" +County and PUMA "G1600370, G16000300" +County and PUMA "G1600390, G16001000" +County and PUMA "G1600410, G16001300" +County and PUMA "G1600430, G16001100" +County and PUMA "G1600450, G16000400" +County and PUMA "G1600470, G16001000" +County and PUMA "G1600490, G16000300" +County and PUMA "G1600510, G16001100" +County and PUMA "G1600530, G16001000" +County and PUMA "G1600550, G16000100" +County and PUMA "G1600550, G16000200" +County and PUMA "G1600570, G16000100" +County and PUMA "G1600590, G16000300" +County and PUMA "G1600610, G16000300" +County and PUMA "G1600630, G16001000" +County and PUMA "G1600650, G16001100" +County and PUMA "G1600670, G16001000" +County and PUMA "G1600690, G16000300" +County and PUMA "G1600710, G16001300" +County and PUMA "G1600730, G16000500" +County and PUMA "G1600750, G16000400" +County and PUMA "G1600770, G16001300" +County and PUMA "G1600790, G16000100" +County and PUMA "G1600810, G16001100" +County and PUMA "G1600830, G16000900" +County and PUMA "G1600850, G16000300" +County and PUMA "G1600870, G16000400" +County and PUMA "G1700010, G17000300" +County and PUMA "G1700030, G17000800" +County and PUMA "G1700050, G17000501" +County and PUMA "G1700070, G17002901" +County and PUMA "G1700090, G17000300" +County and PUMA "G1700110, G17002501" +County and PUMA "G1700130, G17000401" +County and PUMA "G1700150, G17000104" +County and PUMA "G1700170, G17000401" +County and PUMA "G1700190, G17002100" +County and PUMA "G1700210, G17001602" +County and PUMA "G1700230, G17000700" +County and PUMA "G1700250, G17000700" +County and PUMA "G1700270, G17000501" +County and PUMA "G1700290, G17000600" +County and PUMA "G1700310, G17003401" +County and PUMA "G1700310, G17003407" +County and PUMA "G1700310, G17003408" +County and PUMA "G1700310, G17003409" +County and PUMA "G1700310, G17003410" +County and PUMA "G1700310, G17003411" +County and PUMA "G1700310, G17003412" +County and PUMA "G1700310, G17003413" +County and PUMA "G1700310, G17003414" +County and PUMA "G1700310, G17003415" +County and PUMA "G1700310, G17003416" +County and PUMA "G1700310, G17003417" +County and PUMA "G1700310, G17003418" +County and PUMA "G1700310, G17003419" +County and PUMA "G1700310, G17003420" +County and PUMA "G1700310, G17003421" +County and PUMA "G1700310, G17003422" +County and PUMA "G1700310, G17003501" +County and PUMA "G1700310, G17003502" +County and PUMA "G1700310, G17003503" +County and PUMA "G1700310, G17003504" +County and PUMA "G1700310, G17003520" +County and PUMA "G1700310, G17003521" +County and PUMA "G1700310, G17003522" +County and PUMA "G1700310, G17003523" +County and PUMA "G1700310, G17003524" +County and PUMA "G1700310, G17003525" +County and PUMA "G1700310, G17003526" +County and PUMA "G1700310, G17003527" +County and PUMA "G1700310, G17003528" +County and PUMA "G1700310, G17003529" +County and PUMA "G1700310, G17003530" +County and PUMA "G1700310, G17003531" +County and PUMA "G1700310, G17003532" +County and PUMA "G1700330, G17000700" +County and PUMA "G1700350, G17000600" +County and PUMA "G1700370, G17002601" +County and PUMA "G1700390, G17001602" +County and PUMA "G1700410, G17000600" +County and PUMA "G1700430, G17003202" +County and PUMA "G1700430, G17003203" +County and PUMA "G1700430, G17003204" +County and PUMA "G1700430, G17003205" +County and PUMA "G1700430, G17003207" +County and PUMA "G1700430, G17003208" +County and PUMA "G1700430, G17003209" +County and PUMA "G1700450, G17000600" +County and PUMA "G1700470, G17000800" +County and PUMA "G1700490, G17000501" +County and PUMA "G1700510, G17000501" +County and PUMA "G1700530, G17002200" +County and PUMA "G1700550, G17000900" +County and PUMA "G1700570, G17000202" +County and PUMA "G1700590, G17000800" +County and PUMA "G1700610, G17000401" +County and PUMA "G1700630, G17003700" +County and PUMA "G1700650, G17000800" +County and PUMA "G1700670, G17000202" +County and PUMA "G1700690, G17000800" +County and PUMA "G1700710, G17000202" +County and PUMA "G1700730, G17000202" +County and PUMA "G1700750, G17002200" +County and PUMA "G1700770, G17000900" +County and PUMA "G1700790, G17000700" +County and PUMA "G1700810, G17001001" +County and PUMA "G1700830, G17000401" +County and PUMA "G1700850, G17000104" +County and PUMA "G1700870, G17000800" +County and PUMA "G1700890, G17003005" +County and PUMA "G1700890, G17003007" +County and PUMA "G1700890, G17003008" +County and PUMA "G1700890, G17003009" +County and PUMA "G1700910, G17002300" +County and PUMA "G1700930, G17003700" +County and PUMA "G1700950, G17002501" +County and PUMA "G1700970, G17003306" +County and PUMA "G1700970, G17003307" +County and PUMA "G1700970, G17003308" +County and PUMA "G1700970, G17003309" +County and PUMA "G1700970, G17003310" +County and PUMA "G1700990, G17002400" +County and PUMA "G1701010, G17000700" +County and PUMA "G1701030, G17000104" +County and PUMA "G1701050, G17002200" +County and PUMA "G1701070, G17001602" +County and PUMA "G1701090, G17000202" +County and PUMA "G1701110, G17003601" +County and PUMA "G1701110, G17003602" +County and PUMA "G1701130, G17002000" +County and PUMA "G1701150, G17001500" +County and PUMA "G1701170, G17000401" +County and PUMA "G1701190, G17001204" +County and PUMA "G1701190, G17001205" +County and PUMA "G1701210, G17001001" +County and PUMA "G1701230, G17002501" +County and PUMA "G1701250, G17000300" +County and PUMA "G1701270, G17000800" +County and PUMA "G1701290, G17001602" +County and PUMA "G1701310, G17000202" +County and PUMA "G1701330, G17001001" +County and PUMA "G1701350, G17000501" +County and PUMA "G1701370, G17000401" +County and PUMA "G1701390, G17001602" +County and PUMA "G1701410, G17002700" +County and PUMA "G1701430, G17001701" +County and PUMA "G1701450, G17000900" +County and PUMA "G1701470, G17001602" +County and PUMA "G1701490, G17000300" +County and PUMA "G1701510, G17000800" +County and PUMA "G1701530, G17000800" +County and PUMA "G1701550, G17002501" +County and PUMA "G1701570, G17001001" +County and PUMA "G1701590, G17000700" +County and PUMA "G1701610, G17000105" +County and PUMA "G1701630, G17001104" +County and PUMA "G1701630, G17001105" +County and PUMA "G1701650, G17000800" +County and PUMA "G1701670, G17001300" +County and PUMA "G1701690, G17000300" +County and PUMA "G1701710, G17000401" +County and PUMA "G1701730, G17001602" +County and PUMA "G1701750, G17002501" +County and PUMA "G1701770, G17002700" +County and PUMA "G1701790, G17001900" +County and PUMA "G1701810, G17000800" +County and PUMA "G1701830, G17002200" +County and PUMA "G1701850, G17000800" +County and PUMA "G1701870, G17000202" +County and PUMA "G1701890, G17001001" +County and PUMA "G1701910, G17000700" +County and PUMA "G1701930, G17000800" +County and PUMA "G1701950, G17000104" +County and PUMA "G1701970, G17003102" +County and PUMA "G1701970, G17003105" +County and PUMA "G1701970, G17003106" +County and PUMA "G1701970, G17003107" +County and PUMA "G1701970, G17003108" +County and PUMA "G1701990, G17000900" +County and PUMA "G1702010, G17002801" +County and PUMA "G1702010, G17002901" +County and PUMA "G1702030, G17002501" +County and PUMA "G1800010, G18000900" +County and PUMA "G1800030, G18001001" +County and PUMA "G1800030, G18001002" +County and PUMA "G1800030, G18001003" +County and PUMA "G1800050, G18002900" +County and PUMA "G1800070, G18001100" +County and PUMA "G1800090, G18001500" +County and PUMA "G1800110, G18001801" +County and PUMA "G1800130, G18002100" +County and PUMA "G1800150, G18001100" +County and PUMA "G1800170, G18001300" +County and PUMA "G1800190, G18003600" +County and PUMA "G1800210, G18001600" +County and PUMA "G1800230, G18001100" +County and PUMA "G1800250, G18003400" +County and PUMA "G1800270, G18002700" +County and PUMA "G1800290, G18003100" +County and PUMA "G1800310, G18003000" +County and PUMA "G1800330, G18000600" +County and PUMA "G1800350, G18002000" +County and PUMA "G1800370, G18003400" +County and PUMA "G1800390, G18000500" +County and PUMA "G1800410, G18002600" +County and PUMA "G1800430, G18003500" +County and PUMA "G1800450, G18001600" +County and PUMA "G1800470, G18003100" +County and PUMA "G1800490, G18000700" +County and PUMA "G1800510, G18003200" +County and PUMA "G1800530, G18001400" +County and PUMA "G1800550, G18002700" +County and PUMA "G1800570, G18001801" +County and PUMA "G1800570, G18001802" +County and PUMA "G1800570, G18001803" +County and PUMA "G1800590, G18002500" +County and PUMA "G1800610, G18003500" +County and PUMA "G1800630, G18002200" +County and PUMA "G1800650, G18001500" +County and PUMA "G1800670, G18001300" +County and PUMA "G1800690, G18000900" +County and PUMA "G1800710, G18002900" +County and PUMA "G1800730, G18000700" +County and PUMA "G1800750, G18001500" +County and PUMA "G1800770, G18003000" +County and PUMA "G1800790, G18003000" +County and PUMA "G1800810, G18002400" +County and PUMA "G1800830, G18003400" +County and PUMA "G1800850, G18000800" +County and PUMA "G1800870, G18000600" +County and PUMA "G1800890, G18000101" +County and PUMA "G1800890, G18000102" +County and PUMA "G1800890, G18000103" +County and PUMA "G1800890, G18000104" +County and PUMA "G1800910, G18000300" +County and PUMA "G1800930, G18002700" +County and PUMA "G1800950, G18001900" +County and PUMA "G1800970, G18002301" +County and PUMA "G1800970, G18002302" +County and PUMA "G1800970, G18002303" +County and PUMA "G1800970, G18002304" +County and PUMA "G1800970, G18002305" +County and PUMA "G1800970, G18002306" +County and PUMA "G1800970, G18002307" +County and PUMA "G1800990, G18000800" +County and PUMA "G1801010, G18002700" +County and PUMA "G1801030, G18001400" +County and PUMA "G1801050, G18002800" +County and PUMA "G1801070, G18001100" +County and PUMA "G1801090, G18002100" +County and PUMA "G1801110, G18000700" +County and PUMA "G1801130, G18000600" +County and PUMA "G1801150, G18003100" +County and PUMA "G1801170, G18002700" +County and PUMA "G1801190, G18002700" +County and PUMA "G1801210, G18001600" +County and PUMA "G1801230, G18003400" +County and PUMA "G1801250, G18003400" +County and PUMA "G1801270, G18000200" +County and PUMA "G1801290, G18003200" +County and PUMA "G1801310, G18000700" +County and PUMA "G1801330, G18002100" +County and PUMA "G1801350, G18001500" +County and PUMA "G1801370, G18003100" +County and PUMA "G1801390, G18002600" +County and PUMA "G1801410, G18000401" +County and PUMA "G1801410, G18000402" +County and PUMA "G1801430, G18003000" +County and PUMA "G1801450, G18002500" +County and PUMA "G1801470, G18003400" +County and PUMA "G1801490, G18000700" +County and PUMA "G1801510, G18000600" +County and PUMA "G1801530, G18001600" +County and PUMA "G1801550, G18003100" +County and PUMA "G1801570, G18001200" +County and PUMA "G1801590, G18001300" +County and PUMA "G1801610, G18002600" +County and PUMA "G1801630, G18003300" +County and PUMA "G1801650, G18001600" +County and PUMA "G1801670, G18001700" +County and PUMA "G1801690, G18001400" +County and PUMA "G1801710, G18001600" +County and PUMA "G1801730, G18003200" +County and PUMA "G1801750, G18003500" +County and PUMA "G1801770, G18002600" +County and PUMA "G1801790, G18000900" +County and PUMA "G1801810, G18001100" +County and PUMA "G1801830, G18000900" +County and PUMA "G1900010, G19001800" +County and PUMA "G1900030, G19001800" +County and PUMA "G1900050, G19000400" +County and PUMA "G1900070, G19001800" +County and PUMA "G1900090, G19001800" +County and PUMA "G1900110, G19001200" +County and PUMA "G1900130, G19000500" +County and PUMA "G1900150, G19001300" +County and PUMA "G1900170, G19000400" +County and PUMA "G1900190, G19000700" +County and PUMA "G1900210, G19001900" +County and PUMA "G1900230, G19000600" +County and PUMA "G1900250, G19001900" +County and PUMA "G1900270, G19001900" +County and PUMA "G1900290, G19002100" +County and PUMA "G1900310, G19000800" +County and PUMA "G1900330, G19000200" +County and PUMA "G1900350, G19001900" +County and PUMA "G1900370, G19000400" +County and PUMA "G1900390, G19001800" +County and PUMA "G1900410, G19000100" +County and PUMA "G1900430, G19000400" +County and PUMA "G1900450, G19000800" +County and PUMA "G1900470, G19001900" +County and PUMA "G1900490, G19001400" +County and PUMA "G1900490, G19001500" +County and PUMA "G1900510, G19002200" +County and PUMA "G1900530, G19001800" +County and PUMA "G1900550, G19000700" +County and PUMA "G1900570, G19002300" +County and PUMA "G1900590, G19000100" +County and PUMA "G1900610, G19000700" +County and PUMA "G1900630, G19000100" +County and PUMA "G1900650, G19000400" +County and PUMA "G1900670, G19000200" +County and PUMA "G1900690, G19000600" +County and PUMA "G1900710, G19002100" +County and PUMA "G1900730, G19001900" +County and PUMA "G1900750, G19000600" +County and PUMA "G1900770, G19001800" +County and PUMA "G1900790, G19000600" +County and PUMA "G1900810, G19000200" +County and PUMA "G1900830, G19000600" +County and PUMA "G1900850, G19002100" +County and PUMA "G1900870, G19002300" +County and PUMA "G1900890, G19000400" +County and PUMA "G1900910, G19000600" +County and PUMA "G1900930, G19001900" +County and PUMA "G1900950, G19001200" +County and PUMA "G1900970, G19000700" +County and PUMA "G1900990, G19001400" +County and PUMA "G1901010, G19002200" +County and PUMA "G1901030, G19001100" +County and PUMA "G1901050, G19000800" +County and PUMA "G1901070, G19002200" +County and PUMA "G1901090, G19000200" +County and PUMA "G1901110, G19002300" +County and PUMA "G1901130, G19001000" +County and PUMA "G1901150, G19002300" +County and PUMA "G1901170, G19001800" +County and PUMA "G1901190, G19000100" +County and PUMA "G1901210, G19001400" +County and PUMA "G1901230, G19002200" +County and PUMA "G1901250, G19001400" +County and PUMA "G1901270, G19001200" +County and PUMA "G1901290, G19002100" +County and PUMA "G1901310, G19000200" +County and PUMA "G1901330, G19001900" +County and PUMA "G1901350, G19001800" +County and PUMA "G1901370, G19002100" +County and PUMA "G1901390, G19000800" +County and PUMA "G1901410, G19000100" +County and PUMA "G1901430, G19000100" +County and PUMA "G1901450, G19002100" +County and PUMA "G1901470, G19000100" +County and PUMA "G1901490, G19002000" +County and PUMA "G1901510, G19001900" +County and PUMA "G1901530, G19001500" +County and PUMA "G1901530, G19001600" +County and PUMA "G1901530, G19001700" +County and PUMA "G1901550, G19002100" +County and PUMA "G1901570, G19001200" +County and PUMA "G1901590, G19001800" +County and PUMA "G1901610, G19001900" +County and PUMA "G1901630, G19000900" +County and PUMA "G1901650, G19002100" +County and PUMA "G1901670, G19000100" +County and PUMA "G1901690, G19001300" +County and PUMA "G1901710, G19001200" +County and PUMA "G1901730, G19001800" +County and PUMA "G1901750, G19001800" +County and PUMA "G1901770, G19002200" +County and PUMA "G1901790, G19002200" +County and PUMA "G1901810, G19001400" +County and PUMA "G1901830, G19002200" +County and PUMA "G1901850, G19001800" +County and PUMA "G1901870, G19000600" +County and PUMA "G1901890, G19000200" +County and PUMA "G1901910, G19000400" +County and PUMA "G1901930, G19002000" +County and PUMA "G1901950, G19000200" +County and PUMA "G1901970, G19000600" +County and PUMA "G2000010, G20001400" +County and PUMA "G2000030, G20001400" +County and PUMA "G2000050, G20000400" +County and PUMA "G2000070, G20001100" +County and PUMA "G2000090, G20001100" +County and PUMA "G2000110, G20001400" +County and PUMA "G2000130, G20000802" +County and PUMA "G2000150, G20001302" +County and PUMA "G2000150, G20001304" +County and PUMA "G2000170, G20000900" +County and PUMA "G2000190, G20000900" +County and PUMA "G2000210, G20001500" +County and PUMA "G2000230, G20000100" +County and PUMA "G2000250, G20001200" +County and PUMA "G2000270, G20000200" +County and PUMA "G2000290, G20000200" +County and PUMA "G2000310, G20000900" +County and PUMA "G2000330, G20001100" +County and PUMA "G2000350, G20000900" +County and PUMA "G2000350, G20001100" +County and PUMA "G2000370, G20001500" +County and PUMA "G2000390, G20000100" +County and PUMA "G2000410, G20000200" +County and PUMA "G2000430, G20000400" +County and PUMA "G2000450, G20000700" +County and PUMA "G2000470, G20001100" +County and PUMA "G2000490, G20000900" +County and PUMA "G2000510, G20000100" +County and PUMA "G2000530, G20000200" +County and PUMA "G2000550, G20001200" +County and PUMA "G2000570, G20001200" +County and PUMA "G2000590, G20001400" +County and PUMA "G2000610, G20000300" +County and PUMA "G2000630, G20000100" +County and PUMA "G2000650, G20000100" +County and PUMA "G2000670, G20001200" +County and PUMA "G2000690, G20001200" +County and PUMA "G2000710, G20000100" +County and PUMA "G2000730, G20000900" +County and PUMA "G2000750, G20001200" +County and PUMA "G2000770, G20001100" +County and PUMA "G2000790, G20001301" +County and PUMA "G2000810, G20001200" +County and PUMA "G2000830, G20001200" +County and PUMA "G2000850, G20000802" +County and PUMA "G2000870, G20000400" +County and PUMA "G2000890, G20000200" +County and PUMA "G2000910, G20000601" +County and PUMA "G2000910, G20000602" +County and PUMA "G2000910, G20000603" +County and PUMA "G2000910, G20000604" +County and PUMA "G2000930, G20001200" +County and PUMA "G2000950, G20001100" +County and PUMA "G2000970, G20001100" +County and PUMA "G2000990, G20001500" +County and PUMA "G2001010, G20000100" +County and PUMA "G2001030, G20000400" +County and PUMA "G2001050, G20000200" +County and PUMA "G2001070, G20001400" +County and PUMA "G2001090, G20000100" +County and PUMA "G2001110, G20000900" +County and PUMA "G2001130, G20001000" +County and PUMA "G2001150, G20000900" +County and PUMA "G2001170, G20000200" +County and PUMA "G2001190, G20001200" +County and PUMA "G2001210, G20001400" +County and PUMA "G2001230, G20000200" +County and PUMA "G2001250, G20001500" +County and PUMA "G2001270, G20000900" +County and PUMA "G2001290, G20001200" +County and PUMA "G2001310, G20000200" +County and PUMA "G2001330, G20001500" +County and PUMA "G2001350, G20000100" +County and PUMA "G2001370, G20000100" +County and PUMA "G2001390, G20000802" +County and PUMA "G2001410, G20000100" +County and PUMA "G2001430, G20000200" +County and PUMA "G2001450, G20001100" +County and PUMA "G2001470, G20000100" +County and PUMA "G2001490, G20000300" +County and PUMA "G2001510, G20001100" +County and PUMA "G2001530, G20000100" +County and PUMA "G2001550, G20001000" +County and PUMA "G2001570, G20000200" +County and PUMA "G2001590, G20001000" +County and PUMA "G2001610, G20000300" +County and PUMA "G2001630, G20000100" +County and PUMA "G2001650, G20001100" +County and PUMA "G2001670, G20000100" +County and PUMA "G2001690, G20000200" +County and PUMA "G2001710, G20000100" +County and PUMA "G2001730, G20001301" +County and PUMA "G2001730, G20001302" +County and PUMA "G2001730, G20001303" +County and PUMA "G2001730, G20001304" +County and PUMA "G2001750, G20001200" +County and PUMA "G2001770, G20000801" +County and PUMA "G2001770, G20000802" +County and PUMA "G2001790, G20000100" +County and PUMA "G2001810, G20000100" +County and PUMA "G2001830, G20000100" +County and PUMA "G2001850, G20001100" +County and PUMA "G2001870, G20001200" +County and PUMA "G2001890, G20001200" +County and PUMA "G2001910, G20001100" +County and PUMA "G2001930, G20000100" +County and PUMA "G2001950, G20000100" +County and PUMA "G2001970, G20000802" +County and PUMA "G2001990, G20000100" +County and PUMA "G2002010, G20000200" +County and PUMA "G2002030, G20000100" +County and PUMA "G2002050, G20000900" +County and PUMA "G2002070, G20000900" +County and PUMA "G2002090, G20000500" +County and PUMA "G2100010, G21000600" +County and PUMA "G2100030, G21000400" +County and PUMA "G2100050, G21002000" +County and PUMA "G2100070, G21000100" +County and PUMA "G2100090, G21000400" +County and PUMA "G2100110, G21002700" +County and PUMA "G2100130, G21000900" +County and PUMA "G2100150, G21002500" +County and PUMA "G2100170, G21002300" +County and PUMA "G2100190, G21002800" +County and PUMA "G2100210, G21002100" +County and PUMA "G2100230, G21002700" +County and PUMA "G2100250, G21001000" +County and PUMA "G2100270, G21001300" +County and PUMA "G2100290, G21001600" +County and PUMA "G2100310, G21000400" +County and PUMA "G2100330, G21000200" +County and PUMA "G2100350, G21000100" +County and PUMA "G2100370, G21002600" +County and PUMA "G2100390, G21000100" +County and PUMA "G2100410, G21002600" +County and PUMA "G2100430, G21002800" +County and PUMA "G2100450, G21000600" +County and PUMA "G2100470, G21000300" +County and PUMA "G2100490, G21002300" +County and PUMA "G2100510, G21000800" +County and PUMA "G2100530, G21000600" +County and PUMA "G2100550, G21000200" +County and PUMA "G2100570, G21000600" +County and PUMA "G2100590, G21001500" +County and PUMA "G2100610, G21000400" +County and PUMA "G2100630, G21002800" +County and PUMA "G2100650, G21002200" +County and PUMA "G2100670, G21001901" +County and PUMA "G2100670, G21001902" +County and PUMA "G2100690, G21002700" +County and PUMA "G2100710, G21001100" +County and PUMA "G2100730, G21002000" +County and PUMA "G2100750, G21000100" +County and PUMA "G2100770, G21002600" +County and PUMA "G2100790, G21002100" +County and PUMA "G2100810, G21002600" +County and PUMA "G2100830, G21000100" +County and PUMA "G2100850, G21001300" +County and PUMA "G2100870, G21000600" +County and PUMA "G2100890, G21002800" +County and PUMA "G2100910, G21001500" +County and PUMA "G2100930, G21001200" +County and PUMA "G2100930, G21001300" +County and PUMA "G2100950, G21000900" +County and PUMA "G2100970, G21002300" +County and PUMA "G2100990, G21000400" +County and PUMA "G2101010, G21001400" +County and PUMA "G2101030, G21001800" +County and PUMA "G2101050, G21000100" +County and PUMA "G2101070, G21000200" +County and PUMA "G2101090, G21000800" +County and PUMA "G2101110, G21001701" +County and PUMA "G2101110, G21001702" +County and PUMA "G2101110, G21001703" +County and PUMA "G2101110, G21001704" +County and PUMA "G2101110, G21001705" +County and PUMA "G2101110, G21001706" +County and PUMA "G2101130, G21002100" +County and PUMA "G2101150, G21001100" +County and PUMA "G2101170, G21002400" +County and PUMA "G2101190, G21001000" +County and PUMA "G2101210, G21000900" +County and PUMA "G2101230, G21001200" +County and PUMA "G2101250, G21000800" +County and PUMA "G2101270, G21002800" +County and PUMA "G2101290, G21001000" +County and PUMA "G2101310, G21001000" +County and PUMA "G2101330, G21001000" +County and PUMA "G2101350, G21002700" +County and PUMA "G2101370, G21002100" +County and PUMA "G2101390, G21000200" +County and PUMA "G2101410, G21000400" +County and PUMA "G2101430, G21000300" +County and PUMA "G2101450, G21000100" +County and PUMA "G2101470, G21000700" +County and PUMA "G2101490, G21001400" +County and PUMA "G2101510, G21002200" +County and PUMA "G2101530, G21001100" +County and PUMA "G2101550, G21001200" +County and PUMA "G2101570, G21000100" +County and PUMA "G2101590, G21001100" +County and PUMA "G2101610, G21002700" +County and PUMA "G2101630, G21001300" +County and PUMA "G2101650, G21002700" +County and PUMA "G2101670, G21002000" +County and PUMA "G2101690, G21000400" +County and PUMA "G2101710, G21000400" +County and PUMA "G2101730, G21002700" +County and PUMA "G2101750, G21002700" +County and PUMA "G2101770, G21000200" +County and PUMA "G2101790, G21001200" +County and PUMA "G2101810, G21002300" +County and PUMA "G2101830, G21001400" +County and PUMA "G2101850, G21001800" +County and PUMA "G2101870, G21002600" +County and PUMA "G2101890, G21001000" +County and PUMA "G2101910, G21002600" +County and PUMA "G2101930, G21001000" +County and PUMA "G2101950, G21001100" +County and PUMA "G2101970, G21002200" +County and PUMA "G2101990, G21000700" +County and PUMA "G2102010, G21002700" +County and PUMA "G2102030, G21000800" +County and PUMA "G2102050, G21002700" +County and PUMA "G2102070, G21000600" +County and PUMA "G2102090, G21002300" +County and PUMA "G2102110, G21001600" +County and PUMA "G2102110, G21001800" +County and PUMA "G2102130, G21000400" +County and PUMA "G2102150, G21001600" +County and PUMA "G2102170, G21000600" +County and PUMA "G2102190, G21000300" +County and PUMA "G2102210, G21000300" +County and PUMA "G2102230, G21001800" +County and PUMA "G2102250, G21001400" +County and PUMA "G2102270, G21000500" +County and PUMA "G2102290, G21001200" +County and PUMA "G2102310, G21000700" +County and PUMA "G2102330, G21001400" +County and PUMA "G2102350, G21000900" +County and PUMA "G2102370, G21001000" +County and PUMA "G2102390, G21002000" +County and PUMA "G2200010, G22001100" +County and PUMA "G2200030, G22000800" +County and PUMA "G2200050, G22001600" +County and PUMA "G2200070, G22002000" +County and PUMA "G2200090, G22000600" +County and PUMA "G2200110, G22000800" +County and PUMA "G2200130, G22000300" +County and PUMA "G2200150, G22000200" +County and PUMA "G2200170, G22000100" +County and PUMA "G2200170, G22000101" +County and PUMA "G2200190, G22000800" +County and PUMA "G2200190, G22000900" +County and PUMA "G2200210, G22000500" +County and PUMA "G2200230, G22000900" +County and PUMA "G2200250, G22000600" +County and PUMA "G2200270, G22000300" +County and PUMA "G2200290, G22000600" +County and PUMA "G2200310, G22000300" +County and PUMA "G2200330, G22001500" +County and PUMA "G2200330, G22001501" +County and PUMA "G2200330, G22001502" +County and PUMA "G2200350, G22000500" +County and PUMA "G2200370, G22001400" +County and PUMA "G2200390, G22001000" +County and PUMA "G2200410, G22000500" +County and PUMA "G2200430, G22000600" +County and PUMA "G2200450, G22001300" +County and PUMA "G2200470, G22001400" +County and PUMA "G2200490, G22000500" +County and PUMA "G2200510, G22002300" +County and PUMA "G2200510, G22002301" +County and PUMA "G2200510, G22002302" +County and PUMA "G2200510, G22002500" +County and PUMA "G2200530, G22000900" +County and PUMA "G2200550, G22001200" +County and PUMA "G2200550, G22001201" +County and PUMA "G2200570, G22002000" +County and PUMA "G2200590, G22000600" +County and PUMA "G2200610, G22000300" +County and PUMA "G2200630, G22001700" +County and PUMA "G2200650, G22000500" +County and PUMA "G2200670, G22000500" +County and PUMA "G2200690, G22000300" +County and PUMA "G2200710, G22002400" +County and PUMA "G2200710, G22002401" +County and PUMA "G2200710, G22002402" +County and PUMA "G2200730, G22000400" +County and PUMA "G2200750, G22002500" +County and PUMA "G2200770, G22001400" +County and PUMA "G2200790, G22000700" +County and PUMA "G2200810, G22000300" +County and PUMA "G2200830, G22000500" +County and PUMA "G2200850, G22000300" +County and PUMA "G2200870, G22002500" +County and PUMA "G2200890, G22001900" +County and PUMA "G2200910, G22001700" +County and PUMA "G2200930, G22001900" +County and PUMA "G2200950, G22001900" +County and PUMA "G2200970, G22001000" +County and PUMA "G2200990, G22001300" +County and PUMA "G2201010, G22001300" +County and PUMA "G2201030, G22002200" +County and PUMA "G2201030, G22002201" +County and PUMA "G2201050, G22001800" +County and PUMA "G2201070, G22000500" +County and PUMA "G2201090, G22002100" +County and PUMA "G2201110, G22000500" +County and PUMA "G2201130, G22001100" +County and PUMA "G2201150, G22000700" +County and PUMA "G2201170, G22001800" +County and PUMA "G2201190, G22000200" +County and PUMA "G2201210, G22001400" +County and PUMA "G2201230, G22000500" +County and PUMA "G2201250, G22001400" +County and PUMA "G2201270, G22000600" +County and PUMA "G2300010, G23000600" +County and PUMA "G2300030, G23000100" +County and PUMA "G2300050, G23000700" +County and PUMA "G2300050, G23000800" +County and PUMA "G2300050, G23000900" +County and PUMA "G2300050, G23001000" +County and PUMA "G2300070, G23000200" +County and PUMA "G2300090, G23000500" +County and PUMA "G2300110, G23000400" +County and PUMA "G2300130, G23000500" +County and PUMA "G2300150, G23000500" +County and PUMA "G2300170, G23000200" +County and PUMA "G2300190, G23000300" +County and PUMA "G2300210, G23000200" +County and PUMA "G2300230, G23000700" +County and PUMA "G2300250, G23000200" +County and PUMA "G2300270, G23000500" +County and PUMA "G2300290, G23000100" +County and PUMA "G2300310, G23000800" +County and PUMA "G2300310, G23000900" +County and PUMA "G2400010, G24000100" +County and PUMA "G2400030, G24001201" +County and PUMA "G2400030, G24001202" +County and PUMA "G2400030, G24001203" +County and PUMA "G2400030, G24001204" +County and PUMA "G2400050, G24000501" +County and PUMA "G2400050, G24000502" +County and PUMA "G2400050, G24000503" +County and PUMA "G2400050, G24000504" +County and PUMA "G2400050, G24000505" +County and PUMA "G2400050, G24000506" +County and PUMA "G2400050, G24000507" +County and PUMA "G2400090, G24001500" +County and PUMA "G2400110, G24001300" +County and PUMA "G2400130, G24000400" +County and PUMA "G2400150, G24000700" +County and PUMA "G2400170, G24001600" +County and PUMA "G2400190, G24001300" +County and PUMA "G2400210, G24000301" +County and PUMA "G2400210, G24000302" +County and PUMA "G2400230, G24000100" +County and PUMA "G2400250, G24000601" +County and PUMA "G2400250, G24000602" +County and PUMA "G2400270, G24000901" +County and PUMA "G2400270, G24000902" +County and PUMA "G2400290, G24001300" +County and PUMA "G2400310, G24001001" +County and PUMA "G2400310, G24001002" +County and PUMA "G2400310, G24001003" +County and PUMA "G2400310, G24001004" +County and PUMA "G2400310, G24001005" +County and PUMA "G2400310, G24001006" +County and PUMA "G2400310, G24001007" +County and PUMA "G2400330, G24001101" +County and PUMA "G2400330, G24001102" +County and PUMA "G2400330, G24001103" +County and PUMA "G2400330, G24001104" +County and PUMA "G2400330, G24001105" +County and PUMA "G2400330, G24001106" +County and PUMA "G2400330, G24001107" +County and PUMA "G2400350, G24001300" +County and PUMA "G2400370, G24001500" +County and PUMA "G2400390, G24001400" +County and PUMA "G2400410, G24001300" +County and PUMA "G2400430, G24000200" +County and PUMA "G2400450, G24001400" +County and PUMA "G2400470, G24001400" +County and PUMA "G2405100, G24000801" +County and PUMA "G2405100, G24000802" +County and PUMA "G2405100, G24000803" +County and PUMA "G2405100, G24000804" +County and PUMA "G2405100, G24000805" +County and PUMA "G2500010, G25004700" +County and PUMA "G2500010, G25004800" +County and PUMA "G2500030, G25000100" +County and PUMA "G2500050, G25004200" +County and PUMA "G2500050, G25004301" +County and PUMA "G2500050, G25004302" +County and PUMA "G2500050, G25004303" +County and PUMA "G2500050, G25004500" +County and PUMA "G2500050, G25004901" +County and PUMA "G2500070, G25004800" +County and PUMA "G2500090, G25000701" +County and PUMA "G2500090, G25000702" +County and PUMA "G2500090, G25000703" +County and PUMA "G2500090, G25000704" +County and PUMA "G2500090, G25001000" +County and PUMA "G2500090, G25001300" +County and PUMA "G2500090, G25002800" +County and PUMA "G2500110, G25000200" +County and PUMA "G2500130, G25001600" +County and PUMA "G2500130, G25001900" +County and PUMA "G2500130, G25001901" +County and PUMA "G2500130, G25001902" +County and PUMA "G2500150, G25000200" +County and PUMA "G2500150, G25001600" +County and PUMA "G2500170, G25000400" +County and PUMA "G2500170, G25000501" +County and PUMA "G2500170, G25000502" +County and PUMA "G2500170, G25000503" +County and PUMA "G2500170, G25000504" +County and PUMA "G2500170, G25000505" +County and PUMA "G2500170, G25000506" +County and PUMA "G2500170, G25000507" +County and PUMA "G2500170, G25000508" +County and PUMA "G2500170, G25001000" +County and PUMA "G2500170, G25001300" +County and PUMA "G2500170, G25001400" +County and PUMA "G2500170, G25002400" +County and PUMA "G2500170, G25002800" +County and PUMA "G2500170, G25003400" +County and PUMA "G2500170, G25003500" +County and PUMA "G2500190, G25004800" +County and PUMA "G2500210, G25002400" +County and PUMA "G2500210, G25003400" +County and PUMA "G2500210, G25003500" +County and PUMA "G2500210, G25003601" +County and PUMA "G2500210, G25003602" +County and PUMA "G2500210, G25003603" +County and PUMA "G2500210, G25003900" +County and PUMA "G2500210, G25004000" +County and PUMA "G2500210, G25004200" +County and PUMA "G2500230, G25003900" +County and PUMA "G2500230, G25004000" +County and PUMA "G2500230, G25004301" +County and PUMA "G2500230, G25004901" +County and PUMA "G2500230, G25004902" +County and PUMA "G2500230, G25004903" +County and PUMA "G2500250, G25003301" +County and PUMA "G2500250, G25003302" +County and PUMA "G2500250, G25003303" +County and PUMA "G2500250, G25003304" +County and PUMA "G2500250, G25003305" +County and PUMA "G2500250, G25003306" +County and PUMA "G2500270, G25000300" +County and PUMA "G2500270, G25000301" +County and PUMA "G2500270, G25000302" +County and PUMA "G2500270, G25000303" +County and PUMA "G2500270, G25000304" +County and PUMA "G2500270, G25000400" +County and PUMA "G2500270, G25001400" +County and PUMA "G2500270, G25002400" +County and PUMA "G2600010, G26000300" +County and PUMA "G2600030, G26000200" +County and PUMA "G2600050, G26000900" +County and PUMA "G2600070, G26000300" +County and PUMA "G2600090, G26000400" +County and PUMA "G2600110, G26001300" +County and PUMA "G2600130, G26000100" +County and PUMA "G2600150, G26002000" +County and PUMA "G2600170, G26001400" +County and PUMA "G2600190, G26000500" +County and PUMA "G2600210, G26002400" +County and PUMA "G2600230, G26002200" +County and PUMA "G2600250, G26002000" +County and PUMA "G2600270, G26002300" +County and PUMA "G2600290, G26000400" +County and PUMA "G2600310, G26000300" +County and PUMA "G2600330, G26000200" +County and PUMA "G2600350, G26001200" +County and PUMA "G2600370, G26001900" +County and PUMA "G2600390, G26000300" +County and PUMA "G2600410, G26000200" +County and PUMA "G2600430, G26000100" +County and PUMA "G2600450, G26001900" +County and PUMA "G2600470, G26000400" +County and PUMA "G2600490, G26001701" +County and PUMA "G2600490, G26001702" +County and PUMA "G2600490, G26001703" +County and PUMA "G2600490, G26001704" +County and PUMA "G2600510, G26001300" +County and PUMA "G2600530, G26000100" +County and PUMA "G2600550, G26000500" +County and PUMA "G2600570, G26001200" +County and PUMA "G2600590, G26002500" +County and PUMA "G2600610, G26000100" +County and PUMA "G2600630, G26001600" +County and PUMA "G2600650, G26001801" +County and PUMA "G2600650, G26001802" +County and PUMA "G2600670, G26001100" +County and PUMA "G2600690, G26001300" +County and PUMA "G2600710, G26000100" +County and PUMA "G2600730, G26001200" +County and PUMA "G2600750, G26002600" +County and PUMA "G2600770, G26002101" +County and PUMA "G2600770, G26002102" +County and PUMA "G2600790, G26000400" +County and PUMA "G2600810, G26001001" +County and PUMA "G2600810, G26001002" +County and PUMA "G2600810, G26001003" +County and PUMA "G2600810, G26001004" +County and PUMA "G2600830, G26000100" +County and PUMA "G2600850, G26000600" +County and PUMA "G2600870, G26001701" +County and PUMA "G2600890, G26000500" +County and PUMA "G2600910, G26002500" +County and PUMA "G2600930, G26002800" +County and PUMA "G2600950, G26000200" +County and PUMA "G2600970, G26000200" +County and PUMA "G2600990, G26003001" +County and PUMA "G2600990, G26003002" +County and PUMA "G2600990, G26003003" +County and PUMA "G2600990, G26003004" +County and PUMA "G2600990, G26003005" +County and PUMA "G2600990, G26003006" +County and PUMA "G2601010, G26000500" +County and PUMA "G2601030, G26000100" +County and PUMA "G2601050, G26000600" +County and PUMA "G2601070, G26001100" +County and PUMA "G2601090, G26000200" +County and PUMA "G2601110, G26001400" +County and PUMA "G2601130, G26000400" +County and PUMA "G2601150, G26003300" +County and PUMA "G2601170, G26001100" +County and PUMA "G2601190, G26000300" +County and PUMA "G2601210, G26000700" +County and PUMA "G2601230, G26000600" +County and PUMA "G2601250, G26002901" +County and PUMA "G2601250, G26002902" +County and PUMA "G2601250, G26002903" +County and PUMA "G2601250, G26002904" +County and PUMA "G2601250, G26002905" +County and PUMA "G2601250, G26002906" +County and PUMA "G2601250, G26002907" +County and PUMA "G2601250, G26002908" +County and PUMA "G2601270, G26000600" +County and PUMA "G2601290, G26001300" +County and PUMA "G2601310, G26000100" +County and PUMA "G2601330, G26001100" +County and PUMA "G2601350, G26000300" +County and PUMA "G2601370, G26000300" +County and PUMA "G2601390, G26000801" +County and PUMA "G2601390, G26000802" +County and PUMA "G2601410, G26000300" +County and PUMA "G2601430, G26001300" +County and PUMA "G2601450, G26001500" +County and PUMA "G2601470, G26003100" +County and PUMA "G2601490, G26002200" +County and PUMA "G2601510, G26001600" +County and PUMA "G2601530, G26000200" +County and PUMA "G2601550, G26001704" +County and PUMA "G2601570, G26001600" +County and PUMA "G2601590, G26002300" +County and PUMA "G2601610, G26002701" +County and PUMA "G2601610, G26002702" +County and PUMA "G2601610, G26002703" +County and PUMA "G2601630, G26003201" +County and PUMA "G2601630, G26003202" +County and PUMA "G2601630, G26003203" +County and PUMA "G2601630, G26003204" +County and PUMA "G2601630, G26003205" +County and PUMA "G2601630, G26003206" +County and PUMA "G2601630, G26003207" +County and PUMA "G2601630, G26003208" +County and PUMA "G2601630, G26003209" +County and PUMA "G2601630, G26003210" +County and PUMA "G2601630, G26003211" +County and PUMA "G2601630, G26003212" +County and PUMA "G2601630, G26003213" +County and PUMA "G2601650, G26000400" +County and PUMA "G2700010, G27000300" +County and PUMA "G2700030, G27001101" +County and PUMA "G2700030, G27001102" +County and PUMA "G2700030, G27001103" +County and PUMA "G2700050, G27000200" +County and PUMA "G2700070, G27000200" +County and PUMA "G2700090, G27001000" +County and PUMA "G2700110, G27000800" +County and PUMA "G2700130, G27002200" +County and PUMA "G2700150, G27002000" +County and PUMA "G2700170, G27000300" +County and PUMA "G2700170, G27000400" +County and PUMA "G2700190, G27001700" +County and PUMA "G2700210, G27000300" +County and PUMA "G2700230, G27002000" +County and PUMA "G2700250, G27000600" +County and PUMA "G2700270, G27000100" +County and PUMA "G2700290, G27000200" +County and PUMA "G2700310, G27000400" +County and PUMA "G2700330, G27002100" +County and PUMA "G2700350, G27000700" +County and PUMA "G2700370, G27001501" +County and PUMA "G2700370, G27001502" +County and PUMA "G2700370, G27001503" +County and PUMA "G2700390, G27002400" +County and PUMA "G2700410, G27000800" +County and PUMA "G2700430, G27002100" +County and PUMA "G2700450, G27002600" +County and PUMA "G2700470, G27002400" +County and PUMA "G2700490, G27002300" +County and PUMA "G2700510, G27000800" +County and PUMA "G2700530, G27001401" +County and PUMA "G2700530, G27001402" +County and PUMA "G2700530, G27001403" +County and PUMA "G2700530, G27001404" +County and PUMA "G2700530, G27001405" +County and PUMA "G2700530, G27001406" +County and PUMA "G2700530, G27001407" +County and PUMA "G2700530, G27001408" +County and PUMA "G2700530, G27001409" +County and PUMA "G2700530, G27001410" +County and PUMA "G2700550, G27002600" +County and PUMA "G2700570, G27000200" +County and PUMA "G2700590, G27000600" +County and PUMA "G2700610, G27000300" +County and PUMA "G2700630, G27002100" +County and PUMA "G2700650, G27000600" +County and PUMA "G2700670, G27001900" +County and PUMA "G2700690, G27000100" +County and PUMA "G2700710, G27000400" +County and PUMA "G2700730, G27002000" +County and PUMA "G2700750, G27000400" +County and PUMA "G2700770, G27000200" +County and PUMA "G2700790, G27002300" +County and PUMA "G2700810, G27002000" +County and PUMA "G2700830, G27002000" +County and PUMA "G2700850, G27001900" +County and PUMA "G2700870, G27000200" +County and PUMA "G2700890, G27000100" +County and PUMA "G2700910, G27002100" +County and PUMA "G2700930, G27001900" +County and PUMA "G2700950, G27000600" +County and PUMA "G2700970, G27000700" +County and PUMA "G2700990, G27002400" +County and PUMA "G2701010, G27002100" +County and PUMA "G2701030, G27002200" +County and PUMA "G2701050, G27002100" +County and PUMA "G2701070, G27000100" +County and PUMA "G2701090, G27002500" +County and PUMA "G2701110, G27000800" +County and PUMA "G2701130, G27000100" +County and PUMA "G2701150, G27000600" +County and PUMA "G2701170, G27002100" +County and PUMA "G2701190, G27000100" +County and PUMA "G2701210, G27000800" +County and PUMA "G2701230, G27001301" +County and PUMA "G2701230, G27001302" +County and PUMA "G2701230, G27001303" +County and PUMA "G2701230, G27001304" +County and PUMA "G2701250, G27000100" +County and PUMA "G2701270, G27002000" +County and PUMA "G2701290, G27001900" +County and PUMA "G2701310, G27002300" +County and PUMA "G2701330, G27002100" +County and PUMA "G2701350, G27000100" +County and PUMA "G2701370, G27000400" +County and PUMA "G2701370, G27000500" +County and PUMA "G2701390, G27001600" +County and PUMA "G2701390, G27001700" +County and PUMA "G2701410, G27001000" +County and PUMA "G2701430, G27001900" +County and PUMA "G2701450, G27000900" +County and PUMA "G2701470, G27002400" +County and PUMA "G2701490, G27000800" +County and PUMA "G2701510, G27000800" +County and PUMA "G2701530, G27000700" +County and PUMA "G2701550, G27000800" +County and PUMA "G2701570, G27002600" +County and PUMA "G2701590, G27000700" +County and PUMA "G2701610, G27002200" +County and PUMA "G2701630, G27001201" +County and PUMA "G2701630, G27001202" +County and PUMA "G2701650, G27002100" +County and PUMA "G2701670, G27000800" +County and PUMA "G2701690, G27002600" +County and PUMA "G2701710, G27001800" +County and PUMA "G2701730, G27002000" +County and PUMA "G2800010, G28001600" +County and PUMA "G2800030, G28000200" +County and PUMA "G2800050, G28001600" +County and PUMA "G2800070, G28000700" +County and PUMA "G2800090, G28000200" +County and PUMA "G2800110, G28000800" +County and PUMA "G2800130, G28000400" +County and PUMA "G2800150, G28000700" +County and PUMA "G2800170, G28000400" +County and PUMA "G2800190, G28000600" +County and PUMA "G2800210, G28001600" +County and PUMA "G2800230, G28001500" +County and PUMA "G2800250, G28000600" +County and PUMA "G2800270, G28000300" +County and PUMA "G2800290, G28001200" +County and PUMA "G2800310, G28001700" +County and PUMA "G2800330, G28000100" +County and PUMA "G2800350, G28001800" +County and PUMA "G2800370, G28001600" +County and PUMA "G2800390, G28001900" +County and PUMA "G2800410, G28001700" +County and PUMA "G2800430, G28000700" +County and PUMA "G2800450, G28001900" +County and PUMA "G2800470, G28002000" +County and PUMA "G2800490, G28001000" +County and PUMA "G2800490, G28001100" +County and PUMA "G2800490, G28001200" +County and PUMA "G2800510, G28000700" +County and PUMA "G2800530, G28000800" +County and PUMA "G2800550, G28000800" +County and PUMA "G2800570, G28000400" +County and PUMA "G2800590, G28002100" +County and PUMA "G2800610, G28001400" +County and PUMA "G2800630, G28001600" +County and PUMA "G2800650, G28001700" +County and PUMA "G2800670, G28001700" +County and PUMA "G2800690, G28001400" +County and PUMA "G2800710, G28000400" +County and PUMA "G2800730, G28001800" +County and PUMA "G2800750, G28001500" +County and PUMA "G2800770, G28001600" +County and PUMA "G2800790, G28001400" +County and PUMA "G2800810, G28000500" +County and PUMA "G2800830, G28000700" +County and PUMA "G2800850, G28001600" +County and PUMA "G2800870, G28000600" +County and PUMA "G2800890, G28000900" +County and PUMA "G2800890, G28001000" +County and PUMA "G2800910, G28001800" +County and PUMA "G2800930, G28000200" +County and PUMA "G2800950, G28000400" +County and PUMA "G2800970, G28000700" +County and PUMA "G2800990, G28001400" +County and PUMA "G2801010, G28001500" +County and PUMA "G2801030, G28000600" +County and PUMA "G2801050, G28000600" +County and PUMA "G2801070, G28000300" +County and PUMA "G2801090, G28001900" +County and PUMA "G2801110, G28001800" +County and PUMA "G2801130, G28001600" +County and PUMA "G2801150, G28000500" +County and PUMA "G2801170, G28000200" +County and PUMA "G2801190, G28000300" +County and PUMA "G2801210, G28001300" +County and PUMA "G2801230, G28001400" +County and PUMA "G2801250, G28000800" +County and PUMA "G2801270, G28001300" +County and PUMA "G2801290, G28001400" +County and PUMA "G2801310, G28001900" +County and PUMA "G2801330, G28000800" +County and PUMA "G2801350, G28000300" +County and PUMA "G2801370, G28000300" +County and PUMA "G2801390, G28000200" +County and PUMA "G2801410, G28000200" +County and PUMA "G2801430, G28000300" +County and PUMA "G2801450, G28000500" +County and PUMA "G2801470, G28001600" +County and PUMA "G2801490, G28001200" +County and PUMA "G2801510, G28000800" +County and PUMA "G2801530, G28001700" +County and PUMA "G2801550, G28000600" +County and PUMA "G2801570, G28001600" +County and PUMA "G2801590, G28000600" +County and PUMA "G2801610, G28000700" +County and PUMA "G2801630, G28000900" +County and PUMA "G2900010, G29000300" +County and PUMA "G2900030, G29000200" +County and PUMA "G2900050, G29000100" +County and PUMA "G2900070, G29000400" +County and PUMA "G2900090, G29002700" +County and PUMA "G2900110, G29001200" +County and PUMA "G2900130, G29001100" +County and PUMA "G2900150, G29001300" +County and PUMA "G2900170, G29002200" +County and PUMA "G2900190, G29000600" +County and PUMA "G2900210, G29000200" +County and PUMA "G2900230, G29002400" +County and PUMA "G2900250, G29000800" +County and PUMA "G2900270, G29000500" +County and PUMA "G2900290, G29001400" +County and PUMA "G2900310, G29002200" +County and PUMA "G2900330, G29000700" +County and PUMA "G2900350, G29002400" +County and PUMA "G2900370, G29001100" +County and PUMA "G2900390, G29001200" +County and PUMA "G2900410, G29000700" +County and PUMA "G2900430, G29002601" +County and PUMA "G2900450, G29000300" +County and PUMA "G2900470, G29000901" +County and PUMA "G2900470, G29000902" +County and PUMA "G2900470, G29000903" +County and PUMA "G2900490, G29000800" +County and PUMA "G2900510, G29000500" +County and PUMA "G2900530, G29000700" +County and PUMA "G2900550, G29001500" +County and PUMA "G2900570, G29001200" +County and PUMA "G2900590, G29001300" +County and PUMA "G2900610, G29000100" +County and PUMA "G2900630, G29000200" +County and PUMA "G2900650, G29001500" +County and PUMA "G2900670, G29002500" +County and PUMA "G2900690, G29002300" +County and PUMA "G2900710, G29001600" +County and PUMA "G2900730, G29001500" +County and PUMA "G2900750, G29000100" +County and PUMA "G2900770, G29002601" +County and PUMA "G2900770, G29002602" +County and PUMA "G2900770, G29002603" +County and PUMA "G2900790, G29000100" +County and PUMA "G2900810, G29000100" +County and PUMA "G2900830, G29001200" +County and PUMA "G2900850, G29001300" +County and PUMA "G2900870, G29000100" +County and PUMA "G2900890, G29000700" +County and PUMA "G2900910, G29002500" +County and PUMA "G2900930, G29002400" +County and PUMA "G2900950, G29001001" +County and PUMA "G2900950, G29001002" +County and PUMA "G2900950, G29001003" +County and PUMA "G2900950, G29001004" +County and PUMA "G2900950, G29001005" +County and PUMA "G2900970, G29002800" +County and PUMA "G2900990, G29002001" +County and PUMA "G2900990, G29002002" +County and PUMA "G2901010, G29000800" +County and PUMA "G2901030, G29000300" +County and PUMA "G2901050, G29001300" +County and PUMA "G2901070, G29000800" +County and PUMA "G2901090, G29001200" +County and PUMA "G2901110, G29000300" +County and PUMA "G2901130, G29000400" +County and PUMA "G2901150, G29000100" +County and PUMA "G2901170, G29000100" +County and PUMA "G2901190, G29002700" +County and PUMA "G2901210, G29000300" +County and PUMA "G2901230, G29002400" +County and PUMA "G2901250, G29001500" +County and PUMA "G2901270, G29000300" +County and PUMA "G2901290, G29000100" +County and PUMA "G2901310, G29001400" +County and PUMA "G2901330, G29002300" +County and PUMA "G2901350, G29000500" +County and PUMA "G2901370, G29000300" +County and PUMA "G2901390, G29000400" +County and PUMA "G2901410, G29001400" +County and PUMA "G2901430, G29002300" +County and PUMA "G2901450, G29002800" +County and PUMA "G2901470, G29000100" +County and PUMA "G2901490, G29002500" +County and PUMA "G2901510, G29000500" +County and PUMA "G2901530, G29002500" +County and PUMA "G2901550, G29002300" +County and PUMA "G2901570, G29002100" +County and PUMA "G2901590, G29000700" +County and PUMA "G2901610, G29001500" +County and PUMA "G2901630, G29000400" +County and PUMA "G2901650, G29000903" +County and PUMA "G2901670, G29001300" +County and PUMA "G2901690, G29001400" +County and PUMA "G2901710, G29000100" +County and PUMA "G2901730, G29000300" +County and PUMA "G2901750, G29000700" +County and PUMA "G2901770, G29000800" +County and PUMA "G2901790, G29002400" +County and PUMA "G2901810, G29002400" +County and PUMA "G2901830, G29001701" +County and PUMA "G2901830, G29001702" +County and PUMA "G2901830, G29001703" +County and PUMA "G2901850, G29001200" +County and PUMA "G2901860, G29002100" +County and PUMA "G2901870, G29002100" +County and PUMA "G2901890, G29001801" +County and PUMA "G2901890, G29001802" +County and PUMA "G2901890, G29001803" +County and PUMA "G2901890, G29001804" +County and PUMA "G2901890, G29001805" +County and PUMA "G2901890, G29001806" +County and PUMA "G2901890, G29001807" +County and PUMA "G2901890, G29001808" +County and PUMA "G2901950, G29000700" +County and PUMA "G2901970, G29000300" +County and PUMA "G2901990, G29000300" +County and PUMA "G2902010, G29002200" +County and PUMA "G2902030, G29002500" +County and PUMA "G2902050, G29000300" +County and PUMA "G2902070, G29002300" +County and PUMA "G2902090, G29002700" +County and PUMA "G2902110, G29000100" +County and PUMA "G2902130, G29002700" +County and PUMA "G2902150, G29002500" +County and PUMA "G2902170, G29001200" +County and PUMA "G2902190, G29000400" +County and PUMA "G2902210, G29002100" +County and PUMA "G2902230, G29002400" +County and PUMA "G2902250, G29002601" +County and PUMA "G2902270, G29000100" +County and PUMA "G2902290, G29002500" +County and PUMA "G2905100, G29001901" +County and PUMA "G2905100, G29001902" +County and PUMA "G3000010, G30000300" +County and PUMA "G3000030, G30000600" +County and PUMA "G3000050, G30000400" +County and PUMA "G3000070, G30000300" +County and PUMA "G3000090, G30000500" +County and PUMA "G3000110, G30000600" +County and PUMA "G3000130, G30000400" +County and PUMA "G3000150, G30000400" +County and PUMA "G3000170, G30000600" +County and PUMA "G3000190, G30000600" +County and PUMA "G3000210, G30000600" +County and PUMA "G3000230, G30000300" +County and PUMA "G3000250, G30000600" +County and PUMA "G3000270, G30000400" +County and PUMA "G3000290, G30000100" +County and PUMA "G3000310, G30000500" +County and PUMA "G3000330, G30000600" +County and PUMA "G3000350, G30000100" +County and PUMA "G3000370, G30000600" +County and PUMA "G3000390, G30000300" +County and PUMA "G3000410, G30000400" +County and PUMA "G3000430, G30000300" +County and PUMA "G3000450, G30000400" +County and PUMA "G3000470, G30000200" +County and PUMA "G3000490, G30000300" +County and PUMA "G3000510, G30000400" +County and PUMA "G3000530, G30000100" +County and PUMA "G3000550, G30000600" +County and PUMA "G3000570, G30000300" +County and PUMA "G3000590, G30000400" +County and PUMA "G3000610, G30000200" +County and PUMA "G3000630, G30000200" +County and PUMA "G3000650, G30000600" +County and PUMA "G3000670, G30000500" +County and PUMA "G3000690, G30000400" +County and PUMA "G3000710, G30000600" +County and PUMA "G3000730, G30000400" +County and PUMA "G3000750, G30000600" +County and PUMA "G3000770, G30000300" +County and PUMA "G3000790, G30000600" +County and PUMA "G3000810, G30000200" +County and PUMA "G3000830, G30000600" +County and PUMA "G3000850, G30000600" +County and PUMA "G3000870, G30000600" +County and PUMA "G3000890, G30000200" +County and PUMA "G3000910, G30000600" +County and PUMA "G3000930, G30000300" +County and PUMA "G3000950, G30000500" +County and PUMA "G3000970, G30000500" +County and PUMA "G3000990, G30000400" +County and PUMA "G3001010, G30000400" +County and PUMA "G3001030, G30000600" +County and PUMA "G3001050, G30000600" +County and PUMA "G3001070, G30000400" +County and PUMA "G3001090, G30000600" +County and PUMA "G3001110, G30000600" +County and PUMA "G3001110, G30000700" +County and PUMA "G3100010, G31000500" +County and PUMA "G3100030, G31000200" +County and PUMA "G3100050, G31000400" +County and PUMA "G3100070, G31000100" +County and PUMA "G3100090, G31000300" +County and PUMA "G3100110, G31000200" +County and PUMA "G3100130, G31000100" +County and PUMA "G3100150, G31000100" +County and PUMA "G3100170, G31000100" +County and PUMA "G3100190, G31000500" +County and PUMA "G3100210, G31000200" +County and PUMA "G3100230, G31000600" +County and PUMA "G3100250, G31000701" +County and PUMA "G3100270, G31000200" +County and PUMA "G3100290, G31000400" +County and PUMA "G3100310, G31000100" +County and PUMA "G3100330, G31000100" +County and PUMA "G3100350, G31000500" +County and PUMA "G3100370, G31000200" +County and PUMA "G3100390, G31000200" +County and PUMA "G3100410, G31000300" +County and PUMA "G3100430, G31000200" +County and PUMA "G3100450, G31000100" +County and PUMA "G3100470, G31000400" +County and PUMA "G3100490, G31000100" +County and PUMA "G3100510, G31000200" +County and PUMA "G3100530, G31000701" +County and PUMA "G3100550, G31000901" +County and PUMA "G3100550, G31000902" +County and PUMA "G3100550, G31000903" +County and PUMA "G3100550, G31000904" +County and PUMA "G3100570, G31000400" +County and PUMA "G3100590, G31000600" +County and PUMA "G3100610, G31000500" +County and PUMA "G3100630, G31000400" +County and PUMA "G3100650, G31000400" +County and PUMA "G3100670, G31000600" +County and PUMA "G3100690, G31000100" +County and PUMA "G3100710, G31000300" +County and PUMA "G3100730, G31000400" +County and PUMA "G3100750, G31000400" +County and PUMA "G3100770, G31000300" +County and PUMA "G3100790, G31000300" +County and PUMA "G3100810, G31000300" +County and PUMA "G3100830, G31000500" +County and PUMA "G3100850, G31000400" +County and PUMA "G3100870, G31000400" +County and PUMA "G3100890, G31000100" +County and PUMA "G3100910, G31000400" +County and PUMA "G3100930, G31000300" +County and PUMA "G3100950, G31000600" +County and PUMA "G3100970, G31000600" +County and PUMA "G3100990, G31000500" +County and PUMA "G3101010, G31000400" +County and PUMA "G3101030, G31000100" +County and PUMA "G3101050, G31000100" +County and PUMA "G3101070, G31000200" +County and PUMA "G3101090, G31000801" +County and PUMA "G3101090, G31000802" +County and PUMA "G3101110, G31000400" +County and PUMA "G3101130, G31000400" +County and PUMA "G3101150, G31000300" +County and PUMA "G3101170, G31000400" +County and PUMA "G3101190, G31000200" +County and PUMA "G3101210, G31000300" +County and PUMA "G3101230, G31000100" +County and PUMA "G3101250, G31000200" +County and PUMA "G3101270, G31000600" +County and PUMA "G3101290, G31000500" +County and PUMA "G3101310, G31000600" +County and PUMA "G3101330, G31000600" +County and PUMA "G3101350, G31000400" +County and PUMA "G3101370, G31000500" +County and PUMA "G3101390, G31000200" +County and PUMA "G3101410, G31000200" +County and PUMA "G3101430, G31000600" +County and PUMA "G3101450, G31000400" +County and PUMA "G3101470, G31000600" +County and PUMA "G3101490, G31000100" +County and PUMA "G3101510, G31000600" +County and PUMA "G3101530, G31000702" +County and PUMA "G3101550, G31000701" +County and PUMA "G3101570, G31000100" +County and PUMA "G3101590, G31000600" +County and PUMA "G3101610, G31000100" +County and PUMA "G3101630, G31000300" +County and PUMA "G3101650, G31000100" +County and PUMA "G3101670, G31000200" +County and PUMA "G3101690, G31000600" +County and PUMA "G3101710, G31000400" +County and PUMA "G3101730, G31000200" +County and PUMA "G3101750, G31000300" +County and PUMA "G3101770, G31000701" +County and PUMA "G3101790, G31000200" +County and PUMA "G3101810, G31000500" +County and PUMA "G3101830, G31000300" +County and PUMA "G3101850, G31000600" +County and PUMA "G3200010, G32000300" +County and PUMA "G3200030, G32000401" +County and PUMA "G3200030, G32000402" +County and PUMA "G3200030, G32000403" +County and PUMA "G3200030, G32000404" +County and PUMA "G3200030, G32000405" +County and PUMA "G3200030, G32000406" +County and PUMA "G3200030, G32000407" +County and PUMA "G3200030, G32000408" +County and PUMA "G3200030, G32000409" +County and PUMA "G3200030, G32000410" +County and PUMA "G3200030, G32000411" +County and PUMA "G3200030, G32000412" +County and PUMA "G3200030, G32000413" +County and PUMA "G3200050, G32000200" +County and PUMA "G3200070, G32000300" +County and PUMA "G3200090, G32000300" +County and PUMA "G3200110, G32000300" +County and PUMA "G3200130, G32000300" +County and PUMA "G3200150, G32000300" +County and PUMA "G3200170, G32000300" +County and PUMA "G3200190, G32000200" +County and PUMA "G3200210, G32000300" +County and PUMA "G3200230, G32000300" +County and PUMA "G3200270, G32000300" +County and PUMA "G3200290, G32000200" +County and PUMA "G3200310, G32000101" +County and PUMA "G3200310, G32000102" +County and PUMA "G3200310, G32000103" +County and PUMA "G3200330, G32000300" +County and PUMA "G3205100, G32000200" +County and PUMA "G3300010, G33000200" +County and PUMA "G3300030, G33000200" +County and PUMA "G3300030, G33000300" +County and PUMA "G3300050, G33000500" +County and PUMA "G3300070, G33000100" +County and PUMA "G3300090, G33000100" +County and PUMA "G3300110, G33000600" +County and PUMA "G3300110, G33000700" +County and PUMA "G3300110, G33000800" +County and PUMA "G3300110, G33000900" +County and PUMA "G3300130, G33000200" +County and PUMA "G3300130, G33000400" +County and PUMA "G3300130, G33000700" +County and PUMA "G3300150, G33000300" +County and PUMA "G3300150, G33000700" +County and PUMA "G3300150, G33001000" +County and PUMA "G3300170, G33000300" +County and PUMA "G3300190, G33000500" +County and PUMA "G3400010, G34000101" +County and PUMA "G3400010, G34000102" +County and PUMA "G3400010, G34002600" +County and PUMA "G3400030, G34000301" +County and PUMA "G3400030, G34000302" +County and PUMA "G3400030, G34000303" +County and PUMA "G3400030, G34000304" +County and PUMA "G3400030, G34000305" +County and PUMA "G3400030, G34000306" +County and PUMA "G3400030, G34000307" +County and PUMA "G3400030, G34000308" +County and PUMA "G3400050, G34002001" +County and PUMA "G3400050, G34002002" +County and PUMA "G3400050, G34002003" +County and PUMA "G3400070, G34002101" +County and PUMA "G3400070, G34002102" +County and PUMA "G3400070, G34002103" +County and PUMA "G3400070, G34002104" +County and PUMA "G3400090, G34002600" +County and PUMA "G3400110, G34002400" +County and PUMA "G3400110, G34002500" +County and PUMA "G3400130, G34001301" +County and PUMA "G3400130, G34001302" +County and PUMA "G3400130, G34001401" +County and PUMA "G3400130, G34001402" +County and PUMA "G3400130, G34001403" +County and PUMA "G3400130, G34001404" +County and PUMA "G3400150, G34002201" +County and PUMA "G3400150, G34002202" +County and PUMA "G3400170, G34000601" +County and PUMA "G3400170, G34000602" +County and PUMA "G3400170, G34000701" +County and PUMA "G3400170, G34000702" +County and PUMA "G3400170, G34000703" +County and PUMA "G3400190, G34000800" +County and PUMA "G3400210, G34002301" +County and PUMA "G3400210, G34002302" +County and PUMA "G3400210, G34002303" +County and PUMA "G3400230, G34000901" +County and PUMA "G3400230, G34000902" +County and PUMA "G3400230, G34000903" +County and PUMA "G3400230, G34000904" +County and PUMA "G3400230, G34000905" +County and PUMA "G3400230, G34000906" +County and PUMA "G3400230, G34000907" +County and PUMA "G3400250, G34001101" +County and PUMA "G3400250, G34001102" +County and PUMA "G3400250, G34001103" +County and PUMA "G3400250, G34001104" +County and PUMA "G3400250, G34001105" +County and PUMA "G3400250, G34001106" +County and PUMA "G3400270, G34001501" +County and PUMA "G3400270, G34001502" +County and PUMA "G3400270, G34001503" +County and PUMA "G3400270, G34001504" +County and PUMA "G3400290, G34001201" +County and PUMA "G3400290, G34001202" +County and PUMA "G3400290, G34001203" +County and PUMA "G3400290, G34001204" +County and PUMA "G3400290, G34001205" +County and PUMA "G3400310, G34000400" +County and PUMA "G3400310, G34000501" +County and PUMA "G3400310, G34000502" +County and PUMA "G3400310, G34000503" +County and PUMA "G3400330, G34002500" +County and PUMA "G3400350, G34001001" +County and PUMA "G3400350, G34001002" +County and PUMA "G3400350, G34001003" +County and PUMA "G3400370, G34001600" +County and PUMA "G3400390, G34001800" +County and PUMA "G3400390, G34001901" +County and PUMA "G3400390, G34001902" +County and PUMA "G3400390, G34001903" +County and PUMA "G3400390, G34001904" +County and PUMA "G3400410, G34001700" +County and PUMA "G3500010, G35000700" +County and PUMA "G3500010, G35000801" +County and PUMA "G3500010, G35000802" +County and PUMA "G3500010, G35000803" +County and PUMA "G3500010, G35000804" +County and PUMA "G3500010, G35000805" +County and PUMA "G3500010, G35000806" +County and PUMA "G3500030, G35000900" +County and PUMA "G3500050, G35001100" +County and PUMA "G3500060, G35000100" +County and PUMA "G3500070, G35000400" +County and PUMA "G3500090, G35000400" +County and PUMA "G3500110, G35000400" +County and PUMA "G3500130, G35001001" +County and PUMA "G3500130, G35001002" +County and PUMA "G3500150, G35001200" +County and PUMA "G3500170, G35000900" +County and PUMA "G3500190, G35000400" +County and PUMA "G3500210, G35000400" +County and PUMA "G3500230, G35000900" +County and PUMA "G3500250, G35001200" +County and PUMA "G3500270, G35001100" +County and PUMA "G3500280, G35000300" +County and PUMA "G3500290, G35000900" +County and PUMA "G3500310, G35000100" +County and PUMA "G3500330, G35000300" +County and PUMA "G3500350, G35001100" +County and PUMA "G3500370, G35000400" +County and PUMA "G3500390, G35000300" +County and PUMA "G3500410, G35000400" +County and PUMA "G3500430, G35000600" +County and PUMA "G3500450, G35000100" +County and PUMA "G3500450, G35000200" +County and PUMA "G3500470, G35000300" +County and PUMA "G3500490, G35000500" +County and PUMA "G3500510, G35000900" +County and PUMA "G3500530, G35000900" +County and PUMA "G3500550, G35000300" +County and PUMA "G3500570, G35000900" +County and PUMA "G3500590, G35000400" +County and PUMA "G3500610, G35000700" +County and PUMA "G3600010, G36002001" +County and PUMA "G3600010, G36002002" +County and PUMA "G3600030, G36002500" +County and PUMA "G3600050, G36003701" +County and PUMA "G3600050, G36003702" +County and PUMA "G3600050, G36003703" +County and PUMA "G3600050, G36003704" +County and PUMA "G3600050, G36003705" +County and PUMA "G3600050, G36003706" +County and PUMA "G3600050, G36003707" +County and PUMA "G3600050, G36003708" +County and PUMA "G3600050, G36003709" +County and PUMA "G3600050, G36003710" +County and PUMA "G3600070, G36002201" +County and PUMA "G3600070, G36002202" +County and PUMA "G3600070, G36002203" +County and PUMA "G3600090, G36002500" +County and PUMA "G3600110, G36000704" +County and PUMA "G3600130, G36002600" +County and PUMA "G3600150, G36002401" +County and PUMA "G3600150, G36002402" +County and PUMA "G3600170, G36002203" +County and PUMA "G3600190, G36000200" +County and PUMA "G3600210, G36002100" +County and PUMA "G3600230, G36001500" +County and PUMA "G3600250, G36002203" +County and PUMA "G3600270, G36002801" +County and PUMA "G3600270, G36002802" +County and PUMA "G3600290, G36001201" +County and PUMA "G3600290, G36001202" +County and PUMA "G3600290, G36001203" +County and PUMA "G3600290, G36001204" +County and PUMA "G3600290, G36001205" +County and PUMA "G3600290, G36001206" +County and PUMA "G3600290, G36001207" +County and PUMA "G3600310, G36000200" +County and PUMA "G3600330, G36000200" +County and PUMA "G3600350, G36001600" +County and PUMA "G3600370, G36001000" +County and PUMA "G3600390, G36002100" +County and PUMA "G3600410, G36000200" +County and PUMA "G3600430, G36000401" +County and PUMA "G3600430, G36000403" +County and PUMA "G3600450, G36000500" +County and PUMA "G3600470, G36004001" +County and PUMA "G3600470, G36004002" +County and PUMA "G3600470, G36004003" +County and PUMA "G3600470, G36004004" +County and PUMA "G3600470, G36004005" +County and PUMA "G3600470, G36004006" +County and PUMA "G3600470, G36004007" +County and PUMA "G3600470, G36004008" +County and PUMA "G3600470, G36004009" +County and PUMA "G3600470, G36004010" +County and PUMA "G3600470, G36004011" +County and PUMA "G3600470, G36004012" +County and PUMA "G3600470, G36004013" +County and PUMA "G3600470, G36004014" +County and PUMA "G3600470, G36004015" +County and PUMA "G3600470, G36004016" +County and PUMA "G3600470, G36004017" +County and PUMA "G3600470, G36004018" +County and PUMA "G3600490, G36000500" +County and PUMA "G3600510, G36001300" +County and PUMA "G3600530, G36001500" +County and PUMA "G3600550, G36000901" +County and PUMA "G3600550, G36000902" +County and PUMA "G3600550, G36000903" +County and PUMA "G3600550, G36000904" +County and PUMA "G3600550, G36000905" +County and PUMA "G3600550, G36000906" +County and PUMA "G3600570, G36001600" +County and PUMA "G3600590, G36003201" +County and PUMA "G3600590, G36003202" +County and PUMA "G3600590, G36003203" +County and PUMA "G3600590, G36003204" +County and PUMA "G3600590, G36003205" +County and PUMA "G3600590, G36003206" +County and PUMA "G3600590, G36003207" +County and PUMA "G3600590, G36003208" +County and PUMA "G3600590, G36003209" +County and PUMA "G3600590, G36003210" +County and PUMA "G3600590, G36003211" +County and PUMA "G3600590, G36003212" +County and PUMA "G3600610, G36003801" +County and PUMA "G3600610, G36003802" +County and PUMA "G3600610, G36003803" +County and PUMA "G3600610, G36003804" +County and PUMA "G3600610, G36003805" +County and PUMA "G3600610, G36003806" +County and PUMA "G3600610, G36003807" +County and PUMA "G3600610, G36003808" +County and PUMA "G3600610, G36003809" +County and PUMA "G3600610, G36003810" +County and PUMA "G3600630, G36001101" +County and PUMA "G3600630, G36001102" +County and PUMA "G3600650, G36000401" +County and PUMA "G3600650, G36000402" +County and PUMA "G3600650, G36000403" +County and PUMA "G3600670, G36000701" +County and PUMA "G3600670, G36000702" +County and PUMA "G3600670, G36000703" +County and PUMA "G3600670, G36000704" +County and PUMA "G3600690, G36001400" +County and PUMA "G3600710, G36002901" +County and PUMA "G3600710, G36002902" +County and PUMA "G3600710, G36002903" +County and PUMA "G3600730, G36001000" +County and PUMA "G3600750, G36000600" +County and PUMA "G3600770, G36000403" +County and PUMA "G3600790, G36003101" +County and PUMA "G3600810, G36004101" +County and PUMA "G3600810, G36004102" +County and PUMA "G3600810, G36004103" +County and PUMA "G3600810, G36004104" +County and PUMA "G3600810, G36004105" +County and PUMA "G3600810, G36004106" +County and PUMA "G3600810, G36004107" +County and PUMA "G3600810, G36004108" +County and PUMA "G3600810, G36004109" +County and PUMA "G3600810, G36004110" +County and PUMA "G3600810, G36004111" +County and PUMA "G3600810, G36004112" +County and PUMA "G3600810, G36004113" +County and PUMA "G3600810, G36004114" +County and PUMA "G3600830, G36001900" +County and PUMA "G3600850, G36003901" +County and PUMA "G3600850, G36003902" +County and PUMA "G3600850, G36003903" +County and PUMA "G3600870, G36003001" +County and PUMA "G3600870, G36003002" +County and PUMA "G3600870, G36003003" +County and PUMA "G3600890, G36000100" +County and PUMA "G3600910, G36001801" +County and PUMA "G3600910, G36001802" +County and PUMA "G3600930, G36001700" +County and PUMA "G3600950, G36000403" +County and PUMA "G3600970, G36002402" +County and PUMA "G3600990, G36000800" +County and PUMA "G3601010, G36002401" +County and PUMA "G3601010, G36002402" +County and PUMA "G3601030, G36003301" +County and PUMA "G3601030, G36003302" +County and PUMA "G3601030, G36003303" +County and PUMA "G3601030, G36003304" +County and PUMA "G3601030, G36003305" +County and PUMA "G3601030, G36003306" +County and PUMA "G3601030, G36003307" +County and PUMA "G3601030, G36003308" +County and PUMA "G3601030, G36003309" +County and PUMA "G3601030, G36003310" +County and PUMA "G3601030, G36003311" +County and PUMA "G3601030, G36003312" +County and PUMA "G3601030, G36003313" +County and PUMA "G3601050, G36002701" +County and PUMA "G3601070, G36002202" +County and PUMA "G3601090, G36002300" +County and PUMA "G3601110, G36002701" +County and PUMA "G3601110, G36002702" +County and PUMA "G3601130, G36000300" +County and PUMA "G3601150, G36000300" +County and PUMA "G3601170, G36000800" +County and PUMA "G3601190, G36003101" +County and PUMA "G3601190, G36003102" +County and PUMA "G3601190, G36003103" +County and PUMA "G3601190, G36003104" +County and PUMA "G3601190, G36003105" +County and PUMA "G3601190, G36003106" +County and PUMA "G3601190, G36003107" +County and PUMA "G3601210, G36001300" +County and PUMA "G3601230, G36001400" +County and PUMA "G3700010, G37001600" +County and PUMA "G3700030, G37002000" +County and PUMA "G3700050, G37000200" +County and PUMA "G3700070, G37005300" +County and PUMA "G3700090, G37000100" +County and PUMA "G3700110, G37000100" +County and PUMA "G3700130, G37004400" +County and PUMA "G3700150, G37000800" +County and PUMA "G3700170, G37004900" +County and PUMA "G3700190, G37004800" +County and PUMA "G3700210, G37002201" +County and PUMA "G3700210, G37002202" +County and PUMA "G3700230, G37002100" +County and PUMA "G3700250, G37003200" +County and PUMA "G3700250, G37003300" +County and PUMA "G3700270, G37002000" +County and PUMA "G3700290, G37000700" +County and PUMA "G3700310, G37004400" +County and PUMA "G3700330, G37000400" +County and PUMA "G3700350, G37002800" +County and PUMA "G3700370, G37001500" +County and PUMA "G3700390, G37002400" +County and PUMA "G3700410, G37000700" +County and PUMA "G3700430, G37002400" +County and PUMA "G3700450, G37002600" +County and PUMA "G3700450, G37002700" +County and PUMA "G3700470, G37004900" +County and PUMA "G3700490, G37004300" +County and PUMA "G3700510, G37005001" +County and PUMA "G3700510, G37005002" +County and PUMA "G3700510, G37005003" +County and PUMA "G3700530, G37000700" +County and PUMA "G3700550, G37000800" +County and PUMA "G3700570, G37003500" +County and PUMA "G3700590, G37001900" +County and PUMA "G3700610, G37003900" +County and PUMA "G3700630, G37001301" +County and PUMA "G3700630, G37001302" +County and PUMA "G3700650, G37000900" +County and PUMA "G3700670, G37001801" +County and PUMA "G3700670, G37001802" +County and PUMA "G3700670, G37001803" +County and PUMA "G3700690, G37000500" +County and PUMA "G3700710, G37003001" +County and PUMA "G3700710, G37003002" +County and PUMA "G3700730, G37000700" +County and PUMA "G3700750, G37002300" +County and PUMA "G3700770, G37000400" +County and PUMA "G3700790, G37001000" +County and PUMA "G3700810, G37001701" +County and PUMA "G3700810, G37001702" +County and PUMA "G3700810, G37001703" +County and PUMA "G3700810, G37001704" +County and PUMA "G3700830, G37000600" +County and PUMA "G3700850, G37003800" +County and PUMA "G3700870, G37002300" +County and PUMA "G3700890, G37002500" +County and PUMA "G3700910, G37000600" +County and PUMA "G3700930, G37005200" +County and PUMA "G3700950, G37000800" +County and PUMA "G3700970, G37001900" +County and PUMA "G3700970, G37002900" +County and PUMA "G3700990, G37002300" +County and PUMA "G3700990, G37002400" +County and PUMA "G3701010, G37001100" +County and PUMA "G3701030, G37004100" +County and PUMA "G3701050, G37001500" +County and PUMA "G3701070, G37004100" +County and PUMA "G3701090, G37002700" +County and PUMA "G3701110, G37002100" +County and PUMA "G3701130, G37002400" +County and PUMA "G3701150, G37002300" +County and PUMA "G3701170, G37000800" +County and PUMA "G3701190, G37003101" +County and PUMA "G3701190, G37003102" +County and PUMA "G3701190, G37003103" +County and PUMA "G3701190, G37003104" +County and PUMA "G3701190, G37003105" +County and PUMA "G3701190, G37003106" +County and PUMA "G3701190, G37003107" +County and PUMA "G3701190, G37003108" +County and PUMA "G3701210, G37000100" +County and PUMA "G3701230, G37003700" +County and PUMA "G3701250, G37003700" +County and PUMA "G3701270, G37000900" +County and PUMA "G3701290, G37004600" +County and PUMA "G3701290, G37004700" +County and PUMA "G3701310, G37000600" +County and PUMA "G3701330, G37004100" +County and PUMA "G3701330, G37004500" +County and PUMA "G3701350, G37001400" +County and PUMA "G3701370, G37004400" +County and PUMA "G3701390, G37000700" +County and PUMA "G3701410, G37004600" +County and PUMA "G3701430, G37000700" +County and PUMA "G3701450, G37000400" +County and PUMA "G3701470, G37004200" +County and PUMA "G3701490, G37002600" +County and PUMA "G3701510, G37003600" +County and PUMA "G3701530, G37005200" +County and PUMA "G3701550, G37004900" +County and PUMA "G3701550, G37005100" +County and PUMA "G3701570, G37000300" +County and PUMA "G3701590, G37003400" +County and PUMA "G3701610, G37002600" +County and PUMA "G3701630, G37003900" +County and PUMA "G3701650, G37005200" +County and PUMA "G3701670, G37003300" +County and PUMA "G3701690, G37000300" +County and PUMA "G3701710, G37000200" +County and PUMA "G3701730, G37002300" +County and PUMA "G3701750, G37002500" +County and PUMA "G3701770, G37000800" +County and PUMA "G3701790, G37005300" +County and PUMA "G3701790, G37005400" +County and PUMA "G3701810, G37000500" +County and PUMA "G3701830, G37001201" +County and PUMA "G3701830, G37001202" +County and PUMA "G3701830, G37001203" +County and PUMA "G3701830, G37001204" +County and PUMA "G3701830, G37001205" +County and PUMA "G3701830, G37001206" +County and PUMA "G3701830, G37001207" +County and PUMA "G3701830, G37001208" +County and PUMA "G3701850, G37000500" +County and PUMA "G3701850, G37000600" +County and PUMA "G3701870, G37000800" +County and PUMA "G3701890, G37000100" +County and PUMA "G3701910, G37004000" +County and PUMA "G3701930, G37000200" +County and PUMA "G3701950, G37001000" +County and PUMA "G3701970, G37001900" +County and PUMA "G3701990, G37000100" +County and PUMA "G3800010, G38000100" +County and PUMA "G3800030, G38000200" +County and PUMA "G3800050, G38000200" +County and PUMA "G3800070, G38000100" +County and PUMA "G3800090, G38000200" +County and PUMA "G3800110, G38000100" +County and PUMA "G3800130, G38000100" +County and PUMA "G3800150, G38000300" +County and PUMA "G3800170, G38000500" +County and PUMA "G3800190, G38000400" +County and PUMA "G3800210, G38000200" +County and PUMA "G3800230, G38000100" +County and PUMA "G3800250, G38000100" +County and PUMA "G3800270, G38000200" +County and PUMA "G3800290, G38000300" +County and PUMA "G3800310, G38000200" +County and PUMA "G3800330, G38000100" +County and PUMA "G3800350, G38000400" +County and PUMA "G3800370, G38000100" +County and PUMA "G3800390, G38000400" +County and PUMA "G3800410, G38000100" +County and PUMA "G3800430, G38000300" +County and PUMA "G3800450, G38000200" +County and PUMA "G3800470, G38000300" +County and PUMA "G3800490, G38000100" +County and PUMA "G3800510, G38000300" +County and PUMA "G3800530, G38000100" +County and PUMA "G3800550, G38000100" +County and PUMA "G3800570, G38000100" +County and PUMA "G3800590, G38000300" +County and PUMA "G3800610, G38000100" +County and PUMA "G3800630, G38000200" +County and PUMA "G3800650, G38000100" +County and PUMA "G3800670, G38000400" +County and PUMA "G3800690, G38000200" +County and PUMA "G3800710, G38000200" +County and PUMA "G3800730, G38000200" +County and PUMA "G3800750, G38000100" +County and PUMA "G3800770, G38000200" +County and PUMA "G3800790, G38000200" +County and PUMA "G3800810, G38000200" +County and PUMA "G3800830, G38000200" +County and PUMA "G3800850, G38000100" +County and PUMA "G3800870, G38000100" +County and PUMA "G3800890, G38000100" +County and PUMA "G3800910, G38000400" +County and PUMA "G3800930, G38000200" +County and PUMA "G3800950, G38000400" +County and PUMA "G3800970, G38000400" +County and PUMA "G3800990, G38000400" +County and PUMA "G3801010, G38000100" +County and PUMA "G3801030, G38000200" +County and PUMA "G3801050, G38000100" +County and PUMA "G3900010, G39005200" +County and PUMA "G3900030, G39002500" +County and PUMA "G3900050, G39002100" +County and PUMA "G3900070, G39001300" +County and PUMA "G3900090, G39005000" +County and PUMA "G3900110, G39002600" +County and PUMA "G3900130, G39003500" +County and PUMA "G3900150, G39005700" +County and PUMA "G3900170, G39005401" +County and PUMA "G3900170, G39005402" +County and PUMA "G3900170, G39005403" +County and PUMA "G3900190, G39003300" +County and PUMA "G3900210, G39002700" +County and PUMA "G3900230, G39004300" +County and PUMA "G3900250, G39005600" +County and PUMA "G3900250, G39005700" +County and PUMA "G3900270, G39005200" +County and PUMA "G3900290, G39003400" +County and PUMA "G3900310, G39002900" +County and PUMA "G3900330, G39002300" +County and PUMA "G3900350, G39000901" +County and PUMA "G3900350, G39000902" +County and PUMA "G3900350, G39000903" +County and PUMA "G3900350, G39000904" +County and PUMA "G3900350, G39000905" +County and PUMA "G3900350, G39000906" +County and PUMA "G3900350, G39000907" +County and PUMA "G3900350, G39000908" +County and PUMA "G3900350, G39000909" +County and PUMA "G3900350, G39000910" +County and PUMA "G3900370, G39004500" +County and PUMA "G3900390, G39000100" +County and PUMA "G3900410, G39004000" +County and PUMA "G3900430, G39000700" +County and PUMA "G3900450, G39003900" +County and PUMA "G3900470, G39004800" +County and PUMA "G3900490, G39004101" +County and PUMA "G3900490, G39004102" +County and PUMA "G3900490, G39004103" +County and PUMA "G3900490, G39004104" +County and PUMA "G3900490, G39004105" +County and PUMA "G3900490, G39004106" +County and PUMA "G3900490, G39004107" +County and PUMA "G3900490, G39004108" +County and PUMA "G3900490, G39004109" +County and PUMA "G3900490, G39004110" +County and PUMA "G3900490, G39004111" +County and PUMA "G3900510, G39000200" +County and PUMA "G3900530, G39005000" +County and PUMA "G3900550, G39001200" +County and PUMA "G3900570, G39004700" +County and PUMA "G3900590, G39002900" +County and PUMA "G3900610, G39005501" +County and PUMA "G3900610, G39005502" +County and PUMA "G3900610, G39005503" +County and PUMA "G3900610, G39005504" +County and PUMA "G3900610, G39005505" +County and PUMA "G3900610, G39005506" +County and PUMA "G3900610, G39005507" +County and PUMA "G3900630, G39002400" +County and PUMA "G3900650, G39002700" +County and PUMA "G3900670, G39003000" +County and PUMA "G3900690, G39000100" +County and PUMA "G3900710, G39005200" +County and PUMA "G3900730, G39004900" +County and PUMA "G3900750, G39002900" +County and PUMA "G3900770, G39002100" +County and PUMA "G3900790, G39004900" +County and PUMA "G3900810, G39003500" +County and PUMA "G3900830, G39002800" +County and PUMA "G3900850, G39001000" +County and PUMA "G3900850, G39001100" +County and PUMA "G3900850, G39001200" +County and PUMA "G3900870, G39005100" +County and PUMA "G3900890, G39003800" +County and PUMA "G3900910, G39002700" +County and PUMA "G3900930, G39000801" +County and PUMA "G3900930, G39000802" +County and PUMA "G3900950, G39000200" +County and PUMA "G3900950, G39000300" +County and PUMA "G3900950, G39000400" +County and PUMA "G3900950, G39000500" +County and PUMA "G3900950, G39000600" +County and PUMA "G3900970, G39004200" +County and PUMA "G3900990, G39001400" +County and PUMA "G3900990, G39001500" +County and PUMA "G3901010, G39002800" +County and PUMA "G3901030, G39001900" +County and PUMA "G3901050, G39005000" +County and PUMA "G3901070, G39002600" +County and PUMA "G3901090, G39004400" +County and PUMA "G3901110, G39003600" +County and PUMA "G3901130, G39004601" +County and PUMA "G3901130, G39004602" +County and PUMA "G3901130, G39004603" +County and PUMA "G3901130, G39004604" +County and PUMA "G3901150, G39003600" +County and PUMA "G3901170, G39002800" +County and PUMA "G3901190, G39003700" +County and PUMA "G3901210, G39003600" +County and PUMA "G3901230, G39000600" +County and PUMA "G3901250, G39000100" +County and PUMA "G3901270, G39003700" +County and PUMA "G3901290, G39004200" +County and PUMA "G3901310, G39004900" +County and PUMA "G3901330, G39001700" +County and PUMA "G3901350, G39004500" +County and PUMA "G3901370, G39002400" +County and PUMA "G3901390, G39002200" +County and PUMA "G3901410, G39004800" +County and PUMA "G3901430, G39000700" +County and PUMA "G3901450, G39005100" +County and PUMA "G3901470, G39002300" +County and PUMA "G3901490, G39004500" +County and PUMA "G3901510, G39003100" +County and PUMA "G3901510, G39003200" +County and PUMA "G3901510, G39003300" +County and PUMA "G3901530, G39001801" +County and PUMA "G3901530, G39001802" +County and PUMA "G3901530, G39001803" +County and PUMA "G3901530, G39001804" +County and PUMA "G3901530, G39001805" +County and PUMA "G3901550, G39001400" +County and PUMA "G3901550, G39001600" +County and PUMA "G3901570, G39003000" +County and PUMA "G3901590, G39004200" +County and PUMA "G3901610, G39002600" +County and PUMA "G3901630, G39004900" +County and PUMA "G3901650, G39005301" +County and PUMA "G3901650, G39005302" +County and PUMA "G3901670, G39003600" +County and PUMA "G3901690, G39002000" +County and PUMA "G3901710, G39000100" +County and PUMA "G3901730, G39000200" +County and PUMA "G3901730, G39000300" +County and PUMA "G3901730, G39000600" +County and PUMA "G3901750, G39002300" +County and PUMA "G4000010, G40000200" +County and PUMA "G4000030, G40000500" +County and PUMA "G4000050, G40000702" +County and PUMA "G4000070, G40000500" +County and PUMA "G4000090, G40000400" +County and PUMA "G4000110, G40000500" +County and PUMA "G4000130, G40000702" +County and PUMA "G4000150, G40000602" +County and PUMA "G4000170, G40000800" +County and PUMA "G4000190, G40000701" +County and PUMA "G4000210, G40000200" +County and PUMA "G4000230, G40000300" +County and PUMA "G4000250, G40000500" +County and PUMA "G4000270, G40000900" +County and PUMA "G4000290, G40000702" +County and PUMA "G4000310, G40000601" +County and PUMA "G4000310, G40000602" +County and PUMA "G4000330, G40000602" +County and PUMA "G4000350, G40000100" +County and PUMA "G4000370, G40001204" +County and PUMA "G4000370, G40001501" +County and PUMA "G4000370, G40001601" +County and PUMA "G4000390, G40000400" +County and PUMA "G4000410, G40000100" +County and PUMA "G4000430, G40000500" +County and PUMA "G4000450, G40000500" +County and PUMA "G4000470, G40001400" +County and PUMA "G4000490, G40000701" +County and PUMA "G4000510, G40001101" +County and PUMA "G4000530, G40000500" +County and PUMA "G4000550, G40000400" +County and PUMA "G4000570, G40000400" +County and PUMA "G4000590, G40000500" +County and PUMA "G4000610, G40000300" +County and PUMA "G4000630, G40001501" +County and PUMA "G4000650, G40000400" +County and PUMA "G4000670, G40000602" +County and PUMA "G4000690, G40000702" +County and PUMA "G4000710, G40001400" +County and PUMA "G4000730, G40000500" +County and PUMA "G4000750, G40000400" +County and PUMA "G4000770, G40000300" +County and PUMA "G4000790, G40000300" +County and PUMA "G4000810, G40001102" +County and PUMA "G4000830, G40001102" +County and PUMA "G4000850, G40000701" +County and PUMA "G4000870, G40001101" +County and PUMA "G4000890, G40000300" +County and PUMA "G4000910, G40001302" +County and PUMA "G4000930, G40000500" +County and PUMA "G4000950, G40000702" +County and PUMA "G4000970, G40000100" +County and PUMA "G4000990, G40000701" +County and PUMA "G4001010, G40001302" +County and PUMA "G4001030, G40001400" +County and PUMA "G4001050, G40000100" +County and PUMA "G4001070, G40001501" +County and PUMA "G4001090, G40001001" +County and PUMA "G4001090, G40001002" +County and PUMA "G4001090, G40001003" +County and PUMA "G4001090, G40001004" +County and PUMA "G4001090, G40001005" +County and PUMA "G4001090, G40001006" +County and PUMA "G4001110, G40001302" +County and PUMA "G4001130, G40001204" +County and PUMA "G4001130, G40001601" +County and PUMA "G4001150, G40000100" +County and PUMA "G4001170, G40001601" +County and PUMA "G4001190, G40001501" +County and PUMA "G4001210, G40000300" +County and PUMA "G4001230, G40000701" +County and PUMA "G4001230, G40000702" +County and PUMA "G4001250, G40001101" +County and PUMA "G4001250, G40001102" +County and PUMA "G4001270, G40000300" +County and PUMA "G4001290, G40000400" +County and PUMA "G4001310, G40000100" +County and PUMA "G4001310, G40001301" +County and PUMA "G4001330, G40001501" +County and PUMA "G4001350, G40000200" +County and PUMA "G4001370, G40000602" +County and PUMA "G4001390, G40000500" +County and PUMA "G4001410, G40000602" +County and PUMA "G4001430, G40001201" +County and PUMA "G4001430, G40001202" +County and PUMA "G4001430, G40001203" +County and PUMA "G4001430, G40001204" +County and PUMA "G4001450, G40001301" +County and PUMA "G4001450, G40001302" +County and PUMA "G4001470, G40001601" +County and PUMA "G4001490, G40000400" +County and PUMA "G4001510, G40000500" +County and PUMA "G4001530, G40000500" +County and PUMA "G4100010, G41000100" +County and PUMA "G4100030, G41000600" +County and PUMA "G4100050, G41001317" +County and PUMA "G4100050, G41001318" +County and PUMA "G4100050, G41001319" +County and PUMA "G4100070, G41000500" +County and PUMA "G4100090, G41000500" +County and PUMA "G4100110, G41000800" +County and PUMA "G4100130, G41000200" +County and PUMA "G4100150, G41000800" +County and PUMA "G4100170, G41000400" +County and PUMA "G4100190, G41001000" +County and PUMA "G4100210, G41000200" +County and PUMA "G4100230, G41000200" +County and PUMA "G4100250, G41000300" +County and PUMA "G4100270, G41000200" +County and PUMA "G4100290, G41000901" +County and PUMA "G4100290, G41000902" +County and PUMA "G4100310, G41000200" +County and PUMA "G4100330, G41000800" +County and PUMA "G4100350, G41000300" +County and PUMA "G4100370, G41000300" +County and PUMA "G4100390, G41000703" +County and PUMA "G4100390, G41000704" +County and PUMA "G4100390, G41000705" +County and PUMA "G4100410, G41000500" +County and PUMA "G4100430, G41000600" +County and PUMA "G4100450, G41000300" +County and PUMA "G4100470, G41001103" +County and PUMA "G4100470, G41001104" +County and PUMA "G4100470, G41001105" +County and PUMA "G4100490, G41000200" +County and PUMA "G4100510, G41001301" +County and PUMA "G4100510, G41001302" +County and PUMA "G4100510, G41001303" +County and PUMA "G4100510, G41001305" +County and PUMA "G4100510, G41001314" +County and PUMA "G4100510, G41001316" +County and PUMA "G4100530, G41001200" +County and PUMA "G4100550, G41000200" +County and PUMA "G4100570, G41000500" +County and PUMA "G4100590, G41000100" +County and PUMA "G4100610, G41000100" +County and PUMA "G4100630, G41000100" +County and PUMA "G4100650, G41000200" +County and PUMA "G4100670, G41001320" +County and PUMA "G4100670, G41001321" +County and PUMA "G4100670, G41001322" +County and PUMA "G4100670, G41001323" +County and PUMA "G4100670, G41001324" +County and PUMA "G4100690, G41000200" +County and PUMA "G4100710, G41001200" +County and PUMA "G4200010, G42003701" +County and PUMA "G4200030, G42001701" +County and PUMA "G4200030, G42001702" +County and PUMA "G4200030, G42001801" +County and PUMA "G4200030, G42001802" +County and PUMA "G4200030, G42001803" +County and PUMA "G4200030, G42001804" +County and PUMA "G4200030, G42001805" +County and PUMA "G4200030, G42001806" +County and PUMA "G4200030, G42001807" +County and PUMA "G4200050, G42001900" +County and PUMA "G4200070, G42001501" +County and PUMA "G4200070, G42001502" +County and PUMA "G4200090, G42003800" +County and PUMA "G4200110, G42002701" +County and PUMA "G4200110, G42002702" +County and PUMA "G4200110, G42002703" +County and PUMA "G4200130, G42002200" +County and PUMA "G4200150, G42000400" +County and PUMA "G4200170, G42003001" +County and PUMA "G4200170, G42003002" +County and PUMA "G4200170, G42003003" +County and PUMA "G4200170, G42003004" +County and PUMA "G4200190, G42001600" +County and PUMA "G4200210, G42002100" +County and PUMA "G4200230, G42000300" +County and PUMA "G4200250, G42002801" +County and PUMA "G4200270, G42001200" +County and PUMA "G4200290, G42003401" +County and PUMA "G4200290, G42003402" +County and PUMA "G4200290, G42003403" +County and PUMA "G4200290, G42003404" +County and PUMA "G4200310, G42001300" +County and PUMA "G4200330, G42000300" +County and PUMA "G4200350, G42000900" +County and PUMA "G4200370, G42000803" +County and PUMA "G4200390, G42000200" +County and PUMA "G4200410, G42002301" +County and PUMA "G4200410, G42002302" +County and PUMA "G4200430, G42002401" +County and PUMA "G4200430, G42002402" +County and PUMA "G4200450, G42003301" +County and PUMA "G4200450, G42003302" +County and PUMA "G4200450, G42003303" +County and PUMA "G4200450, G42003304" +County and PUMA "G4200470, G42000300" +County and PUMA "G4200490, G42000101" +County and PUMA "G4200490, G42000102" +County and PUMA "G4200510, G42003900" +County and PUMA "G4200530, G42001300" +County and PUMA "G4200550, G42003701" +County and PUMA "G4200550, G42003702" +County and PUMA "G4200570, G42003800" +County and PUMA "G4200590, G42004002" +County and PUMA "G4200610, G42002200" +County and PUMA "G4200630, G42001900" +County and PUMA "G4200650, G42001300" +County and PUMA "G4200670, G42001100" +County and PUMA "G4200690, G42000701" +County and PUMA "G4200690, G42000702" +County and PUMA "G4200710, G42003501" +County and PUMA "G4200710, G42003502" +County and PUMA "G4200710, G42003503" +County and PUMA "G4200710, G42003504" +County and PUMA "G4200730, G42001501" +County and PUMA "G4200750, G42002500" +County and PUMA "G4200770, G42002801" +County and PUMA "G4200770, G42002802" +County and PUMA "G4200770, G42002803" +County and PUMA "G4200770, G42002901" +County and PUMA "G4200790, G42000801" +County and PUMA "G4200790, G42000802" +County and PUMA "G4200790, G42000803" +County and PUMA "G4200810, G42000900" +County and PUMA "G4200830, G42000300" +County and PUMA "G4200850, G42001400" +County and PUMA "G4200870, G42001100" +County and PUMA "G4200890, G42000600" +County and PUMA "G4200910, G42003101" +County and PUMA "G4200910, G42003102" +County and PUMA "G4200910, G42003103" +County and PUMA "G4200910, G42003104" +County and PUMA "G4200910, G42003105" +County and PUMA "G4200910, G42003106" +County and PUMA "G4200930, G42001000" +County and PUMA "G4200950, G42002901" +County and PUMA "G4200950, G42002902" +County and PUMA "G4200970, G42001000" +County and PUMA "G4200990, G42002301" +County and PUMA "G4201010, G42003201" +County and PUMA "G4201010, G42003202" +County and PUMA "G4201010, G42003203" +County and PUMA "G4201010, G42003204" +County and PUMA "G4201010, G42003205" +County and PUMA "G4201010, G42003206" +County and PUMA "G4201010, G42003207" +County and PUMA "G4201010, G42003208" +County and PUMA "G4201010, G42003209" +County and PUMA "G4201010, G42003210" +County and PUMA "G4201010, G42003211" +County and PUMA "G4201030, G42000500" +County and PUMA "G4201050, G42000300" +County and PUMA "G4201070, G42002600" +County and PUMA "G4201090, G42001100" +County and PUMA "G4201110, G42003800" +County and PUMA "G4201130, G42000400" +County and PUMA "G4201150, G42000500" +County and PUMA "G4201170, G42000400" +County and PUMA "G4201190, G42001100" +County and PUMA "G4201210, G42001300" +County and PUMA "G4201230, G42000200" +County and PUMA "G4201250, G42004001" +County and PUMA "G4201250, G42004002" +County and PUMA "G4201270, G42000500" +County and PUMA "G4201290, G42002001" +County and PUMA "G4201290, G42002002" +County and PUMA "G4201290, G42002003" +County and PUMA "G4201310, G42000702" +County and PUMA "G4201330, G42003601" +County and PUMA "G4201330, G42003602" +County and PUMA "G4201330, G42003603" +County and PUMA "G4400010, G44000300" +County and PUMA "G4400030, G44000201" +County and PUMA "G4400050, G44000300" +County and PUMA "G4400070, G44000101" +County and PUMA "G4400070, G44000102" +County and PUMA "G4400070, G44000103" +County and PUMA "G4400070, G44000104" +County and PUMA "G4400090, G44000400" +County and PUMA "G4500010, G45001600" +County and PUMA "G4500030, G45001500" +County and PUMA "G4500050, G45001300" +County and PUMA "G4500070, G45000200" +County and PUMA "G4500090, G45001300" +County and PUMA "G4500110, G45001300" +County and PUMA "G4500130, G45001400" +County and PUMA "G4500150, G45001201" +County and PUMA "G4500150, G45001202" +County and PUMA "G4500150, G45001203" +County and PUMA "G4500150, G45001204" +County and PUMA "G4500170, G45000605" +County and PUMA "G4500190, G45001201" +County and PUMA "G4500190, G45001202" +County and PUMA "G4500190, G45001203" +County and PUMA "G4500190, G45001204" +County and PUMA "G4500210, G45000400" +County and PUMA "G4500230, G45000400" +County and PUMA "G4500250, G45000700" +County and PUMA "G4500270, G45000800" +County and PUMA "G4500290, G45001300" +County and PUMA "G4500310, G45000900" +County and PUMA "G4500330, G45001000" +County and PUMA "G4500350, G45001201" +County and PUMA "G4500350, G45001204" +County and PUMA "G4500370, G45001500" +County and PUMA "G4500390, G45000603" +County and PUMA "G4500410, G45000900" +County and PUMA "G4500430, G45001000" +County and PUMA "G4500450, G45000102" +County and PUMA "G4500450, G45000103" +County and PUMA "G4500450, G45000104" +County and PUMA "G4500450, G45000105" +County and PUMA "G4500470, G45001600" +County and PUMA "G4500490, G45001300" +County and PUMA "G4500510, G45001101" +County and PUMA "G4500510, G45001102" +County and PUMA "G4500530, G45001400" +County and PUMA "G4500550, G45000605" +County and PUMA "G4500570, G45000700" +County and PUMA "G4500590, G45000105" +County and PUMA "G4500610, G45000800" +County and PUMA "G4500630, G45000601" +County and PUMA "G4500630, G45000602" +County and PUMA "G4500650, G45001600" +County and PUMA "G4500670, G45001000" +County and PUMA "G4500690, G45000700" +County and PUMA "G4500710, G45000400" +County and PUMA "G4500730, G45000101" +County and PUMA "G4500750, G45001300" +County and PUMA "G4500770, G45000101" +County and PUMA "G4500790, G45000603" +County and PUMA "G4500790, G45000604" +County and PUMA "G4500790, G45000605" +County and PUMA "G4500810, G45000601" +County and PUMA "G4500830, G45000301" +County and PUMA "G4500830, G45000302" +County and PUMA "G4500850, G45000800" +County and PUMA "G4500870, G45000400" +County and PUMA "G4500890, G45000800" +County and PUMA "G4500910, G45000501" +County and PUMA "G4500910, G45000502" +County and PUMA "G4600030, G46000400" +County and PUMA "G4600050, G46000400" +County and PUMA "G4600070, G46000200" +County and PUMA "G4600090, G46000400" +County and PUMA "G4600110, G46000400" +County and PUMA "G4600130, G46000300" +County and PUMA "G4600150, G46000400" +County and PUMA "G4600170, G46000200" +County and PUMA "G4600190, G46000100" +County and PUMA "G4600210, G46000300" +County and PUMA "G4600230, G46000200" +County and PUMA "G4600250, G46000300" +County and PUMA "G4600270, G46000500" +County and PUMA "G4600290, G46000300" +County and PUMA "G4600310, G46000200" +County and PUMA "G4600330, G46000100" +County and PUMA "G4600350, G46000400" +County and PUMA "G4600370, G46000300" +County and PUMA "G4600390, G46000300" +County and PUMA "G4600410, G46000200" +County and PUMA "G4600430, G46000400" +County and PUMA "G4600450, G46000300" +County and PUMA "G4600470, G46000200" +County and PUMA "G4600490, G46000300" +County and PUMA "G4600510, G46000300" +County and PUMA "G4600530, G46000200" +County and PUMA "G4600550, G46000200" +County and PUMA "G4600570, G46000300" +County and PUMA "G4600590, G46000400" +County and PUMA "G4600610, G46000400" +County and PUMA "G4600630, G46000100" +County and PUMA "G4600650, G46000200" +County and PUMA "G4600670, G46000400" +County and PUMA "G4600690, G46000200" +County and PUMA "G4600710, G46000200" +County and PUMA "G4600730, G46000400" +County and PUMA "G4600750, G46000200" +County and PUMA "G4600770, G46000400" +County and PUMA "G4600790, G46000400" +County and PUMA "G4600810, G46000100" +County and PUMA "G4600830, G46000500" +County and PUMA "G4600830, G46000600" +County and PUMA "G4600850, G46000200" +County and PUMA "G4600870, G46000500" +County and PUMA "G4600890, G46000300" +County and PUMA "G4600910, G46000300" +County and PUMA "G4600930, G46000100" +County and PUMA "G4600950, G46000200" +County and PUMA "G4600970, G46000400" +County and PUMA "G4600990, G46000500" +County and PUMA "G4600990, G46000600" +County and PUMA "G4601010, G46000400" +County and PUMA "G4601020, G46000200" +County and PUMA "G4601030, G46000100" +County and PUMA "G4601050, G46000100" +County and PUMA "G4601070, G46000300" +County and PUMA "G4601090, G46000300" +County and PUMA "G4601110, G46000400" +County and PUMA "G4601150, G46000300" +County and PUMA "G4601170, G46000200" +County and PUMA "G4601190, G46000200" +County and PUMA "G4601210, G46000200" +County and PUMA "G4601230, G46000200" +County and PUMA "G4601250, G46000500" +County and PUMA "G4601270, G46000500" +County and PUMA "G4601290, G46000300" +County and PUMA "G4601350, G46000500" +County and PUMA "G4601370, G46000200" +County and PUMA "G4700010, G47001601" +County and PUMA "G4700030, G47002700" +County and PUMA "G4700050, G47000200" +County and PUMA "G4700070, G47002100" +County and PUMA "G4700090, G47001700" +County and PUMA "G4700110, G47001900" +County and PUMA "G4700130, G47000900" +County and PUMA "G4700150, G47000600" +County and PUMA "G4700170, G47000200" +County and PUMA "G4700190, G47001200" +County and PUMA "G4700210, G47000400" +County and PUMA "G4700230, G47003000" +County and PUMA "G4700250, G47000900" +County and PUMA "G4700270, G47000700" +County and PUMA "G4700290, G47001400" +County and PUMA "G4700310, G47002200" +County and PUMA "G4700330, G47000100" +County and PUMA "G4700350, G47000800" +County and PUMA "G4700370, G47002501" +County and PUMA "G4700370, G47002502" +County and PUMA "G4700370, G47002503" +County and PUMA "G4700370, G47002504" +County and PUMA "G4700370, G47002505" +County and PUMA "G4700390, G47002900" +County and PUMA "G4700410, G47000600" +County and PUMA "G4700430, G47000400" +County and PUMA "G4700450, G47000100" +County and PUMA "G4700470, G47003100" +County and PUMA "G4700490, G47000800" +County and PUMA "G4700510, G47002200" +County and PUMA "G4700530, G47000100" +County and PUMA "G4700550, G47002800" +County and PUMA "G4700570, G47001400" +County and PUMA "G4700590, G47001200" +County and PUMA "G4700610, G47002100" +County and PUMA "G4700630, G47001400" +County and PUMA "G4700650, G47002001" +County and PUMA "G4700650, G47002002" +County and PUMA "G4700650, G47002003" +County and PUMA "G4700670, G47000900" +County and PUMA "G4700690, G47002900" +County and PUMA "G4700710, G47002900" +County and PUMA "G4700730, G47001000" +County and PUMA "G4700750, G47002900" +County and PUMA "G4700770, G47002900" +County and PUMA "G4700790, G47000200" +County and PUMA "G4700810, G47000400" +County and PUMA "G4700830, G47000200" +County and PUMA "G4700850, G47000200" +County and PUMA "G4700870, G47000700" +County and PUMA "G4700890, G47001500" +County and PUMA "G4700910, G47001200" +County and PUMA "G4700930, G47001601" +County and PUMA "G4700930, G47001602" +County and PUMA "G4700930, G47001603" +County and PUMA "G4700930, G47001604" +County and PUMA "G4700950, G47000100" +County and PUMA "G4700970, G47003100" +County and PUMA "G4700990, G47002800" +County and PUMA "G4701010, G47002800" +County and PUMA "G4701030, G47002200" +County and PUMA "G4701050, G47001800" +County and PUMA "G4701070, G47001900" +County and PUMA "G4701090, G47002900" +County and PUMA "G4701110, G47000600" +County and PUMA "G4701130, G47003000" +County and PUMA "G4701150, G47002100" +County and PUMA "G4701170, G47002700" +County and PUMA "G4701190, G47002700" +County and PUMA "G4701210, G47002100" +County and PUMA "G4701230, G47001800" +County and PUMA "G4701250, G47000300" +County and PUMA "G4701270, G47002200" +County and PUMA "G4701290, G47000900" +County and PUMA "G4701310, G47000100" +County and PUMA "G4701330, G47000700" +County and PUMA "G4701350, G47002800" +County and PUMA "G4701370, G47000700" +County and PUMA "G4701390, G47001900" +County and PUMA "G4701410, G47000700" +County and PUMA "G4701430, G47002100" +County and PUMA "G4701450, G47001800" +County and PUMA "G4701470, G47000400" +County and PUMA "G4701490, G47002401" +County and PUMA "G4701490, G47002402" +County and PUMA "G4701510, G47000900" +County and PUMA "G4701530, G47002100" +County and PUMA "G4701550, G47001500" +County and PUMA "G4701570, G47003201" +County and PUMA "G4701570, G47003202" +County and PUMA "G4701570, G47003203" +County and PUMA "G4701570, G47003204" +County and PUMA "G4701570, G47003205" +County and PUMA "G4701570, G47003206" +County and PUMA "G4701570, G47003207" +County and PUMA "G4701570, G47003208" +County and PUMA "G4701590, G47000600" +County and PUMA "G4701610, G47000300" +County and PUMA "G4701630, G47001000" +County and PUMA "G4701630, G47001100" +County and PUMA "G4701650, G47000500" +County and PUMA "G4701670, G47003100" +County and PUMA "G4701690, G47000600" +County and PUMA "G4701710, G47001200" +County and PUMA "G4701730, G47001601" +County and PUMA "G4701750, G47000800" +County and PUMA "G4701770, G47000600" +County and PUMA "G4701790, G47001300" +County and PUMA "G4701810, G47002800" +County and PUMA "G4701830, G47000200" +County and PUMA "G4701850, G47000800" +County and PUMA "G4701870, G47002600" +County and PUMA "G4701890, G47002300" +County and PUMA "G4800010, G48001800" +County and PUMA "G4800030, G48003200" +County and PUMA "G4800050, G48004000" +County and PUMA "G4800070, G48006500" +County and PUMA "G4800090, G48000600" +County and PUMA "G4800110, G48000100" +County and PUMA "G4800130, G48006100" +County and PUMA "G4800150, G48005000" +County and PUMA "G4800170, G48000400" +County and PUMA "G4800190, G48006100" +County and PUMA "G4800210, G48005100" +County and PUMA "G4800230, G48000600" +County and PUMA "G4800250, G48006500" +County and PUMA "G4800270, G48003501" +County and PUMA "G4800270, G48003502" +County and PUMA "G4800290, G48005901" +County and PUMA "G4800290, G48005902" +County and PUMA "G4800290, G48005903" +County and PUMA "G4800290, G48005904" +County and PUMA "G4800290, G48005905" +County and PUMA "G4800290, G48005906" +County and PUMA "G4800290, G48005907" +County and PUMA "G4800290, G48005908" +County and PUMA "G4800290, G48005909" +County and PUMA "G4800290, G48005910" +County and PUMA "G4800290, G48005911" +County and PUMA "G4800290, G48005912" +County and PUMA "G4800290, G48005913" +County and PUMA "G4800290, G48005914" +County and PUMA "G4800290, G48005915" +County and PUMA "G4800290, G48005916" +County and PUMA "G4800310, G48006000" +County and PUMA "G4800330, G48002800" +County and PUMA "G4800350, G48003700" +County and PUMA "G4800370, G48001100" +County and PUMA "G4800390, G48004801" +County and PUMA "G4800390, G48004802" +County and PUMA "G4800390, G48004803" +County and PUMA "G4800410, G48003602" +County and PUMA "G4800430, G48003200" +County and PUMA "G4800450, G48000100" +County and PUMA "G4800470, G48006900" +County and PUMA "G4800490, G48002600" +County and PUMA "G4800510, G48003601" +County and PUMA "G4800530, G48003400" +County and PUMA "G4800550, G48005100" +County and PUMA "G4800570, G48005600" +County and PUMA "G4800590, G48002600" +County and PUMA "G4800610, G48006701" +County and PUMA "G4800610, G48006702" +County and PUMA "G4800610, G48006703" +County and PUMA "G4800630, G48001300" +County and PUMA "G4800650, G48000100" +County and PUMA "G4800670, G48001100" +County and PUMA "G4800690, G48000100" +County and PUMA "G4800710, G48004400" +County and PUMA "G4800730, G48001700" +County and PUMA "G4800750, G48000100" +County and PUMA "G4800770, G48000600" +County and PUMA "G4800790, G48000400" +County and PUMA "G4800810, G48002800" +County and PUMA "G4800830, G48002600" +County and PUMA "G4800850, G48001901" +County and PUMA "G4800850, G48001902" +County and PUMA "G4800850, G48001903" +County and PUMA "G4800850, G48001904" +County and PUMA "G4800850, G48001905" +County and PUMA "G4800850, G48001906" +County and PUMA "G4800850, G48001907" +County and PUMA "G4800870, G48000100" +County and PUMA "G4800890, G48005000" +County and PUMA "G4800910, G48005800" +County and PUMA "G4800930, G48002600" +County and PUMA "G4800950, G48002800" +County and PUMA "G4800970, G48000800" +County and PUMA "G4800990, G48003400" +County and PUMA "G4801010, G48000600" +County and PUMA "G4801030, G48003200" +County and PUMA "G4801050, G48002800" +County and PUMA "G4801070, G48000400" +County and PUMA "G4801090, G48003200" +County and PUMA "G4801110, G48000100" +County and PUMA "G4801130, G48002301" +County and PUMA "G4801130, G48002302" +County and PUMA "G4801130, G48002303" +County and PUMA "G4801130, G48002304" +County and PUMA "G4801130, G48002305" +County and PUMA "G4801130, G48002306" +County and PUMA "G4801130, G48002307" +County and PUMA "G4801130, G48002308" +County and PUMA "G4801130, G48002309" +County and PUMA "G4801130, G48002310" +County and PUMA "G4801130, G48002311" +County and PUMA "G4801130, G48002312" +County and PUMA "G4801130, G48002313" +County and PUMA "G4801130, G48002314" +County and PUMA "G4801130, G48002315" +County and PUMA "G4801130, G48002316" +County and PUMA "G4801130, G48002317" +County and PUMA "G4801130, G48002318" +County and PUMA "G4801130, G48002319" +County and PUMA "G4801130, G48002320" +County and PUMA "G4801130, G48002321" +County and PUMA "G4801130, G48002322" +County and PUMA "G4801150, G48002800" +County and PUMA "G4801170, G48000100" +County and PUMA "G4801190, G48001000" +County and PUMA "G4801210, G48002001" +County and PUMA "G4801210, G48002002" +County and PUMA "G4801210, G48002003" +County and PUMA "G4801210, G48002004" +County and PUMA "G4801210, G48002005" +County and PUMA "G4801210, G48002006" +County and PUMA "G4801230, G48005500" +County and PUMA "G4801250, G48000400" +County and PUMA "G4801270, G48006200" +County and PUMA "G4801290, G48000100" +County and PUMA "G4801310, G48006400" +County and PUMA "G4801330, G48002600" +County and PUMA "G4801350, G48003100" +County and PUMA "G4801370, G48006200" +County and PUMA "G4801390, G48002101" +County and PUMA "G4801410, G48003301" +County and PUMA "G4801410, G48003302" +County and PUMA "G4801410, G48003303" +County and PUMA "G4801410, G48003304" +County and PUMA "G4801410, G48003305" +County and PUMA "G4801410, G48003306" +County and PUMA "G4801430, G48002200" +County and PUMA "G4801450, G48003700" +County and PUMA "G4801470, G48000800" +County and PUMA "G4801490, G48005100" +County and PUMA "G4801510, G48002600" +County and PUMA "G4801530, G48000400" +County and PUMA "G4801550, G48000600" +County and PUMA "G4801570, G48004901" +County and PUMA "G4801570, G48004902" +County and PUMA "G4801570, G48004903" +County and PUMA "G4801570, G48004904" +County and PUMA "G4801570, G48004905" +County and PUMA "G4801590, G48001000" +County and PUMA "G4801610, G48003700" +County and PUMA "G4801630, G48006100" +County and PUMA "G4801650, G48003200" +County and PUMA "G4801670, G48004701" +County and PUMA "G4801670, G48004702" +County and PUMA "G4801690, G48000400" +County and PUMA "G4801710, G48006000" +County and PUMA "G4801730, G48002800" +County and PUMA "G4801750, G48005500" +County and PUMA "G4801770, G48005500" +County and PUMA "G4801790, G48000100" +County and PUMA "G4801810, G48000800" +County and PUMA "G4801830, G48001600" +County and PUMA "G4801850, G48003601" +County and PUMA "G4801870, G48005700" +County and PUMA "G4801890, G48000400" +County and PUMA "G4801910, G48000100" +County and PUMA "G4801930, G48003400" +County and PUMA "G4801950, G48000100" +County and PUMA "G4801970, G48000600" +County and PUMA "G4801990, G48004200" +County and PUMA "G4802010, G48004601" +County and PUMA "G4802010, G48004602" +County and PUMA "G4802010, G48004603" +County and PUMA "G4802010, G48004604" +County and PUMA "G4802010, G48004605" +County and PUMA "G4802010, G48004606" +County and PUMA "G4802010, G48004607" +County and PUMA "G4802010, G48004608" +County and PUMA "G4802010, G48004609" +County and PUMA "G4802010, G48004610" +County and PUMA "G4802010, G48004611" +County and PUMA "G4802010, G48004612" +County and PUMA "G4802010, G48004613" +County and PUMA "G4802010, G48004614" +County and PUMA "G4802010, G48004615" +County and PUMA "G4802010, G48004616" +County and PUMA "G4802010, G48004617" +County and PUMA "G4802010, G48004618" +County and PUMA "G4802010, G48004619" +County and PUMA "G4802010, G48004620" +County and PUMA "G4802010, G48004621" +County and PUMA "G4802010, G48004622" +County and PUMA "G4802010, G48004623" +County and PUMA "G4802010, G48004624" +County and PUMA "G4802010, G48004625" +County and PUMA "G4802010, G48004626" +County and PUMA "G4802010, G48004627" +County and PUMA "G4802010, G48004628" +County and PUMA "G4802010, G48004629" +County and PUMA "G4802010, G48004630" +County and PUMA "G4802010, G48004631" +County and PUMA "G4802010, G48004632" +County and PUMA "G4802010, G48004633" +County and PUMA "G4802010, G48004634" +County and PUMA "G4802010, G48004635" +County and PUMA "G4802010, G48004636" +County and PUMA "G4802010, G48004637" +County and PUMA "G4802010, G48004638" +County and PUMA "G4802030, G48001200" +County and PUMA "G4802050, G48000100" +County and PUMA "G4802070, G48002600" +County and PUMA "G4802090, G48005400" +County and PUMA "G4802110, G48000100" +County and PUMA "G4802130, G48001800" +County and PUMA "G4802150, G48006801" +County and PUMA "G4802150, G48006802" +County and PUMA "G4802150, G48006803" +County and PUMA "G4802150, G48006804" +County and PUMA "G4802150, G48006805" +County and PUMA "G4802150, G48006806" +County and PUMA "G4802150, G48006807" +County and PUMA "G4802170, G48003700" +County and PUMA "G4802190, G48000400" +County and PUMA "G4802210, G48002200" +County and PUMA "G4802230, G48001000" +County and PUMA "G4802250, G48003900" +County and PUMA "G4802270, G48002800" +County and PUMA "G4802290, G48003200" +County and PUMA "G4802310, G48000900" +County and PUMA "G4802330, G48000100" +County and PUMA "G4802350, G48002800" +County and PUMA "G4802370, G48000600" +County and PUMA "G4802390, G48005500" +County and PUMA "G4802410, G48004100" +County and PUMA "G4802430, G48003200" +County and PUMA "G4802450, G48004301" +County and PUMA "G4802450, G48004302" +County and PUMA "G4802470, G48006400" +County and PUMA "G4802490, G48006900" +County and PUMA "G4802510, G48002102" +County and PUMA "G4802530, G48002600" +County and PUMA "G4802550, G48005500" +County and PUMA "G4802570, G48001400" +County and PUMA "G4802590, G48006000" +County and PUMA "G4802610, G48006900" +County and PUMA "G4802630, G48002600" +County and PUMA "G4802650, G48006000" +County and PUMA "G4802670, G48002800" +County and PUMA "G4802690, G48000400" +County and PUMA "G4802710, G48006200" +County and PUMA "G4802730, G48006900" +County and PUMA "G4802750, G48002600" +County and PUMA "G4802770, G48001000" +County and PUMA "G4802790, G48000400" +County and PUMA "G4802810, G48003400" +County and PUMA "G4802830, G48006200" +County and PUMA "G4802850, G48005500" +County and PUMA "G4802870, G48005100" +County and PUMA "G4802890, G48003601" +County and PUMA "G4802910, G48004400" +County and PUMA "G4802930, G48003700" +County and PUMA "G4802950, G48000100" +County and PUMA "G4802970, G48006400" +County and PUMA "G4802990, G48003400" +County and PUMA "G4803010, G48003200" +County and PUMA "G4803030, G48000501" +County and PUMA "G4803030, G48000502" +County and PUMA "G4803050, G48000400" +County and PUMA "G4803070, G48002800" +County and PUMA "G4803090, G48003801" +County and PUMA "G4803090, G48003802" +County and PUMA "G4803110, G48006400" +County and PUMA "G4803130, G48003601" +County and PUMA "G4803150, G48001200" +County and PUMA "G4803170, G48002800" +County and PUMA "G4803190, G48002800" +County and PUMA "G4803210, G48005000" +County and PUMA "G4803230, G48006200" +County and PUMA "G4803250, G48006100" +County and PUMA "G4803270, G48002800" +County and PUMA "G4803290, G48003000" +County and PUMA "G4803310, G48003601" +County and PUMA "G4803330, G48003400" +County and PUMA "G4803350, G48002600" +County and PUMA "G4803370, G48000600" +County and PUMA "G4803390, G48004501" +County and PUMA "G4803390, G48004502" +County and PUMA "G4803390, G48004503" +County and PUMA "G4803390, G48004504" +County and PUMA "G4803410, G48000100" +County and PUMA "G4803430, G48001000" +County and PUMA "G4803450, G48000400" +County and PUMA "G4803470, G48004000" +County and PUMA "G4803490, G48003700" +County and PUMA "G4803510, G48004100" +County and PUMA "G4803530, G48002600" +County and PUMA "G4803550, G48006601" +County and PUMA "G4803550, G48006602" +County and PUMA "G4803550, G48006603" +County and PUMA "G4803570, G48000100" +County and PUMA "G4803590, G48000100" +County and PUMA "G4803610, G48004200" +County and PUMA "G4803630, G48002200" +County and PUMA "G4803650, G48001700" +County and PUMA "G4803670, G48002400" +County and PUMA "G4803690, G48000100" +County and PUMA "G4803710, G48003200" +County and PUMA "G4803730, G48003900" +County and PUMA "G4803750, G48000200" +County and PUMA "G4803770, G48003200" +County and PUMA "G4803790, G48001300" +County and PUMA "G4803810, G48000300" +County and PUMA "G4803830, G48002800" +County and PUMA "G4803850, G48006200" +County and PUMA "G4803870, G48001000" +County and PUMA "G4803890, G48003200" +County and PUMA "G4803910, G48006500" +County and PUMA "G4803930, G48000100" +County and PUMA "G4803950, G48003601" +County and PUMA "G4803970, G48000900" +County and PUMA "G4803990, G48002600" +County and PUMA "G4804010, G48001700" +County and PUMA "G4804030, G48004100" +County and PUMA "G4804050, G48004100" +County and PUMA "G4804070, G48003900" +County and PUMA "G4804090, G48006500" +County and PUMA "G4804110, G48003400" +County and PUMA "G4804130, G48002800" +County and PUMA "G4804150, G48002600" +County and PUMA "G4804170, G48002600" +County and PUMA "G4804190, G48004100" +County and PUMA "G4804210, G48000100" +County and PUMA "G4804230, G48001501" +County and PUMA "G4804230, G48001502" +County and PUMA "G4804250, G48002200" +County and PUMA "G4804270, G48006400" +County and PUMA "G4804290, G48002600" +County and PUMA "G4804310, G48002800" +County and PUMA "G4804330, G48002600" +County and PUMA "G4804350, G48002800" +County and PUMA "G4804370, G48000100" +County and PUMA "G4804390, G48002501" +County and PUMA "G4804390, G48002502" +County and PUMA "G4804390, G48002503" +County and PUMA "G4804390, G48002504" +County and PUMA "G4804390, G48002505" +County and PUMA "G4804390, G48002506" +County and PUMA "G4804390, G48002507" +County and PUMA "G4804390, G48002508" +County and PUMA "G4804390, G48002509" +County and PUMA "G4804390, G48002510" +County and PUMA "G4804390, G48002511" +County and PUMA "G4804390, G48002512" +County and PUMA "G4804390, G48002513" +County and PUMA "G4804390, G48002514" +County and PUMA "G4804390, G48002515" +County and PUMA "G4804390, G48002516" +County and PUMA "G4804410, G48002700" +County and PUMA "G4804430, G48003200" +County and PUMA "G4804450, G48000400" +County and PUMA "G4804470, G48002600" +County and PUMA "G4804490, G48001000" +County and PUMA "G4804510, G48002900" +County and PUMA "G4804530, G48005301" +County and PUMA "G4804530, G48005302" +County and PUMA "G4804530, G48005303" +County and PUMA "G4804530, G48005304" +County and PUMA "G4804530, G48005305" +County and PUMA "G4804530, G48005306" +County and PUMA "G4804530, G48005307" +County and PUMA "G4804530, G48005308" +County and PUMA "G4804530, G48005309" +County and PUMA "G4804550, G48003900" +County and PUMA "G4804570, G48004100" +County and PUMA "G4804590, G48001200" +County and PUMA "G4804610, G48002800" +County and PUMA "G4804630, G48006200" +County and PUMA "G4804650, G48006200" +County and PUMA "G4804670, G48001300" +County and PUMA "G4804690, G48005600" +County and PUMA "G4804710, G48003900" +County and PUMA "G4804730, G48005000" +County and PUMA "G4804750, G48003200" +County and PUMA "G4804770, G48003601" +County and PUMA "G4804790, G48006301" +County and PUMA "G4804790, G48006302" +County and PUMA "G4804810, G48005000" +County and PUMA "G4804830, G48000100" +County and PUMA "G4804850, G48000700" +County and PUMA "G4804870, G48000600" +County and PUMA "G4804890, G48006900" +County and PUMA "G4804910, G48005201" +County and PUMA "G4804910, G48005202" +County and PUMA "G4804910, G48005203" +County and PUMA "G4804910, G48005204" +County and PUMA "G4804930, G48005500" +County and PUMA "G4804950, G48003200" +County and PUMA "G4804970, G48000600" +County and PUMA "G4804990, G48001300" +County and PUMA "G4805010, G48000400" +County and PUMA "G4805030, G48000600" +County and PUMA "G4805050, G48006400" +County and PUMA "G4805070, G48006200" +County and PUMA "G4900010, G49021001" +County and PUMA "G4900030, G49003001" +County and PUMA "G4900050, G49005001" +County and PUMA "G4900070, G49013001" +County and PUMA "G4900090, G49013001" +County and PUMA "G4900110, G49011001" +County and PUMA "G4900110, G49011002" +County and PUMA "G4900130, G49013001" +County and PUMA "G4900150, G49013001" +County and PUMA "G4900170, G49021001" +County and PUMA "G4900190, G49013001" +County and PUMA "G4900210, G49021001" +County and PUMA "G4900230, G49021001" +County and PUMA "G4900250, G49021001" +County and PUMA "G4900270, G49021001" +County and PUMA "G4900290, G49005001" +County and PUMA "G4900310, G49021001" +County and PUMA "G4900330, G49005001" +County and PUMA "G4900350, G49035001" +County and PUMA "G4900350, G49035002" +County and PUMA "G4900350, G49035003" +County and PUMA "G4900350, G49035004" +County and PUMA "G4900350, G49035005" +County and PUMA "G4900350, G49035006" +County and PUMA "G4900350, G49035007" +County and PUMA "G4900350, G49035008" +County and PUMA "G4900350, G49035009" +County and PUMA "G4900370, G49013001" +County and PUMA "G4900390, G49021001" +County and PUMA "G4900410, G49021001" +County and PUMA "G4900430, G49005001" +County and PUMA "G4900450, G49003001" +County and PUMA "G4900470, G49013001" +County and PUMA "G4900490, G49049001" +County and PUMA "G4900490, G49049002" +County and PUMA "G4900490, G49049003" +County and PUMA "G4900490, G49049004" +County and PUMA "G4900510, G49013001" +County and PUMA "G4900530, G49053001" +County and PUMA "G4900550, G49021001" +County and PUMA "G4900570, G49057001" +County and PUMA "G4900570, G49057002" +County and PUMA "G5000010, G50000400" +County and PUMA "G5000030, G50000400" +County and PUMA "G5000050, G50000200" +County and PUMA "G5000070, G50000100" +County and PUMA "G5000090, G50000200" +County and PUMA "G5000110, G50000100" +County and PUMA "G5000130, G50000100" +County and PUMA "G5000150, G50000200" +County and PUMA "G5000170, G50000300" +County and PUMA "G5000190, G50000200" +County and PUMA "G5000210, G50000400" +County and PUMA "G5000230, G50000200" +County and PUMA "G5000250, G50000300" +County and PUMA "G5000270, G50000300" +County and PUMA "G5100010, G51051125" +County and PUMA "G5100030, G51051089" +County and PUMA "G5100030, G51051090" +County and PUMA "G5100050, G51051045" +County and PUMA "G5100070, G51051105" +County and PUMA "G5100090, G51051095" +County and PUMA "G5100110, G51051095" +County and PUMA "G5100130, G51001301" +County and PUMA "G5100130, G51001302" +County and PUMA "G5100150, G51051080" +County and PUMA "G5100170, G51051080" +County and PUMA "G5100190, G51051095" +County and PUMA "G5100210, G51051020" +County and PUMA "G5100230, G51051045" +County and PUMA "G5100250, G51051105" +County and PUMA "G5100270, G51051010" +County and PUMA "G5100290, G51051105" +County and PUMA "G5100310, G51051096" +County and PUMA "G5100330, G51051120" +County and PUMA "G5100350, G51051020" +County and PUMA "G5100360, G51051215" +County and PUMA "G5100370, G51051105" +County and PUMA "G5100410, G51004101" +County and PUMA "G5100410, G51004102" +County and PUMA "G5100410, G51004103" +County and PUMA "G5100430, G51051084" +County and PUMA "G5100450, G51051045" +County and PUMA "G5100470, G51051087" +County and PUMA "G5100490, G51051105" +County and PUMA "G5100510, G51051010" +County and PUMA "G5100530, G51051135" +County and PUMA "G5100570, G51051125" +County and PUMA "G5100590, G51059301" +County and PUMA "G5100590, G51059302" +County and PUMA "G5100590, G51059303" +County and PUMA "G5100590, G51059304" +County and PUMA "G5100590, G51059305" +County and PUMA "G5100590, G51059306" +County and PUMA "G5100590, G51059307" +County and PUMA "G5100590, G51059308" +County and PUMA "G5100590, G51059309" +County and PUMA "G5100610, G51051087" +County and PUMA "G5100630, G51051040" +County and PUMA "G5100650, G51051089" +County and PUMA "G5100670, G51051045" +County and PUMA "G5100690, G51051084" +County and PUMA "G5100710, G51051040" +County and PUMA "G5100730, G51051125" +County and PUMA "G5100750, G51051215" +County and PUMA "G5100770, G51051020" +County and PUMA "G5100790, G51051090" +County and PUMA "G5100810, G51051135" +County and PUMA "G5100830, G51051105" +County and PUMA "G5100850, G51051215" +County and PUMA "G5100870, G51051224" +County and PUMA "G5100870, G51051225" +County and PUMA "G5100890, G51051097" +County and PUMA "G5100910, G51051080" +County and PUMA "G5100930, G51051145" +County and PUMA "G5100950, G51051206" +County and PUMA "G5100970, G51051125" +County and PUMA "G5100990, G51051120" +County and PUMA "G5101010, G51051215" +County and PUMA "G5101030, G51051125" +County and PUMA "G5101050, G51051010" +County and PUMA "G5101070, G51010701" +County and PUMA "G5101070, G51010702" +County and PUMA "G5101070, G51010703" +County and PUMA "G5101090, G51051089" +County and PUMA "G5101110, G51051105" +County and PUMA "G5101130, G51051087" +County and PUMA "G5101150, G51051125" +County and PUMA "G5101170, G51051105" +County and PUMA "G5101190, G51051125" +County and PUMA "G5101210, G51051040" +County and PUMA "G5101250, G51051089" +County and PUMA "G5101270, G51051215" +County and PUMA "G5101310, G51051125" +County and PUMA "G5101330, G51051125" +County and PUMA "G5101350, G51051105" +County and PUMA "G5101370, G51051087" +County and PUMA "G5101390, G51051085" +County and PUMA "G5101410, G51051097" +County and PUMA "G5101430, G51051097" +County and PUMA "G5101450, G51051215" +County and PUMA "G5101470, G51051105" +County and PUMA "G5101490, G51051135" +County and PUMA "G5101530, G51051244" +County and PUMA "G5101530, G51051245" +County and PUMA "G5101530, G51051246" +County and PUMA "G5101550, G51051040" +County and PUMA "G5101570, G51051087" +County and PUMA "G5101590, G51051125" +County and PUMA "G5101610, G51051044" +County and PUMA "G5101610, G51051045" +County and PUMA "G5101630, G51051080" +County and PUMA "G5101650, G51051110" +County and PUMA "G5101670, G51051010" +County and PUMA "G5101690, G51051010" +County and PUMA "G5101710, G51051085" +County and PUMA "G5101730, G51051020" +County and PUMA "G5101750, G51051145" +County and PUMA "G5101770, G51051120" +County and PUMA "G5101790, G51051115" +County and PUMA "G5101810, G51051135" +County and PUMA "G5101830, G51051135" +County and PUMA "G5101850, G51051010" +County and PUMA "G5101870, G51051085" +County and PUMA "G5101910, G51051020" +County and PUMA "G5101930, G51051125" +County and PUMA "G5101950, G51051010" +County and PUMA "G5101970, G51051020" +County and PUMA "G5101990, G51051206" +County and PUMA "G5105100, G51051255" +County and PUMA "G5105200, G51051020" +County and PUMA "G5105300, G51051080" +County and PUMA "G5105400, G51051090" +County and PUMA "G5105500, G51055001" +County and PUMA "G5105500, G51055002" +County and PUMA "G5105700, G51051135" +County and PUMA "G5105800, G51051045" +County and PUMA "G5105900, G51051097" +County and PUMA "G5105950, G51051135" +County and PUMA "G5106000, G51059303" +County and PUMA "G5106100, G51059308" +County and PUMA "G5106200, G51051145" +County and PUMA "G5106300, G51051115" +County and PUMA "G5106400, G51051020" +County and PUMA "G5106500, G51051186" +County and PUMA "G5106600, G51051110" +County and PUMA "G5106700, G51051135" +County and PUMA "G5106780, G51051080" +County and PUMA "G5106800, G51051096" +County and PUMA "G5106830, G51051245" +County and PUMA "G5106850, G51051245" +County and PUMA "G5106900, G51051097" +County and PUMA "G5107000, G51051175" +County and PUMA "G5107100, G51051154" +County and PUMA "G5107100, G51051155" +County and PUMA "G5107200, G51051010" +County and PUMA "G5107300, G51051135" +County and PUMA "G5107350, G51051206" +County and PUMA "G5107400, G51051155" +County and PUMA "G5107500, G51051040" +County and PUMA "G5107600, G51051235" +County and PUMA "G5107700, G51051044" +County and PUMA "G5107750, G51051044" +County and PUMA "G5107900, G51051080" +County and PUMA "G5108000, G51051145" +County and PUMA "G5108100, G51051164" +County and PUMA "G5108100, G51051165" +County and PUMA "G5108100, G51051167" +County and PUMA "G5108200, G51051080" +County and PUMA "G5108300, G51051206" +County and PUMA "G5108400, G51051084" +County and PUMA "G5300010, G53010600" +County and PUMA "G5300030, G53010600" +County and PUMA "G5300050, G53010701" +County and PUMA "G5300050, G53010702" +County and PUMA "G5300050, G53010703" +County and PUMA "G5300070, G53010300" +County and PUMA "G5300090, G53011900" +County and PUMA "G5300110, G53011101" +County and PUMA "G5300110, G53011102" +County and PUMA "G5300110, G53011103" +County and PUMA "G5300110, G53011104" +County and PUMA "G5300130, G53010600" +County and PUMA "G5300150, G53011200" +County and PUMA "G5300170, G53010300" +County and PUMA "G5300190, G53010400" +County and PUMA "G5300210, G53010701" +County and PUMA "G5300210, G53010703" +County and PUMA "G5300230, G53010600" +County and PUMA "G5300250, G53010800" +County and PUMA "G5300270, G53011300" +County and PUMA "G5300290, G53010200" +County and PUMA "G5300310, G53011900" +County and PUMA "G5300330, G53011601" +County and PUMA "G5300330, G53011602" +County and PUMA "G5300330, G53011603" +County and PUMA "G5300330, G53011604" +County and PUMA "G5300330, G53011605" +County and PUMA "G5300330, G53011606" +County and PUMA "G5300330, G53011607" +County and PUMA "G5300330, G53011608" +County and PUMA "G5300330, G53011609" +County and PUMA "G5300330, G53011610" +County and PUMA "G5300330, G53011611" +County and PUMA "G5300330, G53011612" +County and PUMA "G5300330, G53011613" +County and PUMA "G5300330, G53011614" +County and PUMA "G5300330, G53011615" +County and PUMA "G5300330, G53011616" +County and PUMA "G5300350, G53011801" +County and PUMA "G5300350, G53011802" +County and PUMA "G5300370, G53010800" +County and PUMA "G5300390, G53011000" +County and PUMA "G5300410, G53011000" +County and PUMA "G5300430, G53010600" +County and PUMA "G5300450, G53011300" +County and PUMA "G5300470, G53010400" +County and PUMA "G5300490, G53011200" +County and PUMA "G5300510, G53010400" +County and PUMA "G5300530, G53011501" +County and PUMA "G5300530, G53011502" +County and PUMA "G5300530, G53011503" +County and PUMA "G5300530, G53011504" +County and PUMA "G5300530, G53011505" +County and PUMA "G5300530, G53011506" +County and PUMA "G5300530, G53011507" +County and PUMA "G5300550, G53010200" +County and PUMA "G5300570, G53010200" +County and PUMA "G5300590, G53011000" +County and PUMA "G5300610, G53011701" +County and PUMA "G5300610, G53011702" +County and PUMA "G5300610, G53011703" +County and PUMA "G5300610, G53011704" +County and PUMA "G5300610, G53011705" +County and PUMA "G5300610, G53011706" +County and PUMA "G5300630, G53010501" +County and PUMA "G5300630, G53010502" +County and PUMA "G5300630, G53010503" +County and PUMA "G5300630, G53010504" +County and PUMA "G5300650, G53010400" +County and PUMA "G5300670, G53011401" +County and PUMA "G5300670, G53011402" +County and PUMA "G5300690, G53011200" +County and PUMA "G5300710, G53010703" +County and PUMA "G5300730, G53010100" +County and PUMA "G5300750, G53010600" +County and PUMA "G5300770, G53010901" +County and PUMA "G5300770, G53010902" +County and PUMA "G5400010, G54000500" +County and PUMA "G5400030, G54000400" +County and PUMA "G5400050, G54000900" +County and PUMA "G5400070, G54000600" +County and PUMA "G5400090, G54000100" +County and PUMA "G5400110, G54000800" +County and PUMA "G5400130, G54000600" +County and PUMA "G5400150, G54001000" +County and PUMA "G5400170, G54000200" +County and PUMA "G5400190, G54001200" +County and PUMA "G5400210, G54000600" +County and PUMA "G5400230, G54000500" +County and PUMA "G5400250, G54001100" +County and PUMA "G5400270, G54000400" +County and PUMA "G5400290, G54000100" +County and PUMA "G5400310, G54000500" +County and PUMA "G5400330, G54000200" +County and PUMA "G5400350, G54000600" +County and PUMA "G5400370, G54000400" +County and PUMA "G5400390, G54001000" +County and PUMA "G5400410, G54000500" +County and PUMA "G5400430, G54000900" +County and PUMA "G5400450, G54001300" +County and PUMA "G5400470, G54001300" +County and PUMA "G5400490, G54000200" +County and PUMA "G5400510, G54000100" +County and PUMA "G5400530, G54000800" +County and PUMA "G5400550, G54001200" +County and PUMA "G5400570, G54000400" +County and PUMA "G5400590, G54001300" +County and PUMA "G5400610, G54000300" +County and PUMA "G5400630, G54001100" +County and PUMA "G5400650, G54000400" +County and PUMA "G5400670, G54001100" +County and PUMA "G5400690, G54000100" +County and PUMA "G5400710, G54000500" +County and PUMA "G5400730, G54000700" +County and PUMA "G5400750, G54001100" +County and PUMA "G5400770, G54000300" +County and PUMA "G5400790, G54000900" +County and PUMA "G5400810, G54001200" +County and PUMA "G5400830, G54000500" +County and PUMA "G5400850, G54000600" +County and PUMA "G5400870, G54000600" +County and PUMA "G5400890, G54001100" +County and PUMA "G5400910, G54000200" +County and PUMA "G5400930, G54000500" +County and PUMA "G5400950, G54000600" +County and PUMA "G5400970, G54000500" +County and PUMA "G5400990, G54000800" +County and PUMA "G5401010, G54001100" +County and PUMA "G5401030, G54000600" +County and PUMA "G5401050, G54000700" +County and PUMA "G5401070, G54000700" +County and PUMA "G5401090, G54001300" +County and PUMA "G5500010, G55001601" +County and PUMA "G5500030, G55000100" +County and PUMA "G5500050, G55055101" +County and PUMA "G5500070, G55000100" +County and PUMA "G5500090, G55000200" +County and PUMA "G5500090, G55000300" +County and PUMA "G5500110, G55000700" +County and PUMA "G5500130, G55000100" +County and PUMA "G5500150, G55001401" +County and PUMA "G5500170, G55055101" +County and PUMA "G5500170, G55055103" +County and PUMA "G5500190, G55055101" +County and PUMA "G5500210, G55001000" +County and PUMA "G5500230, G55000700" +County and PUMA "G5500250, G55000101" +County and PUMA "G5500250, G55000102" +County and PUMA "G5500250, G55000103" +County and PUMA "G5500270, G55001001" +County and PUMA "G5500290, G55001300" +County and PUMA "G5500310, G55000100" +County and PUMA "G5500330, G55055102" +County and PUMA "G5500350, G55055103" +County and PUMA "G5500370, G55001300" +County and PUMA "G5500390, G55001401" +County and PUMA "G5500410, G55000600" +County and PUMA "G5500430, G55000800" +County and PUMA "G5500450, G55000800" +County and PUMA "G5500470, G55001400" +County and PUMA "G5500490, G55000800" +County and PUMA "G5500510, G55000100" +County and PUMA "G5500530, G55000700" +County and PUMA "G5500550, G55001001" +County and PUMA "G5500570, G55001601" +County and PUMA "G5500590, G55010000" +County and PUMA "G5500610, G55001301" +County and PUMA "G5500630, G55000900" +County and PUMA "G5500650, G55000800" +County and PUMA "G5500670, G55000600" +County and PUMA "G5500690, G55000600" +County and PUMA "G5500710, G55001301" +County and PUMA "G5500730, G55001600" +County and PUMA "G5500750, G55001300" +County and PUMA "G5500770, G55001400" +County and PUMA "G5500780, G55001400" +County and PUMA "G5500790, G55040101" +County and PUMA "G5500790, G55040301" +County and PUMA "G5500790, G55040701" +County and PUMA "G5500790, G55041001" +County and PUMA "G5500790, G55041002" +County and PUMA "G5500790, G55041003" +County and PUMA "G5500790, G55041004" +County and PUMA "G5500790, G55041005" +County and PUMA "G5500810, G55000700" +County and PUMA "G5500830, G55001300" +County and PUMA "G5500850, G55000600" +County and PUMA "G5500870, G55001500" +County and PUMA "G5500890, G55020000" +County and PUMA "G5500910, G55000700" +County and PUMA "G5500930, G55000700" +County and PUMA "G5500950, G55055101" +County and PUMA "G5500970, G55001601" +County and PUMA "G5500990, G55000100" +County and PUMA "G5501010, G55030000" +County and PUMA "G5501030, G55000800" +County and PUMA "G5501050, G55002400" +County and PUMA "G5501070, G55000100" +County and PUMA "G5501090, G55055102" +County and PUMA "G5501110, G55001000" +County and PUMA "G5501130, G55000100" +County and PUMA "G5501150, G55001400" +County and PUMA "G5501170, G55002500" +County and PUMA "G5501190, G55000100" +County and PUMA "G5501210, G55000700" +County and PUMA "G5501230, G55000700" +County and PUMA "G5501250, G55000600" +County and PUMA "G5501270, G55050000" +County and PUMA "G5501290, G55000100" +County and PUMA "G5501310, G55020000" +County and PUMA "G5501330, G55070101" +County and PUMA "G5501330, G55070201" +County and PUMA "G5501330, G55070301" +County and PUMA "G5501350, G55001400" +County and PUMA "G5501370, G55001400" +County and PUMA "G5501390, G55001501" +County and PUMA "G5501410, G55001601" +County and PUMA "G5600010, G56000300" +County and PUMA "G5600030, G56000100" +County and PUMA "G5600050, G56000200" +County and PUMA "G5600070, G56000400" +County and PUMA "G5600090, G56000400" +County and PUMA "G5600110, G56000200" +County and PUMA "G5600130, G56000500" +County and PUMA "G5600150, G56000200" +County and PUMA "G5600170, G56000500" +County and PUMA "G5600190, G56000200" +County and PUMA "G5600210, G56000300" +County and PUMA "G5600230, G56000100" +County and PUMA "G5600250, G56000400" +County and PUMA "G5600270, G56000200" +County and PUMA "G5600290, G56000100" +County and PUMA "G5600310, G56000200" +County and PUMA "G5600330, G56000100" +County and PUMA "G5600350, G56000500" +County and PUMA "G5600370, G56000500" +County and PUMA "G5600390, G56000100" +County and PUMA "G5600410, G56000500" +County and PUMA "G5600430, G56000200" +County and PUMA "G5600450, G56000200" +County and PUMA "G7200010, G72000401" +County and PUMA "G7200030, G72000101" +County and PUMA "G7200050, G72000102" +County and PUMA "G7200070, G72000602" +County and PUMA "G7200090, G72000602" +County and PUMA "G7200110, G72000101" +County and PUMA "G7200130, G72000301" +County and PUMA "G7200150, G72000701" +County and PUMA "G7200170, G72000301" +County and PUMA "G7200190, G72000601" +County and PUMA "G7200210, G72000801" +County and PUMA "G7200210, G72000802" +County and PUMA "G7200230, G72000201" +County and PUMA "G7200250, G72001001" +County and PUMA "G7200270, G72000302" +County and PUMA "G7200290, G72000902" +County and PUMA "G7200310, G72000901" +County and PUMA "G7200310, G72000902" +County and PUMA "G7200330, G72000803" +County and PUMA "G7200350, G72000602" +County and PUMA "G7200370, G72001101" +County and PUMA "G7200390, G72000501" +County and PUMA "G7200410, G72000602" +County and PUMA "G7200430, G72000403" +County and PUMA "G7200450, G72000601" +County and PUMA "G7200470, G72000601" +County and PUMA "G7200490, G72001101" +County and PUMA "G7200510, G72000502" +County and PUMA "G7200530, G72001101" +County and PUMA "G7200540, G72000301" +County and PUMA "G7200550, G72000401" +County and PUMA "G7200570, G72000701" +County and PUMA "G7200590, G72000401" +County and PUMA "G7200610, G72000803" +County and PUMA "G7200630, G72001002" +County and PUMA "G7200650, G72000302" +County and PUMA "G7200670, G72000202" +County and PUMA "G7200690, G72001102" +County and PUMA "G7200710, G72000102" +County and PUMA "G7200730, G72000402" +County and PUMA "G7200750, G72000403" +County and PUMA "G7200770, G72001002" +County and PUMA "G7200790, G72000201" +County and PUMA "G7200810, G72000302" +County and PUMA "G7200830, G72000202" +County and PUMA "G7200850, G72001002" +County and PUMA "G7200870, G72000902" +County and PUMA "G7200890, G72001101" +County and PUMA "G7200910, G72000501" +County and PUMA "G7200930, G72000202" +County and PUMA "G7200950, G72000701" +County and PUMA "G7200970, G72000202" +County and PUMA "G7200990, G72000101" +County and PUMA "G7201010, G72000501" +County and PUMA "G7201030, G72001102" +County and PUMA "G7201050, G72000601" +County and PUMA "G7201070, G72000601" +County and PUMA "G7201090, G72000701" +County and PUMA "G7201110, G72000401" +County and PUMA "G7201130, G72000402" +County and PUMA "G7201150, G72000102" +County and PUMA "G7201170, G72000101" +County and PUMA "G7201190, G72001101" +County and PUMA "G7201210, G72000201" +County and PUMA "G7201230, G72000701" +County and PUMA "G7201250, G72000201" +County and PUMA "G7201270, G72000804" +County and PUMA "G7201270, G72000805" +County and PUMA "G7201270, G72000806" +County and PUMA "G7201290, G72001002" +County and PUMA "G7201310, G72000101" +County and PUMA "G7201330, G72000403" +County and PUMA "G7201350, G72000503" +County and PUMA "G7201370, G72000502" +County and PUMA "G7201390, G72000902" +County and PUMA "G7201410, G72000302" +County and PUMA "G7201430, G72000503" +County and PUMA "G7201450, G72000501" +County and PUMA "G7201470, G72001101" +County and PUMA "G7201490, G72000403" +County and PUMA "G7201510, G72001102" +County and PUMA "G7201530, G72000401" +Dehumidifier "65 pints/day, 50% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 50% RH, 2.0 EF" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=2 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier "65 pints/day, 60% RH" ResStockArguments dehumidifier_type=portable dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=1.8 dehumidifier_capacity=65 dehumidifier_rh_setpoint=0.6 dehumidifier_fraction_dehumidification_load_served=1 +Dehumidifier None ResStockArguments dehumidifier_type=none dehumidifier_efficiency_type=EnergyFactor dehumidifier_efficiency=0 dehumidifier_capacity=40 dehumidifier_rh_setpoint=0.5 dehumidifier_fraction_dehumidification_load_served=1 +Dishwasher 144 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=144 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=13 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 199 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=199 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=18 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 220 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=220 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=19 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 255 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=255 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=21 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 270 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=270 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=22 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 290 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=290 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=23 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher 318 Rated kWh ResStockArguments dishwasher_present=true dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=318 dishwasher_label_electric_rate=0.12 dishwasher_label_gas_rate=1.09 dishwasher_label_annual_gas_cost=25 dishwasher_label_usage=4 dishwasher_place_setting_capacity=12 +Dishwasher None ResStockArguments dishwasher_present=false dishwasher_location=auto dishwasher_efficiency_type=RatedAnnualkWh dishwasher_efficiency=0 dishwasher_label_electric_rate=0 dishwasher_label_gas_rate=0 dishwasher_label_annual_gas_cost=0 dishwasher_label_usage=0 dishwasher_place_setting_capacity=0 +Dishwasher Void +Dishwasher Usage Level 100% Usage ResStockArguments dishwasher_usage_multiplier=1.0 +Dishwasher Usage Level 120% Usage ResStockArguments dishwasher_usage_multiplier=1.2 +Dishwasher Usage Level 80% Usage ResStockArguments dishwasher_usage_multiplier=0.8 +Door Area 20 ft^2 ResStockArguments door_area=20 +Door Area 30 ft^2 ResStockArguments door_area=30 +Door Area 40 ft^2 ResStockArguments door_area=40 +Doors Fiberglass ResStockArguments door_rvalue=5 +Doors Steel ResStockArguments door_rvalue=5 +Doors Wood ResStockArguments door_rvalue=2.1 +Duct Leakage and Insulation "0% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "10% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.067 ducts_return_leakage_to_outside_value=0.033 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "14% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.093 ducts_return_leakage_to_outside_value=0.047 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "15% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.100 ducts_return_leakage_to_outside_value=0.050 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "20% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.133 ducts_return_leakage_to_outside_value=0.067 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "22.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.150 ducts_return_leakage_to_outside_value=0.075 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "24% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.160 ducts_return_leakage_to_outside_value=0.080 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "30% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.200 ducts_return_leakage_to_outside_value=0.100 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "34% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.227 ducts_return_leakage_to_outside_value=0.113 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "53% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.353 ducts_return_leakage_to_outside_value=0.177 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "6% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.040 ducts_return_leakage_to_outside_value=0.020 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "7.5% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.050 ducts_return_leakage_to_outside_value=0.025 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-4" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=4 ducts_return_insulation_r=4 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-6" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=6 ducts_return_insulation_r=6 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, R-8" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=8 ducts_return_insulation_r=8 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation "85% Leakage to Outside, Uninsulated" ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0.567 ducts_return_leakage_to_outside_value=0.283 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Leakage and Insulation None ResStockArguments ducts_leakage_units=Percent ducts_supply_leakage_to_outside_value=0 ducts_return_leakage_to_outside_value=0 ducts_supply_insulation_r=0 ducts_return_insulation_r=0 ducts_supply_buried_insulation_level=auto ducts_return_buried_insulation_level=auto +Duct Location Attic ResStockArguments ducts_supply_location=attic ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=attic ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Crawlspace ResStockArguments ducts_supply_location=crawlspace ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=crawlspace ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Garage ResStockArguments ducts_supply_location=garage ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=garage ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Heated Basement ResStockArguments ducts_supply_location=basement - conditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - conditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location Living Space ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Duct Location None ResStockArguments ducts_supply_location=conditioned space ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=conditioned space ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=0 +Duct Location Unheated Basement ResStockArguments ducts_supply_location=basement - unconditioned ducts_supply_surface_area=auto ducts_supply_surface_area_fraction=auto ducts_return_location=basement - unconditioned ducts_return_surface_area=auto ducts_return_surface_area_fraction=auto ducts_number_of_return_registers=auto +Eaves 1 ft ResStockArguments geometry_eaves_depth=1 +Eaves 2 ft ResStockArguments geometry_eaves_depth=2 +Eaves 3 ft ResStockArguments geometry_eaves_depth=3 +Eaves None ResStockArguments geometry_eaves_depth=0 +Electric Vehicle "EV, 4000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1481 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle "EV, 5000 miles, 0.3 kWh/mi" ResStockArguments misc_plug_loads_vehicle_present=true misc_plug_loads_vehicle_annual_kwh=1852 misc_plug_loads_vehicle_usage_multiplier=1.0 misc_plug_loads_vehicle_2_usage_multiplier=1.0 +Electric Vehicle None ResStockArguments misc_plug_loads_vehicle_present=false misc_plug_loads_vehicle_annual_kwh=0 misc_plug_loads_vehicle_usage_multiplier=0 misc_plug_loads_vehicle_2_usage_multiplier=0 +Energystar Climate Zone 2023 North-Central +Energystar Climate Zone 2023 Northern +Energystar Climate Zone 2023 South-Central +Energystar Climate Zone 2023 Southern +Energystar Climate Zone 2023 Void +Federal Poverty Level 0-100% +Federal Poverty Level 100-150% +Federal Poverty Level 150-200% +Federal Poverty Level 200-300% +Federal Poverty Level 300-400% +Federal Poverty Level 400%+ +Federal Poverty Level Not Available +Generation And Emissions Assessment Region AZNMc +Generation And Emissions Assessment Region CAMXc +Generation And Emissions Assessment Region ERCTc +Generation And Emissions Assessment Region FRCCc +Generation And Emissions Assessment Region MROEc +Generation And Emissions Assessment Region MROWc +Generation And Emissions Assessment Region NEWEc +Generation And Emissions Assessment Region NWPPc +Generation And Emissions Assessment Region NYSTc +Generation And Emissions Assessment Region None +Generation And Emissions Assessment Region RFCEc +Generation And Emissions Assessment Region RFCMc +Generation And Emissions Assessment Region RFCWc +Generation And Emissions Assessment Region RMPAc +Generation And Emissions Assessment Region SPNOc +Generation And Emissions Assessment Region SPSOc +Generation And Emissions Assessment Region SRMVc +Generation And Emissions Assessment Region SRMWc +Generation And Emissions Assessment Region SRSOc +Generation And Emissions Assessment Region SRTVc +Generation And Emissions Assessment Region SRVCc +Geometry Attic Type Finished Attic or Cathedral Ceilings ResStockArguments geometry_attic_type=ConditionedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type None ResStockArguments geometry_attic_type=FlatRoof geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Unvented Attic ResStockArguments geometry_attic_type=UnventedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Attic Type Vented Attic ResStockArguments geometry_attic_type=VentedAttic geometry_roof_type=gable geometry_roof_pitch=6:12 +Geometry Building Horizontal Location MF Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location MF Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location MF None +Geometry Building Horizontal Location MF Not Applicable ResStockArguments geometry_unit_horizontal_location=None +Geometry Building Horizontal Location MF Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Horizontal Location SFA Left ResStockArguments geometry_unit_horizontal_location=Left +Geometry Building Horizontal Location SFA Middle ResStockArguments geometry_unit_horizontal_location=Middle +Geometry Building Horizontal Location SFA None +Geometry Building Horizontal Location SFA Right ResStockArguments geometry_unit_horizontal_location=Right +Geometry Building Level MF Bottom ResStockArguments geometry_unit_level=Bottom +Geometry Building Level MF Middle ResStockArguments geometry_unit_level=Middle +Geometry Building Level MF None +Geometry Building Level MF Top ResStockArguments geometry_unit_level=Top +Geometry Building Number Units MF 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units MF 102 ResStockArguments geometry_building_num_units=102 +Geometry Building Number Units MF 11 ResStockArguments geometry_building_num_units=11 +Geometry Building Number Units MF 116 ResStockArguments geometry_building_num_units=116 +Geometry Building Number Units MF 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units MF 13 ResStockArguments geometry_building_num_units=13 +Geometry Building Number Units MF 14 ResStockArguments geometry_building_num_units=14 +Geometry Building Number Units MF 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units MF 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units MF 17 ResStockArguments geometry_building_num_units=17 +Geometry Building Number Units MF 18 ResStockArguments geometry_building_num_units=18 +Geometry Building Number Units MF 183 ResStockArguments geometry_building_num_units=183 +Geometry Building Number Units MF 19 ResStockArguments geometry_building_num_units=19 +Geometry Building Number Units MF 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units MF 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units MF 21 ResStockArguments geometry_building_num_units=21 +Geometry Building Number Units MF 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units MF 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units MF 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units MF 323 ResStockArguments geometry_building_num_units=323 +Geometry Building Number Units MF 326 ResStockArguments geometry_building_num_units=326 +Geometry Building Number Units MF 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units MF 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units MF 43 ResStockArguments geometry_building_num_units=43 +Geometry Building Number Units MF 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units MF 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units MF 67 ResStockArguments geometry_building_num_units=67 +Geometry Building Number Units MF 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units MF 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units MF 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units MF None +Geometry Building Number Units SFA 10 ResStockArguments geometry_building_num_units=10 +Geometry Building Number Units SFA 12 ResStockArguments geometry_building_num_units=12 +Geometry Building Number Units SFA 144 ResStockArguments geometry_building_num_units=144 +Geometry Building Number Units SFA 15 ResStockArguments geometry_building_num_units=15 +Geometry Building Number Units SFA 16 ResStockArguments geometry_building_num_units=16 +Geometry Building Number Units SFA 2 ResStockArguments geometry_building_num_units=2 +Geometry Building Number Units SFA 20 ResStockArguments geometry_building_num_units=20 +Geometry Building Number Units SFA 24 ResStockArguments geometry_building_num_units=24 +Geometry Building Number Units SFA 3 ResStockArguments geometry_building_num_units=3 +Geometry Building Number Units SFA 30 ResStockArguments geometry_building_num_units=30 +Geometry Building Number Units SFA 36 ResStockArguments geometry_building_num_units=36 +Geometry Building Number Units SFA 4 ResStockArguments geometry_building_num_units=4 +Geometry Building Number Units SFA 5 ResStockArguments geometry_building_num_units=5 +Geometry Building Number Units SFA 50 ResStockArguments geometry_building_num_units=50 +Geometry Building Number Units SFA 6 ResStockArguments geometry_building_num_units=6 +Geometry Building Number Units SFA 60 ResStockArguments geometry_building_num_units=60 +Geometry Building Number Units SFA 7 ResStockArguments geometry_building_num_units=7 +Geometry Building Number Units SFA 8 ResStockArguments geometry_building_num_units=8 +Geometry Building Number Units SFA 9 ResStockArguments geometry_building_num_units=9 +Geometry Building Number Units SFA 90 ResStockArguments geometry_building_num_units=90 +Geometry Building Number Units SFA None +Geometry Building Type ACS 10 to 19 Unit +Geometry Building Type ACS 2 Unit +Geometry Building Type ACS 20 to 49 Unit +Geometry Building Type ACS 3 or 4 Unit +Geometry Building Type ACS 5 to 9 Unit +Geometry Building Type ACS 50 or more Unit +Geometry Building Type ACS Mobile Home +Geometry Building Type ACS Single-Family Attached +Geometry Building Type ACS Single-Family Detached +Geometry Building Type Height "Multifamily with 5+ units, 1-3 stories" +Geometry Building Type Height "Multifamily with 5+ units, 4-7 stories" +Geometry Building Type Height "Multifamily with 5+ units, 8+ stories" +Geometry Building Type Height Mobile Home +Geometry Building Type Height Multifamily with 2-4 Units +Geometry Building Type Height Single-Family Attached +Geometry Building Type Height Single-Family Detached +Geometry Building Type RECS Mobile Home ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Building Type RECS Multi-Family with 2 - 4 Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Multi-Family with 5+ Units ResStockArguments geometry_unit_type=apartment unit geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Attached ResStockArguments geometry_unit_type=single-family attached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=0.5556 +Geometry Building Type RECS Single-Family Detached ResStockArguments geometry_unit_type=single-family detached geometry_average_ceiling_height=8 geometry_unit_aspect_ratio=1.8 +Geometry Floor Area 0-499 ResStockArguments geometry_unit_cfa_bin=0-499 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 1000-1499 ResStockArguments geometry_unit_cfa_bin=1000-1499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 1500-1999 ResStockArguments geometry_unit_cfa_bin=1500-1999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2000-2499 ResStockArguments geometry_unit_cfa_bin=2000-2499 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 2500-2999 ResStockArguments geometry_unit_cfa_bin=2500-2999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 3000-3999 ResStockArguments geometry_unit_cfa_bin=3000-3999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 4000+ ResStockArguments geometry_unit_cfa_bin=4000+ geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area 500-749 ResStockArguments geometry_unit_cfa_bin=500-749 geometry_unit_cfa=auto geometry_garage_protrusion=0.75 +Geometry Floor Area 750-999 ResStockArguments geometry_unit_cfa_bin=750-999 geometry_unit_cfa=auto geometry_garage_protrusion=0.5 +Geometry Floor Area Bin 0-1499 +Geometry Floor Area Bin 1500-2499 +Geometry Floor Area Bin 2500-3999 +Geometry Floor Area Bin 4000+ +Geometry Foundation Type Ambient ResStockArguments geometry_foundation_type=Ambient geometry_foundation_height=4 geometry_foundation_height_above_grade=4 geometry_rim_joist_height=0 +Geometry Foundation Type Conditioned Crawlspace ResStockArguments geometry_foundation_type=ConditionedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Heated Basement ResStockArguments geometry_foundation_type=ConditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Slab ResStockArguments geometry_foundation_type=SlabOnGrade geometry_foundation_height=0 geometry_foundation_height_above_grade=0 geometry_rim_joist_height=0 +Geometry Foundation Type Unheated Basement ResStockArguments geometry_foundation_type=UnconditionedBasement geometry_foundation_height=8 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Unvented Crawlspace ResStockArguments geometry_foundation_type=UnventedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Foundation Type Vented Crawlspace ResStockArguments geometry_foundation_type=VentedCrawlspace geometry_foundation_height=4 geometry_foundation_height_above_grade=1 geometry_rim_joist_height=9.25 +Geometry Garage 1 Car ResStockArguments geometry_garage_width=12 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 2 Car ResStockArguments geometry_garage_width=24 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage 3 Car ResStockArguments geometry_garage_width=36 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Garage None ResStockArguments geometry_garage_width=0 geometry_garage_depth=24 geometry_garage_position=Right +Geometry Heated Basement No +Geometry Heated Basement Yes +Geometry Number Units ACS bins 10 to 19 Units +Geometry Number Units ACS bins 20 to 49 Units +Geometry Number Units ACS bins 5 to 9 Units +Geometry Number Units ACS bins 50 or more +Geometry Number Units ACS bins <5 +Geometry Space Combination "Mobile Home, Ambient, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Attached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Ambient, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Heated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Slab, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unheated Basement, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Finished Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, No Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Unvented Attic, No Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage" +Geometry Space Combination "Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage" +Geometry Space Combination Void +Geometry Stories 1 ResStockArguments geometry_num_floors_above_grade=1 +Geometry Stories 10 ResStockArguments geometry_num_floors_above_grade=10 +Geometry Stories 11 ResStockArguments geometry_num_floors_above_grade=11 +Geometry Stories 12 ResStockArguments geometry_num_floors_above_grade=12 +Geometry Stories 13 ResStockArguments geometry_num_floors_above_grade=13 +Geometry Stories 14 ResStockArguments geometry_num_floors_above_grade=14 +Geometry Stories 15 ResStockArguments geometry_num_floors_above_grade=15 +Geometry Stories 2 ResStockArguments geometry_num_floors_above_grade=2 +Geometry Stories 20 ResStockArguments geometry_num_floors_above_grade=20 +Geometry Stories 21 ResStockArguments geometry_num_floors_above_grade=21 +Geometry Stories 3 ResStockArguments geometry_num_floors_above_grade=3 +Geometry Stories 35 ResStockArguments geometry_num_floors_above_grade=35 +Geometry Stories 4 ResStockArguments geometry_num_floors_above_grade=4 +Geometry Stories 5 ResStockArguments geometry_num_floors_above_grade=5 +Geometry Stories 6 ResStockArguments geometry_num_floors_above_grade=6 +Geometry Stories 7 ResStockArguments geometry_num_floors_above_grade=7 +Geometry Stories 8 ResStockArguments geometry_num_floors_above_grade=8 +Geometry Stories 9 ResStockArguments geometry_num_floors_above_grade=9 +Geometry Stories Low Rise 1 +Geometry Stories Low Rise 2 +Geometry Stories Low Rise 3 +Geometry Stories Low Rise 4+ +Geometry Story Bin 8+ +Geometry Story Bin <8 +Geometry Wall Exterior Finish "Aluminum, Light" ResStockArguments wall_siding_type=aluminum siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Brick, Light" ResStockArguments wall_siding_type=brick veneer wall_color=light exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Brick, Medium/Dark" ResStockArguments wall_siding_type=brick veneer wall_color=medium dark exterior_finish_r=0.7 +Geometry Wall Exterior Finish "Fiber-Cement, Light" ResStockArguments wall_siding_type=fiber cement siding wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Shingle, Asbestos, Medium" ResStockArguments wall_siding_type=asbestos siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Shingle, Composition, Medium" ResStockArguments wall_siding_type=composite shingle siding wall_color=medium exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Stucco, Light" ResStockArguments wall_siding_type=stucco wall_color=light exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Stucco, Medium/Dark" ResStockArguments wall_siding_type=stucco wall_color=medium dark exterior_finish_r=0.2 +Geometry Wall Exterior Finish "Vinyl, Light" ResStockArguments wall_siding_type=vinyl siding wall_color=light exterior_finish_r=0.6 +Geometry Wall Exterior Finish "Wood, Medium/Dark" ResStockArguments wall_siding_type=wood siding wall_color=medium dark exterior_finish_r=1.4 +Geometry Wall Exterior Finish None ResStockArguments wall_siding_type=none wall_color=medium exterior_finish_r=0 +Geometry Wall Type Brick +Geometry Wall Type Concrete +Geometry Wall Type Steel Frame +Geometry Wall Type Void +Geometry Wall Type Wood Frame +Ground Thermal Conductivity 0.5 ResStockArguments site_ground_conductivity=0.5 +Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 +Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 +Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 +Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 +Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 +Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 +HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 13" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 14" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=14 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 15" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=15 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 18" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=18 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 24.5" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=24.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "AC, SEER 8" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 10.7" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=10.7 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 12.0" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=12 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 8.5" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=8.5 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency "Room AC, EER 9.8" ResStockArguments cooling_system_type=room air conditioner cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=9.8 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Evaporative Cooler ResStockArguments cooling_system_type=evaporative cooler cooling_system_cooling_efficiency_type=EER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Non-Ducted Heat Pump ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency None ResStockArguments cooling_system_type=none cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=0 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto +HVAC Cooling Efficiency Shared Cooling +HVAC Cooling Partial Space Conditioning 100% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=1 +HVAC Cooling Partial Space Conditioning 20% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.2 +HVAC Cooling Partial Space Conditioning 40% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.4 +HVAC Cooling Partial Space Conditioning 60% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.6 +HVAC Cooling Partial Space Conditioning 80% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.8 +HVAC Cooling Partial Space Conditioning <10% Conditioned ResStockArguments cooling_system_fraction_cool_load_served=.1 +HVAC Cooling Partial Space Conditioning None ResStockArguments cooling_system_fraction_cool_load_served=0 +HVAC Cooling Partial Space Conditioning Void +HVAC Cooling Type Central AC +HVAC Cooling Type Ducted Heat Pump +HVAC Cooling Type Evaporative or Swamp Cooler +HVAC Cooling Type Non-Ducted Heat Pump +HVAC Cooling Type None +HVAC Cooling Type Room AC +HVAC Has Ducts No +HVAC Has Ducts Void +HVAC Has Ducts Yes +HVAC Has Shared System Cooling Only +HVAC Has Shared System Heating Only +HVAC Has Shared System Heating and Cooling +HVAC Has Shared System None +HVAC Has Shared System Void +HVAC Has Zonal Electric Heating No +HVAC Has Zonal Electric Heating Yes +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heating_system_pilot_light=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto +HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Heating Efficiency Shared Heating +HVAC Heating Efficiency Void +HVAC Heating Type Ducted Heat Pump +HVAC Heating Type Ducted Heating +HVAC Heating Type Non-Ducted Heat Pump +HVAC Heating Type Non-Ducted Heating +HVAC Heating Type None +HVAC Heating Type And Fuel Electricity ASHP +HVAC Heating Type And Fuel Electricity Baseboard +HVAC Heating Type And Fuel Electricity Electric Boiler +HVAC Heating Type And Fuel Electricity Electric Furnace +HVAC Heating Type And Fuel Electricity Electric Wall Furnace +HVAC Heating Type And Fuel Electricity MSHP +HVAC Heating Type And Fuel Electricity Other +HVAC Heating Type And Fuel Electricity Shared Heating +HVAC Heating Type And Fuel Fuel Oil Fuel Boiler +HVAC Heating Type And Fuel Fuel Oil Fuel Furnace +HVAC Heating Type And Fuel Fuel Oil Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Fuel Oil Shared Heating +HVAC Heating Type And Fuel Natural Gas Fuel Boiler +HVAC Heating Type And Fuel Natural Gas Fuel Furnace +HVAC Heating Type And Fuel Natural Gas Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Natural Gas Shared Heating +HVAC Heating Type And Fuel None +HVAC Heating Type And Fuel Other Fuel Fuel Boiler +HVAC Heating Type And Fuel Other Fuel Fuel Furnace +HVAC Heating Type And Fuel Other Fuel Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Other Fuel Shared Heating +HVAC Heating Type And Fuel Propane Fuel Boiler +HVAC Heating Type And Fuel Propane Fuel Furnace +HVAC Heating Type And Fuel Propane Fuel Wall/Floor Furnace +HVAC Heating Type And Fuel Propane Shared Heating +HVAC Heating Type And Fuel Void +HVAC Secondary Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_2_type=ElectricResistance heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Portable Heater, 100% Efficiency" ResStockArguments heating_system_2_type=SpaceHeater heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Fireplace, 60% AFUE" ResStockArguments heating_system_2_type=Fireplace heating_system_2_heating_efficiency=0.6 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency None ResStockArguments heating_system_2_type=none heating_system_2_heating_efficiency=0 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Fuel Electricity ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Fuel Oil ResStockArguments heating_system_2_fuel=fuel oil +HVAC Secondary Heating Fuel Natural Gas ResStockArguments heating_system_2_fuel=natural gas +HVAC Secondary Heating Fuel None ResStockArguments heating_system_2_fuel=electricity +HVAC Secondary Heating Fuel Propane ResStockArguments heating_system_2_fuel=propane +HVAC Secondary Heating Partial Space Conditioning 20% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.2 +HVAC Secondary Heating Partial Space Conditioning 30% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.3 +HVAC Secondary Heating Partial Space Conditioning 40% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.4 +HVAC Secondary Heating Partial Space Conditioning 50% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.5 +HVAC Secondary Heating Partial Space Conditioning <10% Conditioned ResStockArguments heating_system_2_fraction_heat_load_served=0.1 +HVAC Secondary Heating Partial Space Conditioning None ResStockArguments heating_system_2_fraction_heat_load_served=0 +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false +HVAC Shared Efficiencies None +HVAC System Is Faulted No +HVAC System Is Faulted Yes +HVAC System Single Speed AC Airflow 154.8 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=154.8 +HVAC System Single Speed AC Airflow 204.4 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=204.4 +HVAC System Single Speed AC Airflow 254.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=254.0 +HVAC System Single Speed AC Airflow 303.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=303.5 +HVAC System Single Speed AC Airflow 353.1 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=353.1 +HVAC System Single Speed AC Airflow 402.7 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=402.7 +HVAC System Single Speed AC Airflow 452.3 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=452.3 +HVAC System Single Speed AC Airflow 501.9 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=501.9 +HVAC System Single Speed AC Airflow 551.5 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=551.5 +HVAC System Single Speed AC Airflow 601.0 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=601.0 +HVAC System Single Speed AC Airflow 650.6 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=650.6 +HVAC System Single Speed AC Airflow 700.2 cfm/ton ResStockArguments cooling_system_rated_cfm_per_ton=400.0 cooling_system_actual_cfm_per_ton=700.2 +HVAC System Single Speed AC Airflow None +HVAC System Single Speed AC Charge 0.570 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.570 +HVAC System Single Speed AC Charge 0.709 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.709 +HVAC System Single Speed AC Charge 0.848 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.848 +HVAC System Single Speed AC Charge 0.988 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=0.988 +HVAC System Single Speed AC Charge 1.127 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.127 +HVAC System Single Speed AC Charge 1.266 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.266 +HVAC System Single Speed AC Charge 1.405 Charge Frac ResStockArguments cooling_system_frac_manufacturer_charge=1.405 +HVAC System Single Speed AC Charge None +HVAC System Single Speed ASHP Airflow 154.8 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=154.8 +HVAC System Single Speed ASHP Airflow 204.4 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=204.4 +HVAC System Single Speed ASHP Airflow 254.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=254.0 +HVAC System Single Speed ASHP Airflow 303.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=303.5 +HVAC System Single Speed ASHP Airflow 353.1 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=353.1 +HVAC System Single Speed ASHP Airflow 402.7 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=402.7 +HVAC System Single Speed ASHP Airflow 452.3 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=452.3 +HVAC System Single Speed ASHP Airflow 501.9 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=501.9 +HVAC System Single Speed ASHP Airflow 551.5 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=551.5 +HVAC System Single Speed ASHP Airflow 601.0 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=601.0 +HVAC System Single Speed ASHP Airflow 650.6 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=650.6 +HVAC System Single Speed ASHP Airflow 700.2 cfm/ton ResStockArguments heat_pump_rated_cfm_per_ton=400.0 heat_pump_actual_cfm_per_ton=700.2 +HVAC System Single Speed ASHP Airflow None +HVAC System Single Speed ASHP Charge 0.570 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.570 +HVAC System Single Speed ASHP Charge 0.709 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.709 +HVAC System Single Speed ASHP Charge 0.848 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.848 +HVAC System Single Speed ASHP Charge 0.988 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=0.988 +HVAC System Single Speed ASHP Charge 1.127 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.127 +HVAC System Single Speed ASHP Charge 1.266 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.266 +HVAC System Single Speed ASHP Charge 1.405 Charge Frac ResStockArguments heat_pump_frac_manufacturer_charge=1.405 +HVAC System Single Speed ASHP Charge None +Has PV No +Has PV Yes +Heat Pump Backup Use Existing System ResStockArguments heat_pump_backup_use_existing_system=true +Heating Fuel Electricity ResStockArguments heating_system_fuel=electricity +Heating Fuel Fuel Oil ResStockArguments heating_system_fuel=fuel oil +Heating Fuel Natural Gas ResStockArguments heating_system_fuel=natural gas +Heating Fuel None ResStockArguments heating_system_fuel=natural gas +Heating Fuel Other Fuel ResStockArguments heating_system_fuel=wood +Heating Fuel Propane ResStockArguments heating_system_fuel=propane +Heating Fuel Wood ResStockArguments heating_system_fuel=wood +Heating Setpoint 55F ResStockArguments hvac_control_heating_weekday_setpoint_temp=55 hvac_control_heating_weekend_setpoint_temp=55 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 60F ResStockArguments hvac_control_heating_weekday_setpoint_temp=60 hvac_control_heating_weekend_setpoint_temp=60 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 62F ResStockArguments hvac_control_heating_weekday_setpoint_temp=62 hvac_control_heating_weekend_setpoint_temp=62 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 63F ResStockArguments hvac_control_heating_weekday_setpoint_temp=63 hvac_control_heating_weekend_setpoint_temp=63 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 64F ResStockArguments hvac_control_heating_weekday_setpoint_temp=64 hvac_control_heating_weekend_setpoint_temp=64 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 65F ResStockArguments hvac_control_heating_weekday_setpoint_temp=65 hvac_control_heating_weekend_setpoint_temp=65 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 66F ResStockArguments hvac_control_heating_weekday_setpoint_temp=66 hvac_control_heating_weekend_setpoint_temp=66 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 67F ResStockArguments hvac_control_heating_weekday_setpoint_temp=67 hvac_control_heating_weekend_setpoint_temp=67 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 68F ResStockArguments hvac_control_heating_weekday_setpoint_temp=68 hvac_control_heating_weekend_setpoint_temp=68 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 69F ResStockArguments hvac_control_heating_weekday_setpoint_temp=69 hvac_control_heating_weekend_setpoint_temp=69 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 70F ResStockArguments hvac_control_heating_weekday_setpoint_temp=70 hvac_control_heating_weekend_setpoint_temp=70 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 71F w/ Building America season ResStockArguments hvac_control_heating_weekday_setpoint_temp=71 hvac_control_heating_weekend_setpoint_temp=71 use_auto_heating_season=true hvac_control_heating_season_period=auto +Heating Setpoint 72F ResStockArguments hvac_control_heating_weekday_setpoint_temp=72 hvac_control_heating_weekend_setpoint_temp=72 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 73F ResStockArguments hvac_control_heating_weekday_setpoint_temp=73 hvac_control_heating_weekend_setpoint_temp=73 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 74F ResStockArguments hvac_control_heating_weekday_setpoint_temp=74 hvac_control_heating_weekend_setpoint_temp=74 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 75F ResStockArguments hvac_control_heating_weekday_setpoint_temp=75 hvac_control_heating_weekend_setpoint_temp=75 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 76F ResStockArguments hvac_control_heating_weekday_setpoint_temp=76 hvac_control_heating_weekend_setpoint_temp=76 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 78F ResStockArguments hvac_control_heating_weekday_setpoint_temp=78 hvac_control_heating_weekend_setpoint_temp=78 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint 80F ResStockArguments hvac_control_heating_weekday_setpoint_temp=80 hvac_control_heating_weekend_setpoint_temp=80 use_auto_heating_season=false hvac_control_heating_season_period=auto +Heating Setpoint Has Offset No +Heating Setpoint Has Offset Yes +Heating Setpoint Offset Magnitude 0F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=0 hvac_control_heating_weekend_setpoint_offset_magnitude=0 +Heating Setpoint Offset Magnitude 12F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=12 hvac_control_heating_weekend_setpoint_offset_magnitude=12 +Heating Setpoint Offset Magnitude 3F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=3 hvac_control_heating_weekend_setpoint_offset_magnitude=3 +Heating Setpoint Offset Magnitude 6F ResStockArguments hvac_control_heating_weekday_setpoint_offset_magnitude=6 hvac_control_heating_weekend_setpoint_offset_magnitude=6 +Heating Setpoint Offset Period Day ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Day and Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1" +Heating Setpoint Offset Period Day and Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1" +Heating Setpoint Offset Period Day and Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0" "hvac_control_heating_weekend_setpoint_schedule=0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0" +Heating Setpoint Offset Period Day and Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Day and Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" "hvac_control_heating_weekend_setpoint_schedule=-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1" +Heating Setpoint Offset Period Night ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1" +Heating Setpoint Offset Period Night +1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1" +Heating Setpoint Offset Period Night +2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night +5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Heating Setpoint Offset Period Night -1h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1" +Heating Setpoint Offset Period Night -2h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -3h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -4h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period Night -5h ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" "hvac_control_heating_weekend_setpoint_schedule=-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1" +Heating Setpoint Offset Period None ResStockArguments "hvac_control_heating_weekday_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" "hvac_control_heating_weekend_setpoint_schedule=0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0" +Holiday Lighting No Exterior Use ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Holiday Lighting None ResStockArguments holiday_lighting_present=false holiday_lighting_daily_kwh=0 holiday_lighting_period=auto +Hot Water Distribution "R-2, Demand" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=presence sensor demand control hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-2, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution "R-5, Timer" ResStockArguments hot_water_distribution_system_type=Recirculation hot_water_distribution_standard_piping_length=0 hot_water_distribution_recirc_control_type=timer hot_water_distribution_recirc_piping_length=auto hot_water_distribution_recirc_branch_piping_length=auto hot_water_distribution_recirc_pump_power=auto hot_water_distribution_pipe_r=5 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution R-2 ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=2 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Distribution Uninsulated ResStockArguments hot_water_distribution_system_type=Standard hot_water_distribution_standard_piping_length=auto hot_water_distribution_recirc_control_type=no control hot_water_distribution_recirc_piping_length=0 hot_water_distribution_recirc_branch_piping_length=0 hot_water_distribution_recirc_pump_power=0 hot_water_distribution_pipe_r=0 dwhr_facilities_connected=none dwhr_equal_flow=true dwhr_efficiency=0.0 +Hot Water Fixtures "100% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures "200% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures "50% Usage, Low Flow" ResStockArguments water_fixtures_shower_low_flow=true water_fixtures_sink_low_flow=true water_fixtures_usage_multiplier=0.5 +Hot Water Fixtures 100% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=1.0 +Hot Water Fixtures 200% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=2.0 +Hot Water Fixtures 50% Usage ResStockArguments water_fixtures_shower_low_flow=false water_fixtures_sink_low_flow=false water_fixtures_usage_multiplier=0.5 +Household Has Tribal Persons No +Household Has Tribal Persons Not Available +Household Has Tribal Persons Yes +ISO RTO Region CAISO +ISO RTO Region ERCOT +ISO RTO Region MISO +ISO RTO Region NEISO +ISO RTO Region NYISO +ISO RTO Region None +ISO RTO Region PJM +ISO RTO Region SPP +Income 10000-14999 +Income 100000-119999 +Income 120000-139999 +Income 140000-159999 +Income 15000-19999 +Income 160000-179999 +Income 180000-199999 +Income 20000-24999 +Income 200000+ +Income 25000-29999 +Income 30000-34999 +Income 35000-39999 +Income 40000-44999 +Income 45000-49999 +Income 50000-59999 +Income 60000-69999 +Income 70000-79999 +Income 80000-99999 +Income <10000 +Income Not Available +Income RECS2015 100000-119999 +Income RECS2015 120000-139999 +Income RECS2015 140000+ +Income RECS2015 20000-39999 +Income RECS2015 40000-59999 +Income RECS2015 60000-79999 +Income RECS2015 80000-99999 +Income RECS2015 <20000 +Income RECS2015 Not Available +Income RECS2020 100000-149999 +Income RECS2020 150000+ +Income RECS2020 20000-39999 +Income RECS2020 40000-59999 +Income RECS2020 60000-99999 +Income RECS2020 <20000 +Income RECS2020 Not Available +Infiltration "7 ACH50, 0.5 Shelter Coefficient" ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 0.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=0.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 1.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=1.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 10 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=10 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 11.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=11.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 15 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=15 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 18.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=18.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 2.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=2.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 20 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=20 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 3.75 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=3.75 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 30 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=30 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 4.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=4.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 40 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=40 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 5.25 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=5.25 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 50 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=50 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 6 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=6 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 7.5 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=7.5 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration 8 ACH50 ResStockArguments air_leakage_units=ACH air_leakage_house_pressure=50 air_leakage_value=8 air_leakage_type=unit exterior only site_shielding_of_home=normal +Infiltration Reduction 15% ResStockArguments air_leakage_percent_reduction=15 +Infiltration Reduction 20% ResStockArguments air_leakage_percent_reduction=20 +Infiltration Reduction 25% ResStockArguments air_leakage_percent_reduction=25 +Insulation Ceiling None ResStockArguments ceiling_assembly_r=0 ceiling_insulation_r=0 +Insulation Ceiling R-13 ResStockArguments ceiling_assembly_r=14.6 ceiling_insulation_r=13 +Insulation Ceiling R-19 ResStockArguments ceiling_assembly_r=20.6 ceiling_insulation_r=19 +Insulation Ceiling R-30 ResStockArguments ceiling_assembly_r=31.6 ceiling_insulation_r=30 +Insulation Ceiling R-38 ResStockArguments ceiling_assembly_r=39.6 ceiling_insulation_r=38 +Insulation Ceiling R-49 ResStockArguments ceiling_assembly_r=50.6 ceiling_insulation_r=49 +Insulation Ceiling R-60 ResStockArguments ceiling_assembly_r=61.6 ceiling_insulation_r=60 +Insulation Ceiling R-7 ResStockArguments ceiling_assembly_r=8.7 ceiling_insulation_r=7 +Insulation Ceiling Uninsulated ResStockArguments ceiling_assembly_r=2.1 ceiling_insulation_r=0 +Insulation Floor Ceiling R-13 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=17.8 floor_over_garage_assembly_r=17.8 +Insulation Floor Ceiling R-19 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=22.6 floor_over_garage_assembly_r=22.6 +Insulation Floor Ceiling R-30 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=30.3 floor_over_garage_assembly_r=30.3 +Insulation Floor Ceiling R-38 ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=35.1 floor_over_garage_assembly_r=35.1 +Insulation Floor None ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=0 floor_over_garage_assembly_r=5.3 +Insulation Floor Uninsulated ResStockArguments floor_type=WoodFrame floor_over_foundation_assembly_r=5.3 floor_over_garage_assembly_r=5.3 +Insulation Foundation Wall "Wall R-10, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=10 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-13, Interior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=13 foundation_wall_insulation_location=interior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-15, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=15 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall "Wall R-5, Exterior" ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=5 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=auto foundation_wall_assembly_r=auto +Insulation Foundation Wall None ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Foundation Wall Uninsulated ResStockArguments foundation_wall_type=solid concrete foundation_wall_thickness=auto foundation_wall_insulation_r=0 foundation_wall_insulation_location=exterior foundation_wall_insulation_distance_to_top=0 foundation_wall_insulation_distance_to_bottom=0 foundation_wall_assembly_r=auto +Insulation Rim Joist "R-10, Exterior" ResStockArguments rim_joist_continuous_exterior_r=10 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-13, Interior" ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=13 rim_joist_assembly_interior_r=10.4 rim_joist_assembly_r=auto +Insulation Rim Joist "R-15, Exterior" ResStockArguments rim_joist_continuous_exterior_r=15 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist "R-5, Exterior" ResStockArguments rim_joist_continuous_exterior_r=5 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist None ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Rim Joist Uninsulated ResStockArguments rim_joist_continuous_exterior_r=0 rim_joist_continuous_interior_r=0 rim_joist_assembly_interior_r=0 rim_joist_assembly_r=auto +Insulation Roof "Finished, R-13" ResStockArguments roof_assembly_r=14.3 +Insulation Roof "Finished, R-19" ResStockArguments roof_assembly_r=21.2 +Insulation Roof "Finished, R-30" ResStockArguments roof_assembly_r=29.7 +Insulation Roof "Finished, R-38" ResStockArguments roof_assembly_r=36.5 +Insulation Roof "Finished, R-49" ResStockArguments roof_assembly_r=47.0 +Insulation Roof "Finished, R-7" ResStockArguments roof_assembly_r=10.2 +Insulation Roof "Finished, Uninsulated" ResStockArguments roof_assembly_r=3.7 +Insulation Roof "Unfinished, Uninsulated" ResStockArguments roof_assembly_r=2.3 +Insulation Sheathing R-10 ResStockArguments wall_continuous_exterior_r=10 +Insulation Sheathing R-15 ResStockArguments wall_continuous_exterior_r=15 +Insulation Sheathing R-5 ResStockArguments wall_continuous_exterior_r=5 +Insulation Slab "2ft R10 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=10 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R10 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Perimeter, Vertical" ResStockArguments slab_perimeter_insulation_r=5 slab_perimeter_depth=2 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "2ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=2 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "4ft R5 Under, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=5 slab_under_width=4 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab "R10 Whole Slab, Horizontal" ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=10 slab_under_width=999 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab None ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Slab Uninsulated ResStockArguments slab_perimeter_insulation_r=0 slab_perimeter_depth=0 slab_under_insulation_r=0 slab_under_width=0 slab_thickness=auto slab_carpet_fraction=auto slab_carpet_r=auto +Insulation Wall "Brick, 12-in, 3-wythe, R-11" ResStockArguments wall_type=StructuralBrick wall_assembly_r=13.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-15" ResStockArguments wall_type=StructuralBrick wall_assembly_r=15.9 +Insulation Wall "Brick, 12-in, 3-wythe, R-19" ResStockArguments wall_type=StructuralBrick wall_assembly_r=18.3 +Insulation Wall "Brick, 12-in, 3-wythe, R-7" ResStockArguments wall_type=StructuralBrick wall_assembly_r=10.3 +Insulation Wall "Brick, 12-in, 3-wythe, Uninsulated" ResStockArguments wall_type=StructuralBrick wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4.9 +Insulation Wall "CMU, 12-in Hollow, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.9 +Insulation Wall "CMU, 6-in Concrete Filled" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=3.7 +Insulation Wall "CMU, 6-in Concrete-Filled, R-10" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=11.4 +Insulation Wall "CMU, 6-in Hollow, R-11" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=12.4 +Insulation Wall "CMU, 6-in Hollow, R-15" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=15 +Insulation Wall "CMU, 6-in Hollow, R-19" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=17.4 +Insulation Wall "CMU, 6-in Hollow, R-7" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=9.4 +Insulation Wall "CMU, 6-in Hollow, Uninsulated" ResStockArguments wall_type=ConcreteMasonryUnit wall_assembly_r=4 +Insulation Wall "Double Wood Stud, R-33" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=28.1 +Insulation Wall "Double Wood Stud, R-45, Grade 3" ResStockArguments wall_type=DoubleWoodStud wall_assembly_r=25.1 +Insulation Wall "Generic, 10-in Grid ICF" ResStockArguments wall_type=WoodStud wall_assembly_r=12.4 +Insulation Wall "Generic, T-Mass Wall w/Metal Ties" ResStockArguments wall_type=WoodStud wall_assembly_r=9 +Insulation Wall "ICF, 2-in EPS, 12-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=22.5 +Insulation Wall "ICF, 2-in EPS, 4-in Concrete, 2-in EPS" ResStockArguments wall_type=InsulatedConcreteForms wall_assembly_r=20.4 +Insulation Wall "SIP, 3.6 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=15.5 +Insulation Wall "SIP, 9.4 in EPS Core, Gypsum int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=35.8 +Insulation Wall "SIP, 9.4 in EPS Core, OSB int." ResStockArguments wall_type=StructuralInsulatedPanel wall_assembly_r=36 +Insulation Wall "Steel Stud, R-13" ResStockArguments wall_type=SteelFrame wall_assembly_r=7.9 +Insulation Wall "Steel Stud, R-25, Grade 3" ResStockArguments wall_type=SteelFrame wall_assembly_r=10.4 +Insulation Wall "Steel Stud, Uninsulated" ResStockArguments wall_type=SteelFrame wall_assembly_r=3 +Insulation Wall "Wood Stud, R-11" ResStockArguments wall_type=WoodStud wall_assembly_r=10.3 +Insulation Wall "Wood Stud, R-11, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=15.3 +Insulation Wall "Wood Stud, R-13" ResStockArguments wall_type=WoodStud wall_assembly_r=11.3 +Insulation Wall "Wood Stud, R-13, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=16.3 +Insulation Wall "Wood Stud, R-15" ResStockArguments wall_type=WoodStud wall_assembly_r=12.1 +Insulation Wall "Wood Stud, R-15, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=17.1 +Insulation Wall "Wood Stud, R-19" ResStockArguments wall_type=WoodStud wall_assembly_r=15.4 +Insulation Wall "Wood Stud, R-19, Grade 2" ResStockArguments wall_type=WoodStud wall_assembly_r=14.5 +Insulation Wall "Wood Stud, R-19, Grade 2, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.5 +Insulation Wall "Wood Stud, R-19, Grade 3" ResStockArguments wall_type=WoodStud wall_assembly_r=13.4 +Insulation Wall "Wood Stud, R-19, Grade 3, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=18.4 +Insulation Wall "Wood Stud, R-19, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=20.4 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c." ResStockArguments wall_type=WoodStud wall_assembly_r=14.7 +Insulation Wall "Wood Stud, R-23 Closed Cell Spray Foam, 2x4, 16 in o.c., R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=19.7 +Insulation Wall "Wood Stud, R-36" ResStockArguments wall_type=WoodStud wall_assembly_r=22.3 +Insulation Wall "Wood Stud, R-36, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=27.3 +Insulation Wall "Wood Stud, R-7" ResStockArguments wall_type=WoodStud wall_assembly_r=8.7 +Insulation Wall "Wood Stud, R-7, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=13.7 +Insulation Wall "Wood Stud, Uninsulated" ResStockArguments wall_type=WoodStud wall_assembly_r=3.4 +Insulation Wall "Wood Stud, Uninsulated, R-5 Sheathing" ResStockArguments wall_type=WoodStud wall_assembly_r=8.4 +Insulation Wall Void +Interior Shading "Summer = 0.5, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.5, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.5 window_interior_shading_winter=0.95 +Interior Shading "Summer = 0.6, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.6 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.7" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.7 +Interior Shading "Summer = 0.7, Winter = 0.85" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.85 +Interior Shading "Summer = 0.7, Winter = 0.95" ResStockArguments window_interior_shading_summer=0.7 window_interior_shading_winter=0.95 +Lighting 100% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=1 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=1 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=1 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% Incandescent ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting 100% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=1 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=1 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=1 +Lighting 20% LED ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0.2 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0.2 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0.2 +Lighting 60% CFL ResStockArguments lighting_present=true lighting_interior_fraction_cfl=0.6 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0.6 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0.6 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting None ResStockArguments lighting_present=false lighting_interior_fraction_cfl=0 lighting_interior_fraction_lfl=0 lighting_interior_fraction_led=0 lighting_exterior_fraction_cfl=0 lighting_exterior_fraction_lfl=0 lighting_exterior_fraction_led=0 lighting_garage_fraction_cfl=0 lighting_garage_fraction_lfl=0 lighting_garage_fraction_led=0 +Lighting Interior Use 100% Usage ResStockArguments lighting_interior_usage_multiplier=1.0 +Lighting Interior Use 95% Usage ResStockArguments lighting_interior_usage_multiplier=0.95 +Lighting Interior Use None ResStockArguments lighting_interior_usage_multiplier=0.0 +Lighting Other Use 100% Usage ResStockArguments lighting_exterior_usage_multiplier=1.0 lighting_garage_usage_multiplier=1.0 +Lighting Other Use 95% Usage ResStockArguments lighting_exterior_usage_multiplier=0.95 lighting_garage_usage_multiplier=0.95 +Lighting Other Use None ResStockArguments lighting_exterior_usage_multiplier=0.0 lighting_garage_usage_multiplier=0.0 +Location Region CR02 +Location Region CR03 +Location Region CR04 +Location Region CR05 +Location Region CR06 +Location Region CR07 +Location Region CR08 +Location Region CR09 +Location Region CR10 +Location Region CR11 +Location Region CRAK +Location Region CRHI +Mechanical Ventilation "ERV, 72%" ResStockArguments mech_vent_fan_type=energy recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0.48 mech_vent_sensible_recovery_efficiency=0.72 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation "HRV, 60%" ResStockArguments mech_vent_fan_type=heat recovery ventilator mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0.6 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Exhaust ResStockArguments mech_vent_fan_type=exhaust only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation None ResStockArguments mech_vent_fan_type=none mech_vent_flow_rate=0 mech_vent_hours_in_operation=0 mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=0 mech_vent_num_units_served=0 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Mechanical Ventilation Supply ResStockArguments mech_vent_fan_type=supply only mech_vent_flow_rate=auto mech_vent_hours_in_operation=auto mech_vent_recovery_efficiency_type=Unadjusted mech_vent_total_recovery_efficiency=0 mech_vent_sensible_recovery_efficiency=0 mech_vent_fan_power=auto mech_vent_num_units_served=1 mech_vent_2_fan_type=none mech_vent_2_flow_rate=0 mech_vent_2_hours_in_operation=0 mech_vent_2_recovery_efficiency_type=Unadjusted mech_vent_2_total_recovery_efficiency=0 mech_vent_2_sensible_recovery_efficiency=0 mech_vent_2_fan_power=0 whole_house_fan_present=false whole_house_fan_flow_rate=0 whole_house_fan_power=0 mech_vent_shared_frac_recirculation=auto mech_vent_shared_precooling_efficiency=auto mech_vent_shared_precooling_fraction_cool_load_served=auto mech_vent_shared_precooling_fuel=auto mech_vent_shared_preheating_efficiency=auto mech_vent_shared_preheating_fraction_heat_load_served=auto mech_vent_shared_preheating_fuel=auto +Misc Extra Refrigerator "EF 15.9, Fed Standard, bottom freezer-reference fridge" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=573 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 19.8, bottom freezer" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=458 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, Average Installed" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator "EF 6.9, National Average" ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1102 extra_refrigerator_usage_multiplier=0.221 +Misc Extra Refrigerator EF 10.2 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=748 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 10.5 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=727 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 15.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=480 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 17.6 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=433 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 19.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=383 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 21.9 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=348 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator EF 6.7 ResStockArguments extra_refrigerator_present=true extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=1139 extra_refrigerator_usage_multiplier=1.0 +Misc Extra Refrigerator None ResStockArguments extra_refrigerator_present=false extra_refrigerator_location=auto extra_refrigerator_rated_annual_kwh=0 extra_refrigerator_usage_multiplier=0 +Misc Extra Refrigerator Void +Misc Freezer "EF 12, Average Installed" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=1.0 +Misc Freezer "EF 12, National Average" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=935 freezer_usage_multiplier=0.342 +Misc Freezer "EF 16, 2001 Fed Standard-reference freezer" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=712 freezer_usage_multiplier=1.0 +Misc Freezer "EF 18, 2008 Energy Star" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=641 freezer_usage_multiplier=1.0 +Misc Freezer "EF 20, 2008 Energy Star Most Efficient" ResStockArguments freezer_present=true freezer_location=auto freezer_rated_annual_kwh=568 freezer_usage_multiplier=1.0 +Misc Freezer None ResStockArguments freezer_present=false freezer_location=auto freezer_rated_annual_kwh=0 freezer_usage_multiplier=0 +Misc Freezer Void +Misc Gas Fireplace Gas Fireplace ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=1.0 +Misc Gas Fireplace National Average ResStockArguments misc_fuel_loads_fireplace_present=true misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=auto misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0.032 +Misc Gas Fireplace None ResStockArguments misc_fuel_loads_fireplace_present=false misc_fuel_loads_fireplace_fuel_type=natural gas misc_fuel_loads_fireplace_annual_therm=0 misc_fuel_loads_fireplace_frac_sensible=auto misc_fuel_loads_fireplace_frac_latent=auto misc_fuel_loads_fireplace_usage_multiplier=0 +Misc Gas Grill Gas Grill ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=1.0 +Misc Gas Grill National Average ResStockArguments misc_fuel_loads_grill_present=true misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=auto misc_fuel_loads_grill_usage_multiplier=0.029 +Misc Gas Grill None ResStockArguments misc_fuel_loads_grill_present=false misc_fuel_loads_grill_fuel_type=natural gas misc_fuel_loads_grill_annual_therm=0 misc_fuel_loads_grill_usage_multiplier=0 +Misc Gas Lighting Gas Lighting ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=1.0 +Misc Gas Lighting National Average ResStockArguments misc_fuel_loads_lighting_present=true misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=auto misc_fuel_loads_lighting_usage_multiplier=0.012 +Misc Gas Lighting None ResStockArguments misc_fuel_loads_lighting_present=false misc_fuel_loads_lighting_fuel_type=natural gas misc_fuel_loads_lighting_annual_therm=0 misc_fuel_loads_lighting_usage_multiplier=0 +Misc Hot Tub Spa Electricity ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=electric resistance permanent_spa_heater_annual_kwh=auto permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa Natural Gas ResStockArguments permanent_spa_present=true permanent_spa_pump_annual_kwh=auto permanent_spa_pump_usage_multiplier=1.0 permanent_spa_heater_type=gas fired permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=auto permanent_spa_heater_usage_multiplier=1.0 +Misc Hot Tub Spa None ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Other Fuel ResStockArguments permanent_spa_present=false permanent_spa_pump_annual_kwh=0 permanent_spa_pump_usage_multiplier=0 permanent_spa_heater_type=none permanent_spa_heater_annual_kwh=0 permanent_spa_heater_annual_therm=0 permanent_spa_heater_usage_multiplier=0 +Misc Hot Tub Spa Void +Misc Pool Has Pool ResStockArguments pool_present=true +Misc Pool None ResStockArguments pool_present=false +Misc Pool Void +Misc Pool Heater "Electric, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Electric, Covered" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Electric, Covered, 78F" ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=0.2 +Misc Pool Heater "Gas, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.8 +Misc Pool Heater "Gas, Covered" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.3 +Misc Pool Heater "Gas, Covered, 78F" ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=0.2 +Misc Pool Heater Electricity ResStockArguments pool_heater_type=electric resistance pool_heater_annual_kwh=auto pool_heater_annual_therm=0 pool_heater_usage_multiplier=1.0 +Misc Pool Heater Natural Gas ResStockArguments pool_heater_type=gas fired pool_heater_annual_kwh=0 pool_heater_annual_therm=auto pool_heater_usage_multiplier=1.0 +Misc Pool Heater None ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Other Fuel ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Solar ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Heater Unheated ResStockArguments pool_heater_type=none pool_heater_annual_kwh=0 pool_heater_annual_therm=0 pool_heater_usage_multiplier=0 +Misc Pool Pump 0.75 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.75 +Misc Pool Pump 1.0 HP Pump ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=1.0 +Misc Pool Pump National Average ResStockArguments pool_pump_annual_kwh=auto pool_pump_usage_multiplier=0.075 +Misc Pool Pump None ResStockArguments pool_pump_annual_kwh=0 pool_pump_usage_multiplier=0 +Misc Well Pump High Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.67 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump National Average ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=0.127 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Misc Well Pump None ResStockArguments misc_plug_loads_well_pump_present=false misc_plug_loads_well_pump_annual_kwh=0 misc_plug_loads_well_pump_usage_multiplier=0 misc_plug_loads_well_pump_2_usage_multiplier=0 +Misc Well Pump Typical Efficiency ResStockArguments misc_plug_loads_well_pump_present=true misc_plug_loads_well_pump_annual_kwh=auto misc_plug_loads_well_pump_usage_multiplier=1.0 misc_plug_loads_well_pump_2_usage_multiplier=1.0 +Natural Ventilation "Cooling Season, 7 days/wk" ResStockArguments window_fraction_operable=0.67 +Natural Ventilation None ResStockArguments window_fraction_operable=0 +Neighbors "Left/Right at 15ft, Front/Back at 80ft" ResStockArguments neighbor_front_distance=80 neighbor_back_distance=80 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 12 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=12 neighbor_right_distance=12 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 2 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=2 neighbor_right_distance=2 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 27 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=27 neighbor_right_distance=27 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 4 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=4 neighbor_right_distance=4 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors 7 ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=7 neighbor_right_distance=7 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Back at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=15 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Front at 15ft ResStockArguments neighbor_front_distance=15 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 10ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=10 neighbor_right_distance=10 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=15 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Left/Right at 20ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=20 neighbor_right_distance=20 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors None ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=0 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Neighbors Right at 15ft ResStockArguments neighbor_front_distance=0 neighbor_back_distance=0 neighbor_left_distance=0 neighbor_right_distance=15 neighbor_front_height=auto neighbor_back_height=auto neighbor_left_height=auto neighbor_right_height=auto +Occupants 0 ResStockArguments geometry_unit_num_occupants=0 +Occupants 1 ResStockArguments geometry_unit_num_occupants=1 +Occupants 10+ ResStockArguments geometry_unit_num_occupants=11 +Occupants 2 ResStockArguments geometry_unit_num_occupants=2 +Occupants 3 ResStockArguments geometry_unit_num_occupants=3 +Occupants 4 ResStockArguments geometry_unit_num_occupants=4 +Occupants 5 ResStockArguments geometry_unit_num_occupants=5 +Occupants 6 ResStockArguments geometry_unit_num_occupants=6 +Occupants 7 ResStockArguments geometry_unit_num_occupants=7 +Occupants 8 ResStockArguments geometry_unit_num_occupants=8 +Occupants 9 ResStockArguments geometry_unit_num_occupants=9 +Orientation ENE ResStockArguments geometry_unit_orientation=68 +Orientation ESE ResStockArguments geometry_unit_orientation=113 +Orientation East ResStockArguments geometry_unit_orientation=90 +Orientation NNE ResStockArguments geometry_unit_orientation=23 +Orientation NNW ResStockArguments geometry_unit_orientation=338 +Orientation North ResStockArguments geometry_unit_orientation=0 +Orientation Northeast ResStockArguments geometry_unit_orientation=45 +Orientation Northwest ResStockArguments geometry_unit_orientation=315 +Orientation SSE ResStockArguments geometry_unit_orientation=158 +Orientation SSW ResStockArguments geometry_unit_orientation=203 +Orientation South ResStockArguments geometry_unit_orientation=180 +Orientation Southeast ResStockArguments geometry_unit_orientation=135 +Orientation Southwest ResStockArguments geometry_unit_orientation=225 +Orientation WNW ResStockArguments geometry_unit_orientation=293 +Orientation WSW ResStockArguments geometry_unit_orientation=248 +Orientation West ResStockArguments geometry_unit_orientation=270 +Overhangs "2ft, All Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Back Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=2 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Front Windows" ResStockArguments overhangs_front_depth=2 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Left Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=2 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs "2ft, Right Windows" ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=2 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +Overhangs None ResStockArguments overhangs_front_depth=0 overhangs_front_distance_to_top_of_window=0 overhangs_front_distance_to_bottom_of_window=4 overhangs_back_depth=0 overhangs_back_distance_to_top_of_window=0 overhangs_back_distance_to_bottom_of_window=4 overhangs_left_depth=0 overhangs_left_distance_to_top_of_window=0 overhangs_left_distance_to_bottom_of_window=4 overhangs_right_depth=0 overhangs_right_distance_to_top_of_window=0 overhangs_right_distance_to_bottom_of_window=4 +PUMA "AK, 00101" +PUMA "AK, 00102" +PUMA "AK, 00200" +PUMA "AK, 00300" +PUMA "AK, 00400" +PUMA "AL, 00100" +PUMA "AL, 00200" +PUMA "AL, 00301" +PUMA "AL, 00302" +PUMA "AL, 00400" +PUMA "AL, 00500" +PUMA "AL, 00600" +PUMA "AL, 00700" +PUMA "AL, 00800" +PUMA "AL, 00900" +PUMA "AL, 01000" +PUMA "AL, 01100" +PUMA "AL, 01200" +PUMA "AL, 01301" +PUMA "AL, 01302" +PUMA "AL, 01303" +PUMA "AL, 01304" +PUMA "AL, 01305" +PUMA "AL, 01400" +PUMA "AL, 01500" +PUMA "AL, 01600" +PUMA "AL, 01700" +PUMA "AL, 01800" +PUMA "AL, 01900" +PUMA "AL, 02000" +PUMA "AL, 02100" +PUMA "AL, 02200" +PUMA "AL, 02300" +PUMA "AL, 02400" +PUMA "AL, 02500" +PUMA "AL, 02600" +PUMA "AL, 02701" +PUMA "AL, 02702" +PUMA "AL, 02703" +PUMA "AR, 00100" +PUMA "AR, 00200" +PUMA "AR, 00300" +PUMA "AR, 00400" +PUMA "AR, 00500" +PUMA "AR, 00600" +PUMA "AR, 00700" +PUMA "AR, 00800" +PUMA "AR, 00900" +PUMA "AR, 01000" +PUMA "AR, 01100" +PUMA "AR, 01200" +PUMA "AR, 01300" +PUMA "AR, 01400" +PUMA "AR, 01500" +PUMA "AR, 01600" +PUMA "AR, 01700" +PUMA "AR, 01800" +PUMA "AR, 01900" +PUMA "AR, 02000" +PUMA "AZ, 00100" +PUMA "AZ, 00101" +PUMA "AZ, 00102" +PUMA "AZ, 00103" +PUMA "AZ, 00104" +PUMA "AZ, 00105" +PUMA "AZ, 00106" +PUMA "AZ, 00107" +PUMA "AZ, 00108" +PUMA "AZ, 00109" +PUMA "AZ, 00110" +PUMA "AZ, 00111" +PUMA "AZ, 00112" +PUMA "AZ, 00113" +PUMA "AZ, 00114" +PUMA "AZ, 00115" +PUMA "AZ, 00116" +PUMA "AZ, 00117" +PUMA "AZ, 00118" +PUMA "AZ, 00119" +PUMA "AZ, 00120" +PUMA "AZ, 00121" +PUMA "AZ, 00122" +PUMA "AZ, 00123" +PUMA "AZ, 00124" +PUMA "AZ, 00125" +PUMA "AZ, 00126" +PUMA "AZ, 00127" +PUMA "AZ, 00128" +PUMA "AZ, 00129" +PUMA "AZ, 00130" +PUMA "AZ, 00131" +PUMA "AZ, 00132" +PUMA "AZ, 00133" +PUMA "AZ, 00134" +PUMA "AZ, 00201" +PUMA "AZ, 00202" +PUMA "AZ, 00203" +PUMA "AZ, 00204" +PUMA "AZ, 00205" +PUMA "AZ, 00206" +PUMA "AZ, 00207" +PUMA "AZ, 00208" +PUMA "AZ, 00209" +PUMA "AZ, 00300" +PUMA "AZ, 00400" +PUMA "AZ, 00500" +PUMA "AZ, 00600" +PUMA "AZ, 00700" +PUMA "AZ, 00800" +PUMA "AZ, 00803" +PUMA "AZ, 00805" +PUMA "AZ, 00807" +PUMA "AZ, 00900" +PUMA "CA, 00101" +PUMA "CA, 00102" +PUMA "CA, 00103" +PUMA "CA, 00104" +PUMA "CA, 00105" +PUMA "CA, 00106" +PUMA "CA, 00107" +PUMA "CA, 00108" +PUMA "CA, 00109" +PUMA "CA, 00110" +PUMA "CA, 00300" +PUMA "CA, 00701" +PUMA "CA, 00702" +PUMA "CA, 01100" +PUMA "CA, 01301" +PUMA "CA, 01302" +PUMA "CA, 01303" +PUMA "CA, 01304" +PUMA "CA, 01305" +PUMA "CA, 01306" +PUMA "CA, 01307" +PUMA "CA, 01308" +PUMA "CA, 01309" +PUMA "CA, 01500" +PUMA "CA, 01700" +PUMA "CA, 01901" +PUMA "CA, 01902" +PUMA "CA, 01903" +PUMA "CA, 01904" +PUMA "CA, 01905" +PUMA "CA, 01906" +PUMA "CA, 01907" +PUMA "CA, 02300" +PUMA "CA, 02500" +PUMA "CA, 02901" +PUMA "CA, 02902" +PUMA "CA, 02903" +PUMA "CA, 02904" +PUMA "CA, 02905" +PUMA "CA, 03100" +PUMA "CA, 03300" +PUMA "CA, 03701" +PUMA "CA, 03702" +PUMA "CA, 03703" +PUMA "CA, 03704" +PUMA "CA, 03705" +PUMA "CA, 03706" +PUMA "CA, 03707" +PUMA "CA, 03708" +PUMA "CA, 03709" +PUMA "CA, 03710" +PUMA "CA, 03711" +PUMA "CA, 03712" +PUMA "CA, 03713" +PUMA "CA, 03714" +PUMA "CA, 03715" +PUMA "CA, 03716" +PUMA "CA, 03717" +PUMA "CA, 03718" +PUMA "CA, 03719" +PUMA "CA, 03720" +PUMA "CA, 03721" +PUMA "CA, 03722" +PUMA "CA, 03723" +PUMA "CA, 03724" +PUMA "CA, 03725" +PUMA "CA, 03726" +PUMA "CA, 03727" +PUMA "CA, 03728" +PUMA "CA, 03729" +PUMA "CA, 03730" +PUMA "CA, 03731" +PUMA "CA, 03732" +PUMA "CA, 03733" +PUMA "CA, 03734" +PUMA "CA, 03735" +PUMA "CA, 03736" +PUMA "CA, 03737" +PUMA "CA, 03738" +PUMA "CA, 03739" +PUMA "CA, 03740" +PUMA "CA, 03741" +PUMA "CA, 03742" +PUMA "CA, 03743" +PUMA "CA, 03744" +PUMA "CA, 03745" +PUMA "CA, 03746" +PUMA "CA, 03747" +PUMA "CA, 03748" +PUMA "CA, 03749" +PUMA "CA, 03750" +PUMA "CA, 03751" +PUMA "CA, 03752" +PUMA "CA, 03753" +PUMA "CA, 03754" +PUMA "CA, 03755" +PUMA "CA, 03756" +PUMA "CA, 03757" +PUMA "CA, 03758" +PUMA "CA, 03759" +PUMA "CA, 03760" +PUMA "CA, 03761" +PUMA "CA, 03762" +PUMA "CA, 03763" +PUMA "CA, 03764" +PUMA "CA, 03765" +PUMA "CA, 03766" +PUMA "CA, 03767" +PUMA "CA, 03768" +PUMA "CA, 03769" +PUMA "CA, 03900" +PUMA "CA, 04101" +PUMA "CA, 04102" +PUMA "CA, 04701" +PUMA "CA, 04702" +PUMA "CA, 05301" +PUMA "CA, 05302" +PUMA "CA, 05303" +PUMA "CA, 05500" +PUMA "CA, 05700" +PUMA "CA, 05901" +PUMA "CA, 05902" +PUMA "CA, 05903" +PUMA "CA, 05904" +PUMA "CA, 05905" +PUMA "CA, 05906" +PUMA "CA, 05907" +PUMA "CA, 05908" +PUMA "CA, 05909" +PUMA "CA, 05910" +PUMA "CA, 05911" +PUMA "CA, 05912" +PUMA "CA, 05913" +PUMA "CA, 05914" +PUMA "CA, 05915" +PUMA "CA, 05916" +PUMA "CA, 05917" +PUMA "CA, 05918" +PUMA "CA, 06101" +PUMA "CA, 06102" +PUMA "CA, 06103" +PUMA "CA, 06501" +PUMA "CA, 06502" +PUMA "CA, 06503" +PUMA "CA, 06504" +PUMA "CA, 06505" +PUMA "CA, 06506" +PUMA "CA, 06507" +PUMA "CA, 06508" +PUMA "CA, 06509" +PUMA "CA, 06510" +PUMA "CA, 06511" +PUMA "CA, 06512" +PUMA "CA, 06513" +PUMA "CA, 06514" +PUMA "CA, 06515" +PUMA "CA, 06701" +PUMA "CA, 06702" +PUMA "CA, 06703" +PUMA "CA, 06704" +PUMA "CA, 06705" +PUMA "CA, 06706" +PUMA "CA, 06707" +PUMA "CA, 06708" +PUMA "CA, 06709" +PUMA "CA, 06710" +PUMA "CA, 06711" +PUMA "CA, 06712" +PUMA "CA, 07101" +PUMA "CA, 07102" +PUMA "CA, 07103" +PUMA "CA, 07104" +PUMA "CA, 07105" +PUMA "CA, 07106" +PUMA "CA, 07107" +PUMA "CA, 07108" +PUMA "CA, 07109" +PUMA "CA, 07110" +PUMA "CA, 07111" +PUMA "CA, 07112" +PUMA "CA, 07113" +PUMA "CA, 07114" +PUMA "CA, 07115" +PUMA "CA, 07301" +PUMA "CA, 07302" +PUMA "CA, 07303" +PUMA "CA, 07304" +PUMA "CA, 07305" +PUMA "CA, 07306" +PUMA "CA, 07307" +PUMA "CA, 07308" +PUMA "CA, 07309" +PUMA "CA, 07310" +PUMA "CA, 07311" +PUMA "CA, 07312" +PUMA "CA, 07313" +PUMA "CA, 07314" +PUMA "CA, 07315" +PUMA "CA, 07316" +PUMA "CA, 07317" +PUMA "CA, 07318" +PUMA "CA, 07319" +PUMA "CA, 07320" +PUMA "CA, 07321" +PUMA "CA, 07322" +PUMA "CA, 07501" +PUMA "CA, 07502" +PUMA "CA, 07503" +PUMA "CA, 07504" +PUMA "CA, 07505" +PUMA "CA, 07506" +PUMA "CA, 07507" +PUMA "CA, 07701" +PUMA "CA, 07702" +PUMA "CA, 07703" +PUMA "CA, 07704" +PUMA "CA, 07901" +PUMA "CA, 07902" +PUMA "CA, 08101" +PUMA "CA, 08102" +PUMA "CA, 08103" +PUMA "CA, 08104" +PUMA "CA, 08105" +PUMA "CA, 08106" +PUMA "CA, 08301" +PUMA "CA, 08302" +PUMA "CA, 08303" +PUMA "CA, 08501" +PUMA "CA, 08502" +PUMA "CA, 08503" +PUMA "CA, 08504" +PUMA "CA, 08505" +PUMA "CA, 08506" +PUMA "CA, 08507" +PUMA "CA, 08508" +PUMA "CA, 08509" +PUMA "CA, 08510" +PUMA "CA, 08511" +PUMA "CA, 08512" +PUMA "CA, 08513" +PUMA "CA, 08514" +PUMA "CA, 08701" +PUMA "CA, 08702" +PUMA "CA, 08900" +PUMA "CA, 09501" +PUMA "CA, 09502" +PUMA "CA, 09503" +PUMA "CA, 09701" +PUMA "CA, 09702" +PUMA "CA, 09703" +PUMA "CA, 09901" +PUMA "CA, 09902" +PUMA "CA, 09903" +PUMA "CA, 09904" +PUMA "CA, 10100" +PUMA "CA, 10701" +PUMA "CA, 10702" +PUMA "CA, 10703" +PUMA "CA, 11101" +PUMA "CA, 11102" +PUMA "CA, 11103" +PUMA "CA, 11104" +PUMA "CA, 11105" +PUMA "CA, 11106" +PUMA "CA, 11300" +PUMA "CO, 00100" +PUMA "CO, 00102" +PUMA "CO, 00103" +PUMA "CO, 00200" +PUMA "CO, 00300" +PUMA "CO, 00400" +PUMA "CO, 00600" +PUMA "CO, 00700" +PUMA "CO, 00800" +PUMA "CO, 00801" +PUMA "CO, 00802" +PUMA "CO, 00803" +PUMA "CO, 00804" +PUMA "CO, 00805" +PUMA "CO, 00806" +PUMA "CO, 00807" +PUMA "CO, 00808" +PUMA "CO, 00809" +PUMA "CO, 00810" +PUMA "CO, 00811" +PUMA "CO, 00812" +PUMA "CO, 00813" +PUMA "CO, 00814" +PUMA "CO, 00815" +PUMA "CO, 00816" +PUMA "CO, 00817" +PUMA "CO, 00818" +PUMA "CO, 00819" +PUMA "CO, 00820" +PUMA "CO, 00821" +PUMA "CO, 00822" +PUMA "CO, 00823" +PUMA "CO, 00824" +PUMA "CO, 00900" +PUMA "CO, 01001" +PUMA "CO, 01002" +PUMA "CO, 04101" +PUMA "CO, 04102" +PUMA "CO, 04103" +PUMA "CO, 04104" +PUMA "CO, 04105" +PUMA "CO, 04106" +PUMA "CT, 00100" +PUMA "CT, 00101" +PUMA "CT, 00102" +PUMA "CT, 00103" +PUMA "CT, 00104" +PUMA "CT, 00105" +PUMA "CT, 00300" +PUMA "CT, 00301" +PUMA "CT, 00302" +PUMA "CT, 00303" +PUMA "CT, 00304" +PUMA "CT, 00305" +PUMA "CT, 00306" +PUMA "CT, 00500" +PUMA "CT, 00700" +PUMA "CT, 00900" +PUMA "CT, 00901" +PUMA "CT, 00902" +PUMA "CT, 00903" +PUMA "CT, 00904" +PUMA "CT, 00905" +PUMA "CT, 00906" +PUMA "CT, 01100" +PUMA "CT, 01101" +PUMA "CT, 01300" +PUMA "CT, 01500" +PUMA "DC, 00101" +PUMA "DC, 00102" +PUMA "DC, 00103" +PUMA "DC, 00104" +PUMA "DC, 00105" +PUMA "DE, 00101" +PUMA "DE, 00102" +PUMA "DE, 00103" +PUMA "DE, 00104" +PUMA "DE, 00200" +PUMA "DE, 00300" +PUMA "FL, 00101" +PUMA "FL, 00102" +PUMA "FL, 00500" +PUMA "FL, 00901" +PUMA "FL, 00902" +PUMA "FL, 00903" +PUMA "FL, 00904" +PUMA "FL, 01101" +PUMA "FL, 01102" +PUMA "FL, 01103" +PUMA "FL, 01104" +PUMA "FL, 01105" +PUMA "FL, 01106" +PUMA "FL, 01107" +PUMA "FL, 01108" +PUMA "FL, 01109" +PUMA "FL, 01110" +PUMA "FL, 01111" +PUMA "FL, 01112" +PUMA "FL, 01113" +PUMA "FL, 01114" +PUMA "FL, 01500" +PUMA "FL, 01701" +PUMA "FL, 01900" +PUMA "FL, 02101" +PUMA "FL, 02102" +PUMA "FL, 02103" +PUMA "FL, 02300" +PUMA "FL, 02700" +PUMA "FL, 03101" +PUMA "FL, 03102" +PUMA "FL, 03103" +PUMA "FL, 03104" +PUMA "FL, 03105" +PUMA "FL, 03106" +PUMA "FL, 03107" +PUMA "FL, 03301" +PUMA "FL, 03302" +PUMA "FL, 03500" +PUMA "FL, 05301" +PUMA "FL, 05701" +PUMA "FL, 05702" +PUMA "FL, 05703" +PUMA "FL, 05704" +PUMA "FL, 05705" +PUMA "FL, 05706" +PUMA "FL, 05707" +PUMA "FL, 05708" +PUMA "FL, 06100" +PUMA "FL, 06300" +PUMA "FL, 06901" +PUMA "FL, 06902" +PUMA "FL, 06903" +PUMA "FL, 07101" +PUMA "FL, 07102" +PUMA "FL, 07103" +PUMA "FL, 07104" +PUMA "FL, 07105" +PUMA "FL, 07300" +PUMA "FL, 07301" +PUMA "FL, 08101" +PUMA "FL, 08102" +PUMA "FL, 08103" +PUMA "FL, 08301" +PUMA "FL, 08302" +PUMA "FL, 08303" +PUMA "FL, 08500" +PUMA "FL, 08601" +PUMA "FL, 08602" +PUMA "FL, 08603" +PUMA "FL, 08604" +PUMA "FL, 08605" +PUMA "FL, 08606" +PUMA "FL, 08607" +PUMA "FL, 08608" +PUMA "FL, 08609" +PUMA "FL, 08610" +PUMA "FL, 08611" +PUMA "FL, 08612" +PUMA "FL, 08613" +PUMA "FL, 08614" +PUMA "FL, 08615" +PUMA "FL, 08616" +PUMA "FL, 08617" +PUMA "FL, 08618" +PUMA "FL, 08619" +PUMA "FL, 08620" +PUMA "FL, 08621" +PUMA "FL, 08622" +PUMA "FL, 08623" +PUMA "FL, 08624" +PUMA "FL, 08700" +PUMA "FL, 08900" +PUMA "FL, 09100" +PUMA "FL, 09300" +PUMA "FL, 09501" +PUMA "FL, 09502" +PUMA "FL, 09503" +PUMA "FL, 09504" +PUMA "FL, 09505" +PUMA "FL, 09506" +PUMA "FL, 09507" +PUMA "FL, 09508" +PUMA "FL, 09509" +PUMA "FL, 09510" +PUMA "FL, 09701" +PUMA "FL, 09702" +PUMA "FL, 09901" +PUMA "FL, 09902" +PUMA "FL, 09903" +PUMA "FL, 09904" +PUMA "FL, 09905" +PUMA "FL, 09906" +PUMA "FL, 09907" +PUMA "FL, 09908" +PUMA "FL, 09909" +PUMA "FL, 09910" +PUMA "FL, 09911" +PUMA "FL, 10101" +PUMA "FL, 10102" +PUMA "FL, 10103" +PUMA "FL, 10104" +PUMA "FL, 10301" +PUMA "FL, 10302" +PUMA "FL, 10303" +PUMA "FL, 10304" +PUMA "FL, 10305" +PUMA "FL, 10306" +PUMA "FL, 10307" +PUMA "FL, 10308" +PUMA "FL, 10501" +PUMA "FL, 10502" +PUMA "FL, 10503" +PUMA "FL, 10504" +PUMA "FL, 10700" +PUMA "FL, 10900" +PUMA "FL, 11101" +PUMA "FL, 11102" +PUMA "FL, 11300" +PUMA "FL, 11501" +PUMA "FL, 11502" +PUMA "FL, 11503" +PUMA "FL, 11701" +PUMA "FL, 11702" +PUMA "FL, 11703" +PUMA "FL, 11704" +PUMA "FL, 12100" +PUMA "FL, 12701" +PUMA "FL, 12702" +PUMA "FL, 12703" +PUMA "FL, 12704" +PUMA "GA, 00100" +PUMA "GA, 00200" +PUMA "GA, 00300" +PUMA "GA, 00401" +PUMA "GA, 00402" +PUMA "GA, 00500" +PUMA "GA, 00600" +PUMA "GA, 00700" +PUMA "GA, 00800" +PUMA "GA, 00900" +PUMA "GA, 01001" +PUMA "GA, 01002" +PUMA "GA, 01003" +PUMA "GA, 01004" +PUMA "GA, 01005" +PUMA "GA, 01006" +PUMA "GA, 01007" +PUMA "GA, 01008" +PUMA "GA, 01100" +PUMA "GA, 01200" +PUMA "GA, 01300" +PUMA "GA, 01400" +PUMA "GA, 01500" +PUMA "GA, 01600" +PUMA "GA, 01700" +PUMA "GA, 01800" +PUMA "GA, 01900" +PUMA "GA, 02001" +PUMA "GA, 02002" +PUMA "GA, 02003" +PUMA "GA, 02004" +PUMA "GA, 02100" +PUMA "GA, 02200" +PUMA "GA, 02300" +PUMA "GA, 02400" +PUMA "GA, 02500" +PUMA "GA, 02600" +PUMA "GA, 02700" +PUMA "GA, 02800" +PUMA "GA, 02900" +PUMA "GA, 03001" +PUMA "GA, 03002" +PUMA "GA, 03003" +PUMA "GA, 03004" +PUMA "GA, 03005" +PUMA "GA, 03101" +PUMA "GA, 03102" +PUMA "GA, 03200" +PUMA "GA, 03300" +PUMA "GA, 03400" +PUMA "GA, 03500" +PUMA "GA, 03600" +PUMA "GA, 03700" +PUMA "GA, 03800" +PUMA "GA, 03900" +PUMA "GA, 04000" +PUMA "GA, 04001" +PUMA "GA, 04002" +PUMA "GA, 04003" +PUMA "GA, 04004" +PUMA "GA, 04005" +PUMA "GA, 04006" +PUMA "GA, 04100" +PUMA "GA, 04200" +PUMA "GA, 04300" +PUMA "GA, 04400" +PUMA "GA, 04500" +PUMA "GA, 04600" +PUMA "GA, 05001" +PUMA "GA, 05002" +PUMA "GA, 06001" +PUMA "GA, 06002" +PUMA "HI, 00100" +PUMA "HI, 00200" +PUMA "HI, 00301" +PUMA "HI, 00302" +PUMA "HI, 00303" +PUMA "HI, 00304" +PUMA "HI, 00305" +PUMA "HI, 00306" +PUMA "HI, 00307" +PUMA "HI, 00308" +PUMA "IA, 00100" +PUMA "IA, 00200" +PUMA "IA, 00400" +PUMA "IA, 00500" +PUMA "IA, 00600" +PUMA "IA, 00700" +PUMA "IA, 00800" +PUMA "IA, 00900" +PUMA "IA, 01000" +PUMA "IA, 01100" +PUMA "IA, 01200" +PUMA "IA, 01300" +PUMA "IA, 01400" +PUMA "IA, 01500" +PUMA "IA, 01600" +PUMA "IA, 01700" +PUMA "IA, 01800" +PUMA "IA, 01900" +PUMA "IA, 02000" +PUMA "IA, 02100" +PUMA "IA, 02200" +PUMA "IA, 02300" +PUMA "ID, 00100" +PUMA "ID, 00200" +PUMA "ID, 00300" +PUMA "ID, 00400" +PUMA "ID, 00500" +PUMA "ID, 00600" +PUMA "ID, 00701" +PUMA "ID, 00702" +PUMA "ID, 00800" +PUMA "ID, 00900" +PUMA "ID, 01000" +PUMA "ID, 01100" +PUMA "ID, 01200" +PUMA "ID, 01300" +PUMA "IL, 00104" +PUMA "IL, 00105" +PUMA "IL, 00202" +PUMA "IL, 00300" +PUMA "IL, 00401" +PUMA "IL, 00501" +PUMA "IL, 00600" +PUMA "IL, 00700" +PUMA "IL, 00800" +PUMA "IL, 00900" +PUMA "IL, 01001" +PUMA "IL, 01104" +PUMA "IL, 01105" +PUMA "IL, 01204" +PUMA "IL, 01205" +PUMA "IL, 01300" +PUMA "IL, 01500" +PUMA "IL, 01602" +PUMA "IL, 01701" +PUMA "IL, 01900" +PUMA "IL, 02000" +PUMA "IL, 02100" +PUMA "IL, 02200" +PUMA "IL, 02300" +PUMA "IL, 02400" +PUMA "IL, 02501" +PUMA "IL, 02601" +PUMA "IL, 02700" +PUMA "IL, 02801" +PUMA "IL, 02901" +PUMA "IL, 03005" +PUMA "IL, 03007" +PUMA "IL, 03008" +PUMA "IL, 03009" +PUMA "IL, 03102" +PUMA "IL, 03105" +PUMA "IL, 03106" +PUMA "IL, 03107" +PUMA "IL, 03108" +PUMA "IL, 03202" +PUMA "IL, 03203" +PUMA "IL, 03204" +PUMA "IL, 03205" +PUMA "IL, 03207" +PUMA "IL, 03208" +PUMA "IL, 03209" +PUMA "IL, 03306" +PUMA "IL, 03307" +PUMA "IL, 03308" +PUMA "IL, 03309" +PUMA "IL, 03310" +PUMA "IL, 03401" +PUMA "IL, 03407" +PUMA "IL, 03408" +PUMA "IL, 03409" +PUMA "IL, 03410" +PUMA "IL, 03411" +PUMA "IL, 03412" +PUMA "IL, 03413" +PUMA "IL, 03414" +PUMA "IL, 03415" +PUMA "IL, 03416" +PUMA "IL, 03417" +PUMA "IL, 03418" +PUMA "IL, 03419" +PUMA "IL, 03420" +PUMA "IL, 03421" +PUMA "IL, 03422" +PUMA "IL, 03501" +PUMA "IL, 03502" +PUMA "IL, 03503" +PUMA "IL, 03504" +PUMA "IL, 03520" +PUMA "IL, 03521" +PUMA "IL, 03522" +PUMA "IL, 03523" +PUMA "IL, 03524" +PUMA "IL, 03525" +PUMA "IL, 03526" +PUMA "IL, 03527" +PUMA "IL, 03528" +PUMA "IL, 03529" +PUMA "IL, 03530" +PUMA "IL, 03531" +PUMA "IL, 03532" +PUMA "IL, 03601" +PUMA "IL, 03602" +PUMA "IL, 03700" +PUMA "IN, 00101" +PUMA "IN, 00102" +PUMA "IN, 00103" +PUMA "IN, 00104" +PUMA "IN, 00200" +PUMA "IN, 00300" +PUMA "IN, 00401" +PUMA "IN, 00402" +PUMA "IN, 00500" +PUMA "IN, 00600" +PUMA "IN, 00700" +PUMA "IN, 00800" +PUMA "IN, 00900" +PUMA "IN, 01001" +PUMA "IN, 01002" +PUMA "IN, 01003" +PUMA "IN, 01100" +PUMA "IN, 01200" +PUMA "IN, 01300" +PUMA "IN, 01400" +PUMA "IN, 01500" +PUMA "IN, 01600" +PUMA "IN, 01700" +PUMA "IN, 01801" +PUMA "IN, 01802" +PUMA "IN, 01803" +PUMA "IN, 01900" +PUMA "IN, 02000" +PUMA "IN, 02100" +PUMA "IN, 02200" +PUMA "IN, 02301" +PUMA "IN, 02302" +PUMA "IN, 02303" +PUMA "IN, 02304" +PUMA "IN, 02305" +PUMA "IN, 02306" +PUMA "IN, 02307" +PUMA "IN, 02400" +PUMA "IN, 02500" +PUMA "IN, 02600" +PUMA "IN, 02700" +PUMA "IN, 02800" +PUMA "IN, 02900" +PUMA "IN, 03000" +PUMA "IN, 03100" +PUMA "IN, 03200" +PUMA "IN, 03300" +PUMA "IN, 03400" +PUMA "IN, 03500" +PUMA "IN, 03600" +PUMA "KS, 00100" +PUMA "KS, 00200" +PUMA "KS, 00300" +PUMA "KS, 00400" +PUMA "KS, 00500" +PUMA "KS, 00601" +PUMA "KS, 00602" +PUMA "KS, 00603" +PUMA "KS, 00604" +PUMA "KS, 00700" +PUMA "KS, 00801" +PUMA "KS, 00802" +PUMA "KS, 00900" +PUMA "KS, 01000" +PUMA "KS, 01100" +PUMA "KS, 01200" +PUMA "KS, 01301" +PUMA "KS, 01302" +PUMA "KS, 01303" +PUMA "KS, 01304" +PUMA "KS, 01400" +PUMA "KS, 01500" +PUMA "KY, 00100" +PUMA "KY, 00200" +PUMA "KY, 00300" +PUMA "KY, 00400" +PUMA "KY, 00500" +PUMA "KY, 00600" +PUMA "KY, 00700" +PUMA "KY, 00800" +PUMA "KY, 00900" +PUMA "KY, 01000" +PUMA "KY, 01100" +PUMA "KY, 01200" +PUMA "KY, 01300" +PUMA "KY, 01400" +PUMA "KY, 01500" +PUMA "KY, 01600" +PUMA "KY, 01701" +PUMA "KY, 01702" +PUMA "KY, 01703" +PUMA "KY, 01704" +PUMA "KY, 01705" +PUMA "KY, 01706" +PUMA "KY, 01800" +PUMA "KY, 01901" +PUMA "KY, 01902" +PUMA "KY, 02000" +PUMA "KY, 02100" +PUMA "KY, 02200" +PUMA "KY, 02300" +PUMA "KY, 02400" +PUMA "KY, 02500" +PUMA "KY, 02600" +PUMA "KY, 02700" +PUMA "KY, 02800" +PUMA "LA, 00100" +PUMA "LA, 00101" +PUMA "LA, 00200" +PUMA "LA, 00300" +PUMA "LA, 00400" +PUMA "LA, 00500" +PUMA "LA, 00600" +PUMA "LA, 00700" +PUMA "LA, 00800" +PUMA "LA, 00900" +PUMA "LA, 01000" +PUMA "LA, 01100" +PUMA "LA, 01200" +PUMA "LA, 01201" +PUMA "LA, 01300" +PUMA "LA, 01400" +PUMA "LA, 01500" +PUMA "LA, 01501" +PUMA "LA, 01502" +PUMA "LA, 01600" +PUMA "LA, 01700" +PUMA "LA, 01800" +PUMA "LA, 01900" +PUMA "LA, 02000" +PUMA "LA, 02100" +PUMA "LA, 02200" +PUMA "LA, 02201" +PUMA "LA, 02300" +PUMA "LA, 02301" +PUMA "LA, 02302" +PUMA "LA, 02400" +PUMA "LA, 02401" +PUMA "LA, 02402" +PUMA "LA, 02500" +PUMA "MA, 00100" +PUMA "MA, 00200" +PUMA "MA, 00300" +PUMA "MA, 00301" +PUMA "MA, 00302" +PUMA "MA, 00303" +PUMA "MA, 00304" +PUMA "MA, 00400" +PUMA "MA, 00501" +PUMA "MA, 00502" +PUMA "MA, 00503" +PUMA "MA, 00504" +PUMA "MA, 00505" +PUMA "MA, 00506" +PUMA "MA, 00507" +PUMA "MA, 00508" +PUMA "MA, 00701" +PUMA "MA, 00702" +PUMA "MA, 00703" +PUMA "MA, 00704" +PUMA "MA, 01000" +PUMA "MA, 01300" +PUMA "MA, 01400" +PUMA "MA, 01600" +PUMA "MA, 01900" +PUMA "MA, 01901" +PUMA "MA, 01902" +PUMA "MA, 02400" +PUMA "MA, 02800" +PUMA "MA, 03301" +PUMA "MA, 03302" +PUMA "MA, 03303" +PUMA "MA, 03304" +PUMA "MA, 03305" +PUMA "MA, 03306" +PUMA "MA, 03400" +PUMA "MA, 03500" +PUMA "MA, 03601" +PUMA "MA, 03602" +PUMA "MA, 03603" +PUMA "MA, 03900" +PUMA "MA, 04000" +PUMA "MA, 04200" +PUMA "MA, 04301" +PUMA "MA, 04302" +PUMA "MA, 04303" +PUMA "MA, 04500" +PUMA "MA, 04700" +PUMA "MA, 04800" +PUMA "MA, 04901" +PUMA "MA, 04902" +PUMA "MA, 04903" +PUMA "MD, 00100" +PUMA "MD, 00200" +PUMA "MD, 00301" +PUMA "MD, 00302" +PUMA "MD, 00400" +PUMA "MD, 00501" +PUMA "MD, 00502" +PUMA "MD, 00503" +PUMA "MD, 00504" +PUMA "MD, 00505" +PUMA "MD, 00506" +PUMA "MD, 00507" +PUMA "MD, 00601" +PUMA "MD, 00602" +PUMA "MD, 00700" +PUMA "MD, 00801" +PUMA "MD, 00802" +PUMA "MD, 00803" +PUMA "MD, 00804" +PUMA "MD, 00805" +PUMA "MD, 00901" +PUMA "MD, 00902" +PUMA "MD, 01001" +PUMA "MD, 01002" +PUMA "MD, 01003" +PUMA "MD, 01004" +PUMA "MD, 01005" +PUMA "MD, 01006" +PUMA "MD, 01007" +PUMA "MD, 01101" +PUMA "MD, 01102" +PUMA "MD, 01103" +PUMA "MD, 01104" +PUMA "MD, 01105" +PUMA "MD, 01106" +PUMA "MD, 01107" +PUMA "MD, 01201" +PUMA "MD, 01202" +PUMA "MD, 01203" +PUMA "MD, 01204" +PUMA "MD, 01300" +PUMA "MD, 01400" +PUMA "MD, 01500" +PUMA "MD, 01600" +PUMA "ME, 00100" +PUMA "ME, 00200" +PUMA "ME, 00300" +PUMA "ME, 00400" +PUMA "ME, 00500" +PUMA "ME, 00600" +PUMA "ME, 00700" +PUMA "ME, 00800" +PUMA "ME, 00900" +PUMA "ME, 01000" +PUMA "MI, 00100" +PUMA "MI, 00200" +PUMA "MI, 00300" +PUMA "MI, 00400" +PUMA "MI, 00500" +PUMA "MI, 00600" +PUMA "MI, 00700" +PUMA "MI, 00801" +PUMA "MI, 00802" +PUMA "MI, 00900" +PUMA "MI, 01001" +PUMA "MI, 01002" +PUMA "MI, 01003" +PUMA "MI, 01004" +PUMA "MI, 01100" +PUMA "MI, 01200" +PUMA "MI, 01300" +PUMA "MI, 01400" +PUMA "MI, 01500" +PUMA "MI, 01600" +PUMA "MI, 01701" +PUMA "MI, 01702" +PUMA "MI, 01703" +PUMA "MI, 01704" +PUMA "MI, 01801" +PUMA "MI, 01802" +PUMA "MI, 01900" +PUMA "MI, 02000" +PUMA "MI, 02101" +PUMA "MI, 02102" +PUMA "MI, 02200" +PUMA "MI, 02300" +PUMA "MI, 02400" +PUMA "MI, 02500" +PUMA "MI, 02600" +PUMA "MI, 02701" +PUMA "MI, 02702" +PUMA "MI, 02703" +PUMA "MI, 02800" +PUMA "MI, 02901" +PUMA "MI, 02902" +PUMA "MI, 02903" +PUMA "MI, 02904" +PUMA "MI, 02905" +PUMA "MI, 02906" +PUMA "MI, 02907" +PUMA "MI, 02908" +PUMA "MI, 03001" +PUMA "MI, 03002" +PUMA "MI, 03003" +PUMA "MI, 03004" +PUMA "MI, 03005" +PUMA "MI, 03006" +PUMA "MI, 03100" +PUMA "MI, 03201" +PUMA "MI, 03202" +PUMA "MI, 03203" +PUMA "MI, 03204" +PUMA "MI, 03205" +PUMA "MI, 03206" +PUMA "MI, 03207" +PUMA "MI, 03208" +PUMA "MI, 03209" +PUMA "MI, 03210" +PUMA "MI, 03211" +PUMA "MI, 03212" +PUMA "MI, 03213" +PUMA "MI, 03300" +PUMA "MN, 00100" +PUMA "MN, 00200" +PUMA "MN, 00300" +PUMA "MN, 00400" +PUMA "MN, 00500" +PUMA "MN, 00600" +PUMA "MN, 00700" +PUMA "MN, 00800" +PUMA "MN, 00900" +PUMA "MN, 01000" +PUMA "MN, 01101" +PUMA "MN, 01102" +PUMA "MN, 01103" +PUMA "MN, 01201" +PUMA "MN, 01202" +PUMA "MN, 01301" +PUMA "MN, 01302" +PUMA "MN, 01303" +PUMA "MN, 01304" +PUMA "MN, 01401" +PUMA "MN, 01402" +PUMA "MN, 01403" +PUMA "MN, 01404" +PUMA "MN, 01405" +PUMA "MN, 01406" +PUMA "MN, 01407" +PUMA "MN, 01408" +PUMA "MN, 01409" +PUMA "MN, 01410" +PUMA "MN, 01501" +PUMA "MN, 01502" +PUMA "MN, 01503" +PUMA "MN, 01600" +PUMA "MN, 01700" +PUMA "MN, 01800" +PUMA "MN, 01900" +PUMA "MN, 02000" +PUMA "MN, 02100" +PUMA "MN, 02200" +PUMA "MN, 02300" +PUMA "MN, 02400" +PUMA "MN, 02500" +PUMA "MN, 02600" +PUMA "MO, 00100" +PUMA "MO, 00200" +PUMA "MO, 00300" +PUMA "MO, 00400" +PUMA "MO, 00500" +PUMA "MO, 00600" +PUMA "MO, 00700" +PUMA "MO, 00800" +PUMA "MO, 00901" +PUMA "MO, 00902" +PUMA "MO, 00903" +PUMA "MO, 01001" +PUMA "MO, 01002" +PUMA "MO, 01003" +PUMA "MO, 01004" +PUMA "MO, 01005" +PUMA "MO, 01100" +PUMA "MO, 01200" +PUMA "MO, 01300" +PUMA "MO, 01400" +PUMA "MO, 01500" +PUMA "MO, 01600" +PUMA "MO, 01701" +PUMA "MO, 01702" +PUMA "MO, 01703" +PUMA "MO, 01801" +PUMA "MO, 01802" +PUMA "MO, 01803" +PUMA "MO, 01804" +PUMA "MO, 01805" +PUMA "MO, 01806" +PUMA "MO, 01807" +PUMA "MO, 01808" +PUMA "MO, 01901" +PUMA "MO, 01902" +PUMA "MO, 02001" +PUMA "MO, 02002" +PUMA "MO, 02100" +PUMA "MO, 02200" +PUMA "MO, 02300" +PUMA "MO, 02400" +PUMA "MO, 02500" +PUMA "MO, 02601" +PUMA "MO, 02602" +PUMA "MO, 02603" +PUMA "MO, 02700" +PUMA "MO, 02800" +PUMA "MS, 00100" +PUMA "MS, 00200" +PUMA "MS, 00300" +PUMA "MS, 00400" +PUMA "MS, 00500" +PUMA "MS, 00600" +PUMA "MS, 00700" +PUMA "MS, 00800" +PUMA "MS, 00900" +PUMA "MS, 01000" +PUMA "MS, 01100" +PUMA "MS, 01200" +PUMA "MS, 01300" +PUMA "MS, 01400" +PUMA "MS, 01500" +PUMA "MS, 01600" +PUMA "MS, 01700" +PUMA "MS, 01800" +PUMA "MS, 01900" +PUMA "MS, 02000" +PUMA "MS, 02100" +PUMA "MT, 00100" +PUMA "MT, 00200" +PUMA "MT, 00300" +PUMA "MT, 00400" +PUMA "MT, 00500" +PUMA "MT, 00600" +PUMA "MT, 00700" +PUMA "NC, 00100" +PUMA "NC, 00200" +PUMA "NC, 00300" +PUMA "NC, 00400" +PUMA "NC, 00500" +PUMA "NC, 00600" +PUMA "NC, 00700" +PUMA "NC, 00800" +PUMA "NC, 00900" +PUMA "NC, 01000" +PUMA "NC, 01100" +PUMA "NC, 01201" +PUMA "NC, 01202" +PUMA "NC, 01203" +PUMA "NC, 01204" +PUMA "NC, 01205" +PUMA "NC, 01206" +PUMA "NC, 01207" +PUMA "NC, 01208" +PUMA "NC, 01301" +PUMA "NC, 01302" +PUMA "NC, 01400" +PUMA "NC, 01500" +PUMA "NC, 01600" +PUMA "NC, 01701" +PUMA "NC, 01702" +PUMA "NC, 01703" +PUMA "NC, 01704" +PUMA "NC, 01801" +PUMA "NC, 01802" +PUMA "NC, 01803" +PUMA "NC, 01900" +PUMA "NC, 02000" +PUMA "NC, 02100" +PUMA "NC, 02201" +PUMA "NC, 02202" +PUMA "NC, 02300" +PUMA "NC, 02400" +PUMA "NC, 02500" +PUMA "NC, 02600" +PUMA "NC, 02700" +PUMA "NC, 02800" +PUMA "NC, 02900" +PUMA "NC, 03001" +PUMA "NC, 03002" +PUMA "NC, 03101" +PUMA "NC, 03102" +PUMA "NC, 03103" +PUMA "NC, 03104" +PUMA "NC, 03105" +PUMA "NC, 03106" +PUMA "NC, 03107" +PUMA "NC, 03108" +PUMA "NC, 03200" +PUMA "NC, 03300" +PUMA "NC, 03400" +PUMA "NC, 03500" +PUMA "NC, 03600" +PUMA "NC, 03700" +PUMA "NC, 03800" +PUMA "NC, 03900" +PUMA "NC, 04000" +PUMA "NC, 04100" +PUMA "NC, 04200" +PUMA "NC, 04300" +PUMA "NC, 04400" +PUMA "NC, 04500" +PUMA "NC, 04600" +PUMA "NC, 04700" +PUMA "NC, 04800" +PUMA "NC, 04900" +PUMA "NC, 05001" +PUMA "NC, 05002" +PUMA "NC, 05003" +PUMA "NC, 05100" +PUMA "NC, 05200" +PUMA "NC, 05300" +PUMA "NC, 05400" +PUMA "ND, 00100" +PUMA "ND, 00200" +PUMA "ND, 00300" +PUMA "ND, 00400" +PUMA "ND, 00500" +PUMA "NE, 00100" +PUMA "NE, 00200" +PUMA "NE, 00300" +PUMA "NE, 00400" +PUMA "NE, 00500" +PUMA "NE, 00600" +PUMA "NE, 00701" +PUMA "NE, 00702" +PUMA "NE, 00801" +PUMA "NE, 00802" +PUMA "NE, 00901" +PUMA "NE, 00902" +PUMA "NE, 00903" +PUMA "NE, 00904" +PUMA "NH, 00100" +PUMA "NH, 00200" +PUMA "NH, 00300" +PUMA "NH, 00400" +PUMA "NH, 00500" +PUMA "NH, 00600" +PUMA "NH, 00700" +PUMA "NH, 00800" +PUMA "NH, 00900" +PUMA "NH, 01000" +PUMA "NJ, 00101" +PUMA "NJ, 00102" +PUMA "NJ, 00301" +PUMA "NJ, 00302" +PUMA "NJ, 00303" +PUMA "NJ, 00304" +PUMA "NJ, 00305" +PUMA "NJ, 00306" +PUMA "NJ, 00307" +PUMA "NJ, 00308" +PUMA "NJ, 00400" +PUMA "NJ, 00501" +PUMA "NJ, 00502" +PUMA "NJ, 00503" +PUMA "NJ, 00601" +PUMA "NJ, 00602" +PUMA "NJ, 00701" +PUMA "NJ, 00702" +PUMA "NJ, 00703" +PUMA "NJ, 00800" +PUMA "NJ, 00901" +PUMA "NJ, 00902" +PUMA "NJ, 00903" +PUMA "NJ, 00904" +PUMA "NJ, 00905" +PUMA "NJ, 00906" +PUMA "NJ, 00907" +PUMA "NJ, 01001" +PUMA "NJ, 01002" +PUMA "NJ, 01003" +PUMA "NJ, 01101" +PUMA "NJ, 01102" +PUMA "NJ, 01103" +PUMA "NJ, 01104" +PUMA "NJ, 01105" +PUMA "NJ, 01106" +PUMA "NJ, 01201" +PUMA "NJ, 01202" +PUMA "NJ, 01203" +PUMA "NJ, 01204" +PUMA "NJ, 01205" +PUMA "NJ, 01301" +PUMA "NJ, 01302" +PUMA "NJ, 01401" +PUMA "NJ, 01402" +PUMA "NJ, 01403" +PUMA "NJ, 01404" +PUMA "NJ, 01501" +PUMA "NJ, 01502" +PUMA "NJ, 01503" +PUMA "NJ, 01504" +PUMA "NJ, 01600" +PUMA "NJ, 01700" +PUMA "NJ, 01800" +PUMA "NJ, 01901" +PUMA "NJ, 01902" +PUMA "NJ, 01903" +PUMA "NJ, 01904" +PUMA "NJ, 02001" +PUMA "NJ, 02002" +PUMA "NJ, 02003" +PUMA "NJ, 02101" +PUMA "NJ, 02102" +PUMA "NJ, 02103" +PUMA "NJ, 02104" +PUMA "NJ, 02201" +PUMA "NJ, 02202" +PUMA "NJ, 02301" +PUMA "NJ, 02302" +PUMA "NJ, 02303" +PUMA "NJ, 02400" +PUMA "NJ, 02500" +PUMA "NJ, 02600" +PUMA "NM, 00100" +PUMA "NM, 00200" +PUMA "NM, 00300" +PUMA "NM, 00400" +PUMA "NM, 00500" +PUMA "NM, 00600" +PUMA "NM, 00700" +PUMA "NM, 00801" +PUMA "NM, 00802" +PUMA "NM, 00803" +PUMA "NM, 00804" +PUMA "NM, 00805" +PUMA "NM, 00806" +PUMA "NM, 00900" +PUMA "NM, 01001" +PUMA "NM, 01002" +PUMA "NM, 01100" +PUMA "NM, 01200" +PUMA "NV, 00101" +PUMA "NV, 00102" +PUMA "NV, 00103" +PUMA "NV, 00200" +PUMA "NV, 00300" +PUMA "NV, 00401" +PUMA "NV, 00402" +PUMA "NV, 00403" +PUMA "NV, 00404" +PUMA "NV, 00405" +PUMA "NV, 00406" +PUMA "NV, 00407" +PUMA "NV, 00408" +PUMA "NV, 00409" +PUMA "NV, 00410" +PUMA "NV, 00411" +PUMA "NV, 00412" +PUMA "NV, 00413" +PUMA "NY, 00100" +PUMA "NY, 00200" +PUMA "NY, 00300" +PUMA "NY, 00401" +PUMA "NY, 00402" +PUMA "NY, 00403" +PUMA "NY, 00500" +PUMA "NY, 00600" +PUMA "NY, 00701" +PUMA "NY, 00702" +PUMA "NY, 00703" +PUMA "NY, 00704" +PUMA "NY, 00800" +PUMA "NY, 00901" +PUMA "NY, 00902" +PUMA "NY, 00903" +PUMA "NY, 00904" +PUMA "NY, 00905" +PUMA "NY, 00906" +PUMA "NY, 01000" +PUMA "NY, 01101" +PUMA "NY, 01102" +PUMA "NY, 01201" +PUMA "NY, 01202" +PUMA "NY, 01203" +PUMA "NY, 01204" +PUMA "NY, 01205" +PUMA "NY, 01206" +PUMA "NY, 01207" +PUMA "NY, 01300" +PUMA "NY, 01400" +PUMA "NY, 01500" +PUMA "NY, 01600" +PUMA "NY, 01700" +PUMA "NY, 01801" +PUMA "NY, 01802" +PUMA "NY, 01900" +PUMA "NY, 02001" +PUMA "NY, 02002" +PUMA "NY, 02100" +PUMA "NY, 02201" +PUMA "NY, 02202" +PUMA "NY, 02203" +PUMA "NY, 02300" +PUMA "NY, 02401" +PUMA "NY, 02402" +PUMA "NY, 02500" +PUMA "NY, 02600" +PUMA "NY, 02701" +PUMA "NY, 02702" +PUMA "NY, 02801" +PUMA "NY, 02802" +PUMA "NY, 02901" +PUMA "NY, 02902" +PUMA "NY, 02903" +PUMA "NY, 03001" +PUMA "NY, 03002" +PUMA "NY, 03003" +PUMA "NY, 03101" +PUMA "NY, 03102" +PUMA "NY, 03103" +PUMA "NY, 03104" +PUMA "NY, 03105" +PUMA "NY, 03106" +PUMA "NY, 03107" +PUMA "NY, 03201" +PUMA "NY, 03202" +PUMA "NY, 03203" +PUMA "NY, 03204" +PUMA "NY, 03205" +PUMA "NY, 03206" +PUMA "NY, 03207" +PUMA "NY, 03208" +PUMA "NY, 03209" +PUMA "NY, 03210" +PUMA "NY, 03211" +PUMA "NY, 03212" +PUMA "NY, 03301" +PUMA "NY, 03302" +PUMA "NY, 03303" +PUMA "NY, 03304" +PUMA "NY, 03305" +PUMA "NY, 03306" +PUMA "NY, 03307" +PUMA "NY, 03308" +PUMA "NY, 03309" +PUMA "NY, 03310" +PUMA "NY, 03311" +PUMA "NY, 03312" +PUMA "NY, 03313" +PUMA "NY, 03701" +PUMA "NY, 03702" +PUMA "NY, 03703" +PUMA "NY, 03704" +PUMA "NY, 03705" +PUMA "NY, 03706" +PUMA "NY, 03707" +PUMA "NY, 03708" +PUMA "NY, 03709" +PUMA "NY, 03710" +PUMA "NY, 03801" +PUMA "NY, 03802" +PUMA "NY, 03803" +PUMA "NY, 03804" +PUMA "NY, 03805" +PUMA "NY, 03806" +PUMA "NY, 03807" +PUMA "NY, 03808" +PUMA "NY, 03809" +PUMA "NY, 03810" +PUMA "NY, 03901" +PUMA "NY, 03902" +PUMA "NY, 03903" +PUMA "NY, 04001" +PUMA "NY, 04002" +PUMA "NY, 04003" +PUMA "NY, 04004" +PUMA "NY, 04005" +PUMA "NY, 04006" +PUMA "NY, 04007" +PUMA "NY, 04008" +PUMA "NY, 04009" +PUMA "NY, 04010" +PUMA "NY, 04011" +PUMA "NY, 04012" +PUMA "NY, 04013" +PUMA "NY, 04014" +PUMA "NY, 04015" +PUMA "NY, 04016" +PUMA "NY, 04017" +PUMA "NY, 04018" +PUMA "NY, 04101" +PUMA "NY, 04102" +PUMA "NY, 04103" +PUMA "NY, 04104" +PUMA "NY, 04105" +PUMA "NY, 04106" +PUMA "NY, 04107" +PUMA "NY, 04108" +PUMA "NY, 04109" +PUMA "NY, 04110" +PUMA "NY, 04111" +PUMA "NY, 04112" +PUMA "NY, 04113" +PUMA "NY, 04114" +PUMA "OH, 00100" +PUMA "OH, 00200" +PUMA "OH, 00300" +PUMA "OH, 00400" +PUMA "OH, 00500" +PUMA "OH, 00600" +PUMA "OH, 00700" +PUMA "OH, 00801" +PUMA "OH, 00802" +PUMA "OH, 00901" +PUMA "OH, 00902" +PUMA "OH, 00903" +PUMA "OH, 00904" +PUMA "OH, 00905" +PUMA "OH, 00906" +PUMA "OH, 00907" +PUMA "OH, 00908" +PUMA "OH, 00909" +PUMA "OH, 00910" +PUMA "OH, 01000" +PUMA "OH, 01100" +PUMA "OH, 01200" +PUMA "OH, 01300" +PUMA "OH, 01400" +PUMA "OH, 01500" +PUMA "OH, 01600" +PUMA "OH, 01700" +PUMA "OH, 01801" +PUMA "OH, 01802" +PUMA "OH, 01803" +PUMA "OH, 01804" +PUMA "OH, 01805" +PUMA "OH, 01900" +PUMA "OH, 02000" +PUMA "OH, 02100" +PUMA "OH, 02200" +PUMA "OH, 02300" +PUMA "OH, 02400" +PUMA "OH, 02500" +PUMA "OH, 02600" +PUMA "OH, 02700" +PUMA "OH, 02800" +PUMA "OH, 02900" +PUMA "OH, 03000" +PUMA "OH, 03100" +PUMA "OH, 03200" +PUMA "OH, 03300" +PUMA "OH, 03400" +PUMA "OH, 03500" +PUMA "OH, 03600" +PUMA "OH, 03700" +PUMA "OH, 03800" +PUMA "OH, 03900" +PUMA "OH, 04000" +PUMA "OH, 04101" +PUMA "OH, 04102" +PUMA "OH, 04103" +PUMA "OH, 04104" +PUMA "OH, 04105" +PUMA "OH, 04106" +PUMA "OH, 04107" +PUMA "OH, 04108" +PUMA "OH, 04109" +PUMA "OH, 04110" +PUMA "OH, 04111" +PUMA "OH, 04200" +PUMA "OH, 04300" +PUMA "OH, 04400" +PUMA "OH, 04500" +PUMA "OH, 04601" +PUMA "OH, 04602" +PUMA "OH, 04603" +PUMA "OH, 04604" +PUMA "OH, 04700" +PUMA "OH, 04800" +PUMA "OH, 04900" +PUMA "OH, 05000" +PUMA "OH, 05100" +PUMA "OH, 05200" +PUMA "OH, 05301" +PUMA "OH, 05302" +PUMA "OH, 05401" +PUMA "OH, 05402" +PUMA "OH, 05403" +PUMA "OH, 05501" +PUMA "OH, 05502" +PUMA "OH, 05503" +PUMA "OH, 05504" +PUMA "OH, 05505" +PUMA "OH, 05506" +PUMA "OH, 05507" +PUMA "OH, 05600" +PUMA "OH, 05700" +PUMA "OK, 00100" +PUMA "OK, 00200" +PUMA "OK, 00300" +PUMA "OK, 00400" +PUMA "OK, 00500" +PUMA "OK, 00601" +PUMA "OK, 00602" +PUMA "OK, 00701" +PUMA "OK, 00702" +PUMA "OK, 00800" +PUMA "OK, 00900" +PUMA "OK, 01001" +PUMA "OK, 01002" +PUMA "OK, 01003" +PUMA "OK, 01004" +PUMA "OK, 01005" +PUMA "OK, 01006" +PUMA "OK, 01101" +PUMA "OK, 01102" +PUMA "OK, 01201" +PUMA "OK, 01202" +PUMA "OK, 01203" +PUMA "OK, 01204" +PUMA "OK, 01301" +PUMA "OK, 01302" +PUMA "OK, 01400" +PUMA "OK, 01501" +PUMA "OK, 01601" +PUMA "OR, 00100" +PUMA "OR, 00200" +PUMA "OR, 00300" +PUMA "OR, 00400" +PUMA "OR, 00500" +PUMA "OR, 00600" +PUMA "OR, 00703" +PUMA "OR, 00704" +PUMA "OR, 00705" +PUMA "OR, 00800" +PUMA "OR, 00901" +PUMA "OR, 00902" +PUMA "OR, 01000" +PUMA "OR, 01103" +PUMA "OR, 01104" +PUMA "OR, 01105" +PUMA "OR, 01200" +PUMA "OR, 01301" +PUMA "OR, 01302" +PUMA "OR, 01303" +PUMA "OR, 01305" +PUMA "OR, 01314" +PUMA "OR, 01316" +PUMA "OR, 01317" +PUMA "OR, 01318" +PUMA "OR, 01319" +PUMA "OR, 01320" +PUMA "OR, 01321" +PUMA "OR, 01322" +PUMA "OR, 01323" +PUMA "OR, 01324" +PUMA "PA, 00101" +PUMA "PA, 00102" +PUMA "PA, 00200" +PUMA "PA, 00300" +PUMA "PA, 00400" +PUMA "PA, 00500" +PUMA "PA, 00600" +PUMA "PA, 00701" +PUMA "PA, 00702" +PUMA "PA, 00801" +PUMA "PA, 00802" +PUMA "PA, 00803" +PUMA "PA, 00900" +PUMA "PA, 01000" +PUMA "PA, 01100" +PUMA "PA, 01200" +PUMA "PA, 01300" +PUMA "PA, 01400" +PUMA "PA, 01501" +PUMA "PA, 01502" +PUMA "PA, 01600" +PUMA "PA, 01701" +PUMA "PA, 01702" +PUMA "PA, 01801" +PUMA "PA, 01802" +PUMA "PA, 01803" +PUMA "PA, 01804" +PUMA "PA, 01805" +PUMA "PA, 01806" +PUMA "PA, 01807" +PUMA "PA, 01900" +PUMA "PA, 02001" +PUMA "PA, 02002" +PUMA "PA, 02003" +PUMA "PA, 02100" +PUMA "PA, 02200" +PUMA "PA, 02301" +PUMA "PA, 02302" +PUMA "PA, 02401" +PUMA "PA, 02402" +PUMA "PA, 02500" +PUMA "PA, 02600" +PUMA "PA, 02701" +PUMA "PA, 02702" +PUMA "PA, 02703" +PUMA "PA, 02801" +PUMA "PA, 02802" +PUMA "PA, 02803" +PUMA "PA, 02901" +PUMA "PA, 02902" +PUMA "PA, 03001" +PUMA "PA, 03002" +PUMA "PA, 03003" +PUMA "PA, 03004" +PUMA "PA, 03101" +PUMA "PA, 03102" +PUMA "PA, 03103" +PUMA "PA, 03104" +PUMA "PA, 03105" +PUMA "PA, 03106" +PUMA "PA, 03201" +PUMA "PA, 03202" +PUMA "PA, 03203" +PUMA "PA, 03204" +PUMA "PA, 03205" +PUMA "PA, 03206" +PUMA "PA, 03207" +PUMA "PA, 03208" +PUMA "PA, 03209" +PUMA "PA, 03210" +PUMA "PA, 03211" +PUMA "PA, 03301" +PUMA "PA, 03302" +PUMA "PA, 03303" +PUMA "PA, 03304" +PUMA "PA, 03401" +PUMA "PA, 03402" +PUMA "PA, 03403" +PUMA "PA, 03404" +PUMA "PA, 03501" +PUMA "PA, 03502" +PUMA "PA, 03503" +PUMA "PA, 03504" +PUMA "PA, 03601" +PUMA "PA, 03602" +PUMA "PA, 03603" +PUMA "PA, 03701" +PUMA "PA, 03702" +PUMA "PA, 03800" +PUMA "PA, 03900" +PUMA "PA, 04001" +PUMA "PA, 04002" +PUMA "RI, 00101" +PUMA "RI, 00102" +PUMA "RI, 00103" +PUMA "RI, 00104" +PUMA "RI, 00201" +PUMA "RI, 00300" +PUMA "RI, 00400" +PUMA "SC, 00101" +PUMA "SC, 00102" +PUMA "SC, 00103" +PUMA "SC, 00104" +PUMA "SC, 00105" +PUMA "SC, 00200" +PUMA "SC, 00301" +PUMA "SC, 00302" +PUMA "SC, 00400" +PUMA "SC, 00501" +PUMA "SC, 00502" +PUMA "SC, 00601" +PUMA "SC, 00602" +PUMA "SC, 00603" +PUMA "SC, 00604" +PUMA "SC, 00605" +PUMA "SC, 00700" +PUMA "SC, 00800" +PUMA "SC, 00900" +PUMA "SC, 01000" +PUMA "SC, 01101" +PUMA "SC, 01102" +PUMA "SC, 01201" +PUMA "SC, 01202" +PUMA "SC, 01203" +PUMA "SC, 01204" +PUMA "SC, 01300" +PUMA "SC, 01400" +PUMA "SC, 01500" +PUMA "SC, 01600" +PUMA "SD, 00100" +PUMA "SD, 00200" +PUMA "SD, 00300" +PUMA "SD, 00400" +PUMA "SD, 00500" +PUMA "SD, 00600" +PUMA "TN, 00100" +PUMA "TN, 00200" +PUMA "TN, 00300" +PUMA "TN, 00400" +PUMA "TN, 00500" +PUMA "TN, 00600" +PUMA "TN, 00700" +PUMA "TN, 00800" +PUMA "TN, 00900" +PUMA "TN, 01000" +PUMA "TN, 01100" +PUMA "TN, 01200" +PUMA "TN, 01300" +PUMA "TN, 01400" +PUMA "TN, 01500" +PUMA "TN, 01601" +PUMA "TN, 01602" +PUMA "TN, 01603" +PUMA "TN, 01604" +PUMA "TN, 01700" +PUMA "TN, 01800" +PUMA "TN, 01900" +PUMA "TN, 02001" +PUMA "TN, 02002" +PUMA "TN, 02003" +PUMA "TN, 02100" +PUMA "TN, 02200" +PUMA "TN, 02300" +PUMA "TN, 02401" +PUMA "TN, 02402" +PUMA "TN, 02501" +PUMA "TN, 02502" +PUMA "TN, 02503" +PUMA "TN, 02504" +PUMA "TN, 02505" +PUMA "TN, 02600" +PUMA "TN, 02700" +PUMA "TN, 02800" +PUMA "TN, 02900" +PUMA "TN, 03000" +PUMA "TN, 03100" +PUMA "TN, 03201" +PUMA "TN, 03202" +PUMA "TN, 03203" +PUMA "TN, 03204" +PUMA "TN, 03205" +PUMA "TN, 03206" +PUMA "TN, 03207" +PUMA "TN, 03208" +PUMA "TX, 00100" +PUMA "TX, 00200" +PUMA "TX, 00300" +PUMA "TX, 00400" +PUMA "TX, 00501" +PUMA "TX, 00502" +PUMA "TX, 00600" +PUMA "TX, 00700" +PUMA "TX, 00800" +PUMA "TX, 00900" +PUMA "TX, 01000" +PUMA "TX, 01100" +PUMA "TX, 01200" +PUMA "TX, 01300" +PUMA "TX, 01400" +PUMA "TX, 01501" +PUMA "TX, 01502" +PUMA "TX, 01600" +PUMA "TX, 01700" +PUMA "TX, 01800" +PUMA "TX, 01901" +PUMA "TX, 01902" +PUMA "TX, 01903" +PUMA "TX, 01904" +PUMA "TX, 01905" +PUMA "TX, 01906" +PUMA "TX, 01907" +PUMA "TX, 02001" +PUMA "TX, 02002" +PUMA "TX, 02003" +PUMA "TX, 02004" +PUMA "TX, 02005" +PUMA "TX, 02006" +PUMA "TX, 02101" +PUMA "TX, 02102" +PUMA "TX, 02200" +PUMA "TX, 02301" +PUMA "TX, 02302" +PUMA "TX, 02303" +PUMA "TX, 02304" +PUMA "TX, 02305" +PUMA "TX, 02306" +PUMA "TX, 02307" +PUMA "TX, 02308" +PUMA "TX, 02309" +PUMA "TX, 02310" +PUMA "TX, 02311" +PUMA "TX, 02312" +PUMA "TX, 02313" +PUMA "TX, 02314" +PUMA "TX, 02315" +PUMA "TX, 02316" +PUMA "TX, 02317" +PUMA "TX, 02318" +PUMA "TX, 02319" +PUMA "TX, 02320" +PUMA "TX, 02321" +PUMA "TX, 02322" +PUMA "TX, 02400" +PUMA "TX, 02501" +PUMA "TX, 02502" +PUMA "TX, 02503" +PUMA "TX, 02504" +PUMA "TX, 02505" +PUMA "TX, 02506" +PUMA "TX, 02507" +PUMA "TX, 02508" +PUMA "TX, 02509" +PUMA "TX, 02510" +PUMA "TX, 02511" +PUMA "TX, 02512" +PUMA "TX, 02513" +PUMA "TX, 02514" +PUMA "TX, 02515" +PUMA "TX, 02516" +PUMA "TX, 02600" +PUMA "TX, 02700" +PUMA "TX, 02800" +PUMA "TX, 02900" +PUMA "TX, 03000" +PUMA "TX, 03100" +PUMA "TX, 03200" +PUMA "TX, 03301" +PUMA "TX, 03302" +PUMA "TX, 03303" +PUMA "TX, 03304" +PUMA "TX, 03305" +PUMA "TX, 03306" +PUMA "TX, 03400" +PUMA "TX, 03501" +PUMA "TX, 03502" +PUMA "TX, 03601" +PUMA "TX, 03602" +PUMA "TX, 03700" +PUMA "TX, 03801" +PUMA "TX, 03802" +PUMA "TX, 03900" +PUMA "TX, 04000" +PUMA "TX, 04100" +PUMA "TX, 04200" +PUMA "TX, 04301" +PUMA "TX, 04302" +PUMA "TX, 04400" +PUMA "TX, 04501" +PUMA "TX, 04502" +PUMA "TX, 04503" +PUMA "TX, 04504" +PUMA "TX, 04601" +PUMA "TX, 04602" +PUMA "TX, 04603" +PUMA "TX, 04604" +PUMA "TX, 04605" +PUMA "TX, 04606" +PUMA "TX, 04607" +PUMA "TX, 04608" +PUMA "TX, 04609" +PUMA "TX, 04610" +PUMA "TX, 04611" +PUMA "TX, 04612" +PUMA "TX, 04613" +PUMA "TX, 04614" +PUMA "TX, 04615" +PUMA "TX, 04616" +PUMA "TX, 04617" +PUMA "TX, 04618" +PUMA "TX, 04619" +PUMA "TX, 04620" +PUMA "TX, 04621" +PUMA "TX, 04622" +PUMA "TX, 04623" +PUMA "TX, 04624" +PUMA "TX, 04625" +PUMA "TX, 04626" +PUMA "TX, 04627" +PUMA "TX, 04628" +PUMA "TX, 04629" +PUMA "TX, 04630" +PUMA "TX, 04631" +PUMA "TX, 04632" +PUMA "TX, 04633" +PUMA "TX, 04634" +PUMA "TX, 04635" +PUMA "TX, 04636" +PUMA "TX, 04637" +PUMA "TX, 04638" +PUMA "TX, 04701" +PUMA "TX, 04702" +PUMA "TX, 04801" +PUMA "TX, 04802" +PUMA "TX, 04803" +PUMA "TX, 04901" +PUMA "TX, 04902" +PUMA "TX, 04903" +PUMA "TX, 04904" +PUMA "TX, 04905" +PUMA "TX, 05000" +PUMA "TX, 05100" +PUMA "TX, 05201" +PUMA "TX, 05202" +PUMA "TX, 05203" +PUMA "TX, 05204" +PUMA "TX, 05301" +PUMA "TX, 05302" +PUMA "TX, 05303" +PUMA "TX, 05304" +PUMA "TX, 05305" +PUMA "TX, 05306" +PUMA "TX, 05307" +PUMA "TX, 05308" +PUMA "TX, 05309" +PUMA "TX, 05400" +PUMA "TX, 05500" +PUMA "TX, 05600" +PUMA "TX, 05700" +PUMA "TX, 05800" +PUMA "TX, 05901" +PUMA "TX, 05902" +PUMA "TX, 05903" +PUMA "TX, 05904" +PUMA "TX, 05905" +PUMA "TX, 05906" +PUMA "TX, 05907" +PUMA "TX, 05908" +PUMA "TX, 05909" +PUMA "TX, 05910" +PUMA "TX, 05911" +PUMA "TX, 05912" +PUMA "TX, 05913" +PUMA "TX, 05914" +PUMA "TX, 05915" +PUMA "TX, 05916" +PUMA "TX, 06000" +PUMA "TX, 06100" +PUMA "TX, 06200" +PUMA "TX, 06301" +PUMA "TX, 06302" +PUMA "TX, 06400" +PUMA "TX, 06500" +PUMA "TX, 06601" +PUMA "TX, 06602" +PUMA "TX, 06603" +PUMA "TX, 06701" +PUMA "TX, 06702" +PUMA "TX, 06703" +PUMA "TX, 06801" +PUMA "TX, 06802" +PUMA "TX, 06803" +PUMA "TX, 06804" +PUMA "TX, 06805" +PUMA "TX, 06806" +PUMA "TX, 06807" +PUMA "TX, 06900" +PUMA "UT, 03001" +PUMA "UT, 05001" +PUMA "UT, 11001" +PUMA "UT, 11002" +PUMA "UT, 13001" +PUMA "UT, 21001" +PUMA "UT, 35001" +PUMA "UT, 35002" +PUMA "UT, 35003" +PUMA "UT, 35004" +PUMA "UT, 35005" +PUMA "UT, 35006" +PUMA "UT, 35007" +PUMA "UT, 35008" +PUMA "UT, 35009" +PUMA "UT, 49001" +PUMA "UT, 49002" +PUMA "UT, 49003" +PUMA "UT, 49004" +PUMA "UT, 53001" +PUMA "UT, 57001" +PUMA "UT, 57002" +PUMA "VA, 01301" +PUMA "VA, 01302" +PUMA "VA, 04101" +PUMA "VA, 04102" +PUMA "VA, 04103" +PUMA "VA, 10701" +PUMA "VA, 10702" +PUMA "VA, 10703" +PUMA "VA, 51010" +PUMA "VA, 51020" +PUMA "VA, 51040" +PUMA "VA, 51044" +PUMA "VA, 51045" +PUMA "VA, 51080" +PUMA "VA, 51084" +PUMA "VA, 51085" +PUMA "VA, 51087" +PUMA "VA, 51089" +PUMA "VA, 51090" +PUMA "VA, 51095" +PUMA "VA, 51096" +PUMA "VA, 51097" +PUMA "VA, 51105" +PUMA "VA, 51110" +PUMA "VA, 51115" +PUMA "VA, 51120" +PUMA "VA, 51125" +PUMA "VA, 51135" +PUMA "VA, 51145" +PUMA "VA, 51154" +PUMA "VA, 51155" +PUMA "VA, 51164" +PUMA "VA, 51165" +PUMA "VA, 51167" +PUMA "VA, 51175" +PUMA "VA, 51186" +PUMA "VA, 51206" +PUMA "VA, 51215" +PUMA "VA, 51224" +PUMA "VA, 51225" +PUMA "VA, 51235" +PUMA "VA, 51244" +PUMA "VA, 51245" +PUMA "VA, 51246" +PUMA "VA, 51255" +PUMA "VA, 55001" +PUMA "VA, 55002" +PUMA "VA, 59301" +PUMA "VA, 59302" +PUMA "VA, 59303" +PUMA "VA, 59304" +PUMA "VA, 59305" +PUMA "VA, 59306" +PUMA "VA, 59307" +PUMA "VA, 59308" +PUMA "VA, 59309" +PUMA "VT, 00100" +PUMA "VT, 00200" +PUMA "VT, 00300" +PUMA "VT, 00400" +PUMA "WA, 10100" +PUMA "WA, 10200" +PUMA "WA, 10300" +PUMA "WA, 10400" +PUMA "WA, 10501" +PUMA "WA, 10502" +PUMA "WA, 10503" +PUMA "WA, 10504" +PUMA "WA, 10600" +PUMA "WA, 10701" +PUMA "WA, 10702" +PUMA "WA, 10703" +PUMA "WA, 10800" +PUMA "WA, 10901" +PUMA "WA, 10902" +PUMA "WA, 11000" +PUMA "WA, 11101" +PUMA "WA, 11102" +PUMA "WA, 11103" +PUMA "WA, 11104" +PUMA "WA, 11200" +PUMA "WA, 11300" +PUMA "WA, 11401" +PUMA "WA, 11402" +PUMA "WA, 11501" +PUMA "WA, 11502" +PUMA "WA, 11503" +PUMA "WA, 11504" +PUMA "WA, 11505" +PUMA "WA, 11506" +PUMA "WA, 11507" +PUMA "WA, 11601" +PUMA "WA, 11602" +PUMA "WA, 11603" +PUMA "WA, 11604" +PUMA "WA, 11605" +PUMA "WA, 11606" +PUMA "WA, 11607" +PUMA "WA, 11608" +PUMA "WA, 11609" +PUMA "WA, 11610" +PUMA "WA, 11611" +PUMA "WA, 11612" +PUMA "WA, 11613" +PUMA "WA, 11614" +PUMA "WA, 11615" +PUMA "WA, 11616" +PUMA "WA, 11701" +PUMA "WA, 11702" +PUMA "WA, 11703" +PUMA "WA, 11704" +PUMA "WA, 11705" +PUMA "WA, 11706" +PUMA "WA, 11801" +PUMA "WA, 11802" +PUMA "WA, 11900" +PUMA "WI, 00100" +PUMA "WI, 00101" +PUMA "WI, 00102" +PUMA "WI, 00103" +PUMA "WI, 00200" +PUMA "WI, 00300" +PUMA "WI, 00600" +PUMA "WI, 00700" +PUMA "WI, 00800" +PUMA "WI, 00900" +PUMA "WI, 01000" +PUMA "WI, 01001" +PUMA "WI, 01300" +PUMA "WI, 01301" +PUMA "WI, 01400" +PUMA "WI, 01401" +PUMA "WI, 01500" +PUMA "WI, 01501" +PUMA "WI, 01600" +PUMA "WI, 01601" +PUMA "WI, 02400" +PUMA "WI, 02500" +PUMA "WI, 10000" +PUMA "WI, 20000" +PUMA "WI, 30000" +PUMA "WI, 40101" +PUMA "WI, 40301" +PUMA "WI, 40701" +PUMA "WI, 41001" +PUMA "WI, 41002" +PUMA "WI, 41003" +PUMA "WI, 41004" +PUMA "WI, 41005" +PUMA "WI, 50000" +PUMA "WI, 55101" +PUMA "WI, 55102" +PUMA "WI, 55103" +PUMA "WI, 70101" +PUMA "WI, 70201" +PUMA "WI, 70301" +PUMA "WV, 00100" +PUMA "WV, 00200" +PUMA "WV, 00300" +PUMA "WV, 00400" +PUMA "WV, 00500" +PUMA "WV, 00600" +PUMA "WV, 00700" +PUMA "WV, 00800" +PUMA "WV, 00900" +PUMA "WV, 01000" +PUMA "WV, 01100" +PUMA "WV, 01200" +PUMA "WV, 01300" +PUMA "WY, 00100" +PUMA "WY, 00200" +PUMA "WY, 00300" +PUMA "WY, 00400" +PUMA "WY, 00500" +PUMA Metro Status "In metro area, not/partially in principal city" +PUMA Metro Status "In metro area, principal city" +PUMA Metro Status Not/partially in metro area +PV Orientation East ResStockArguments pv_system_array_azimuth=90 pv_system_2_array_azimuth=0 +PV Orientation None ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation North ResStockArguments pv_system_array_azimuth=0 pv_system_2_array_azimuth=0 +PV Orientation Northeast ResStockArguments pv_system_array_azimuth=45 pv_system_2_array_azimuth=0 +PV Orientation Northwest ResStockArguments pv_system_array_azimuth=315 pv_system_2_array_azimuth=0 +PV Orientation South ResStockArguments pv_system_array_azimuth=180 pv_system_2_array_azimuth=0 +PV Orientation Southeast ResStockArguments pv_system_array_azimuth=135 pv_system_2_array_azimuth=0 +PV Orientation Southwest ResStockArguments pv_system_array_azimuth=225 pv_system_2_array_azimuth=0 +PV Orientation West ResStockArguments pv_system_array_azimuth=270 pv_system_2_array_azimuth=0 +PV System Size 1.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=1000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 11.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=11000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 13.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=13000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 3.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=3000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 5.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=5000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 7.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=7000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size 9.0 kWDC ResStockArguments pv_system_present=true pv_system_module_type=auto pv_system_max_power_output=9000 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +PV System Size None ResStockArguments pv_system_present=false pv_system_module_type=auto pv_system_max_power_output=0 pv_system_location=roof pv_system_tracking=auto pv_system_array_tilt=roofpitch pv_system_inverter_efficiency=auto pv_system_system_losses_fraction=auto pv_system_2_present=false pv_system_2_module_type=auto pv_system_2_max_power_output=0 pv_system_2_location=auto pv_system_2_tracking=auto pv_system_2_array_tilt=roofpitch +Plug Load Diversity 100% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.0 +Plug Load Diversity 150% ResStockArguments misc_plug_loads_other_2_usage_multiplier=1.5 +Plug Load Diversity 200% ResStockArguments misc_plug_loads_other_2_usage_multiplier=2.0 +Plug Load Diversity 25% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.25 +Plug Load Diversity 400% ResStockArguments misc_plug_loads_other_2_usage_multiplier=4.0 +Plug Load Diversity 50% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.5 +Plug Load Diversity 75% ResStockArguments misc_plug_loads_other_2_usage_multiplier=0.75 +Plug Loads 100% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.0 misc_plug_loads_television_present=false +Plug Loads 101% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.01 misc_plug_loads_television_present=false +Plug Loads 102% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.02 misc_plug_loads_television_present=false +Plug Loads 103% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.03 misc_plug_loads_television_present=false +Plug Loads 104% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.04 misc_plug_loads_television_present=false +Plug Loads 105% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.05 misc_plug_loads_television_present=false +Plug Loads 106% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.06 misc_plug_loads_television_present=false +Plug Loads 108% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.08 misc_plug_loads_television_present=false +Plug Loads 110% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.1 misc_plug_loads_television_present=false +Plug Loads 113% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.13 misc_plug_loads_television_present=false +Plug Loads 119% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.19 misc_plug_loads_television_present=false +Plug Loads 121% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.21 misc_plug_loads_television_present=false +Plug Loads 123% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.23 misc_plug_loads_television_present=false +Plug Loads 134% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.34 misc_plug_loads_television_present=false +Plug Loads 137% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.37 misc_plug_loads_television_present=false +Plug Loads 140% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.4 misc_plug_loads_television_present=false +Plug Loads 144% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.44 misc_plug_loads_television_present=false +Plug Loads 166% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=1.66 misc_plug_loads_television_present=false +Plug Loads 78% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.78 misc_plug_loads_television_present=false +Plug Loads 79% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.79 misc_plug_loads_television_present=false +Plug Loads 82% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.82 misc_plug_loads_television_present=false +Plug Loads 84% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.84 misc_plug_loads_television_present=false +Plug Loads 85% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.85 misc_plug_loads_television_present=false +Plug Loads 86% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.86 misc_plug_loads_television_present=false +Plug Loads 89% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.89 misc_plug_loads_television_present=false +Plug Loads 91% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.91 misc_plug_loads_television_present=false +Plug Loads 93% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.93 misc_plug_loads_television_present=false +Plug Loads 94% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.94 misc_plug_loads_television_present=false +Plug Loads 95% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.95 misc_plug_loads_television_present=false +Plug Loads 96% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.96 misc_plug_loads_television_present=false +Plug Loads 97% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.97 misc_plug_loads_television_present=false +Plug Loads 99% ResStockArguments misc_plug_loads_other_annual_kwh=auto misc_plug_loads_other_frac_sensible=0.93 misc_plug_loads_other_frac_latent=0.021 misc_plug_loads_other_usage_multiplier=0.99 misc_plug_loads_television_present=false +Power Outage Summer ResStockArguments schedules_power_outage_period=Jul 1 5 - Jul 31 14 schedules_power_outage_window_natvent_availability=always available +REEDS Balancing Area 1 +REEDS Balancing Area 10 +REEDS Balancing Area 100 +REEDS Balancing Area 101 +REEDS Balancing Area 102 +REEDS Balancing Area 103 +REEDS Balancing Area 104 +REEDS Balancing Area 105 +REEDS Balancing Area 106 +REEDS Balancing Area 107 +REEDS Balancing Area 108 +REEDS Balancing Area 109 +REEDS Balancing Area 11 +REEDS Balancing Area 110 +REEDS Balancing Area 111 +REEDS Balancing Area 112 +REEDS Balancing Area 113 +REEDS Balancing Area 114 +REEDS Balancing Area 115 +REEDS Balancing Area 116 +REEDS Balancing Area 117 +REEDS Balancing Area 118 +REEDS Balancing Area 119 +REEDS Balancing Area 12 +REEDS Balancing Area 120 +REEDS Balancing Area 121 +REEDS Balancing Area 122 +REEDS Balancing Area 123 +REEDS Balancing Area 124 +REEDS Balancing Area 125 +REEDS Balancing Area 126 +REEDS Balancing Area 127 +REEDS Balancing Area 128 +REEDS Balancing Area 129 +REEDS Balancing Area 13 +REEDS Balancing Area 130 +REEDS Balancing Area 131 +REEDS Balancing Area 132 +REEDS Balancing Area 133 +REEDS Balancing Area 134 +REEDS Balancing Area 14 +REEDS Balancing Area 15 +REEDS Balancing Area 16 +REEDS Balancing Area 17 +REEDS Balancing Area 18 +REEDS Balancing Area 19 +REEDS Balancing Area 2 +REEDS Balancing Area 20 +REEDS Balancing Area 21 +REEDS Balancing Area 22 +REEDS Balancing Area 23 +REEDS Balancing Area 24 +REEDS Balancing Area 25 +REEDS Balancing Area 26 +REEDS Balancing Area 27 +REEDS Balancing Area 28 +REEDS Balancing Area 29 +REEDS Balancing Area 3 +REEDS Balancing Area 30 +REEDS Balancing Area 31 +REEDS Balancing Area 32 +REEDS Balancing Area 33 +REEDS Balancing Area 34 +REEDS Balancing Area 35 +REEDS Balancing Area 36 +REEDS Balancing Area 37 +REEDS Balancing Area 38 +REEDS Balancing Area 39 +REEDS Balancing Area 4 +REEDS Balancing Area 40 +REEDS Balancing Area 41 +REEDS Balancing Area 42 +REEDS Balancing Area 43 +REEDS Balancing Area 44 +REEDS Balancing Area 45 +REEDS Balancing Area 46 +REEDS Balancing Area 47 +REEDS Balancing Area 48 +REEDS Balancing Area 49 +REEDS Balancing Area 5 +REEDS Balancing Area 50 +REEDS Balancing Area 51 +REEDS Balancing Area 52 +REEDS Balancing Area 53 +REEDS Balancing Area 54 +REEDS Balancing Area 55 +REEDS Balancing Area 56 +REEDS Balancing Area 57 +REEDS Balancing Area 58 +REEDS Balancing Area 59 +REEDS Balancing Area 6 +REEDS Balancing Area 60 +REEDS Balancing Area 61 +REEDS Balancing Area 62 +REEDS Balancing Area 63 +REEDS Balancing Area 64 +REEDS Balancing Area 65 +REEDS Balancing Area 66 +REEDS Balancing Area 67 +REEDS Balancing Area 68 +REEDS Balancing Area 69 +REEDS Balancing Area 7 +REEDS Balancing Area 70 +REEDS Balancing Area 71 +REEDS Balancing Area 72 +REEDS Balancing Area 73 +REEDS Balancing Area 74 +REEDS Balancing Area 75 +REEDS Balancing Area 76 +REEDS Balancing Area 77 +REEDS Balancing Area 78 +REEDS Balancing Area 79 +REEDS Balancing Area 8 +REEDS Balancing Area 80 +REEDS Balancing Area 81 +REEDS Balancing Area 82 +REEDS Balancing Area 83 +REEDS Balancing Area 84 +REEDS Balancing Area 85 +REEDS Balancing Area 86 +REEDS Balancing Area 87 +REEDS Balancing Area 88 +REEDS Balancing Area 89 +REEDS Balancing Area 9 +REEDS Balancing Area 90 +REEDS Balancing Area 91 +REEDS Balancing Area 92 +REEDS Balancing Area 93 +REEDS Balancing Area 94 +REEDS Balancing Area 95 +REEDS Balancing Area 96 +REEDS Balancing Area 97 +REEDS Balancing Area 98 +REEDS Balancing Area 99 +REEDS Balancing Area None +Radiant Barrier No ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 +Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour11 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=11 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour12 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=12 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour13 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=13 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour14 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=14 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour15 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=15 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour16 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=16 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour17 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=17 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour18 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=18 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour19 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=19 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour2 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=2 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour20 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=20 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour21 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=21 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour22 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=22 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour23 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=23 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour3 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=3 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour4 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=4 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour5 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=5 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour6 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=6 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour7 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=7 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour8 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=8 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Range Spot Vent Hour Hour9 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=9 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto +Refrigerator EF 10.2 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=748 +Refrigerator EF 10.5 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=727 +Refrigerator EF 15.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=480 +Refrigerator EF 17.6 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=433 +Refrigerator EF 19.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=383 +Refrigerator EF 21.9 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=348 +Refrigerator EF 6.7 ResStockArguments refrigerator_present=true refrigerator_location=auto refrigerator_rated_annual_kwh=1139 +Refrigerator None ResStockArguments refrigerator_present=false refrigerator_location=auto refrigerator_rated_annual_kwh=0 +Refrigerator Void +Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 +Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 +Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 +Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark +Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light +Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective +Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark +Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light +Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective +Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark +Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light +Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective +Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium +Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium +Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium +Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, 70 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=70 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Latitude + 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=latitude+15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water "40 sqft, West, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=270 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +Solar Hot Water None ResStockArguments solar_thermal_system_type=none solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 +State AK ResStockArguments site_state_code=AK +State AL ResStockArguments site_state_code=AL +State AR ResStockArguments site_state_code=AR +State AZ ResStockArguments site_state_code=AZ +State CA ResStockArguments site_state_code=CA +State CO ResStockArguments site_state_code=CO +State CT ResStockArguments site_state_code=CT +State DC ResStockArguments site_state_code=DC +State DE ResStockArguments site_state_code=DE +State FL ResStockArguments site_state_code=FL +State GA ResStockArguments site_state_code=GA +State HI ResStockArguments site_state_code=HI +State IA ResStockArguments site_state_code=IA +State ID ResStockArguments site_state_code=ID +State IL ResStockArguments site_state_code=IL +State IN ResStockArguments site_state_code=IN +State KS ResStockArguments site_state_code=KS +State KY ResStockArguments site_state_code=KY +State LA ResStockArguments site_state_code=LA +State MA ResStockArguments site_state_code=MA +State MD ResStockArguments site_state_code=MD +State ME ResStockArguments site_state_code=ME +State MI ResStockArguments site_state_code=MI +State MN ResStockArguments site_state_code=MN +State MO ResStockArguments site_state_code=MO +State MS ResStockArguments site_state_code=MS +State MT ResStockArguments site_state_code=MT +State NC ResStockArguments site_state_code=NC +State ND ResStockArguments site_state_code=ND +State NE ResStockArguments site_state_code=NE +State NH ResStockArguments site_state_code=NH +State NJ ResStockArguments site_state_code=NJ +State NM ResStockArguments site_state_code=NM +State NV ResStockArguments site_state_code=NV +State NY ResStockArguments site_state_code=NY +State OH ResStockArguments site_state_code=OH +State OK ResStockArguments site_state_code=OK +State OR ResStockArguments site_state_code=OR +State PA ResStockArguments site_state_code=PA +State RI ResStockArguments site_state_code=RI +State SC ResStockArguments site_state_code=SC +State SD ResStockArguments site_state_code=SD +State TN ResStockArguments site_state_code=TN +State TX ResStockArguments site_state_code=TX +State UT ResStockArguments site_state_code=UT +State VA ResStockArguments site_state_code=VA +State VT ResStockArguments site_state_code=VT +State WA ResStockArguments site_state_code=WA +State WI ResStockArguments site_state_code=WI +State WV ResStockArguments site_state_code=WV +State WY ResStockArguments site_state_code=WY +Storm Windows Clear ResStockArguments window_storm_type=clear +Storm Windows Low-E ResStockArguments window_storm_type=low-e +Tenure Not Available +Tenure Owner +Tenure Renter +Usage Level Average +Usage Level High +Usage Level Low +Usage Level Medium +Vacancy Status Occupied +Vacancy Status Vacant ResStockArguments schedules_vacancy_period=Jan 1 - Dec 31 +Vintage 1940s ResStockArguments vintage=1940s year_built=auto +Vintage 1950s ResStockArguments vintage=1950s year_built=auto +Vintage 1960s ResStockArguments vintage=1960s year_built=auto +Vintage 1970s ResStockArguments vintage=1970s year_built=auto +Vintage 1980s ResStockArguments vintage=1980s year_built=auto +Vintage 1990s ResStockArguments vintage=1990s year_built=auto +Vintage 2000s ResStockArguments vintage=2000s year_built=auto +Vintage 2010s ResStockArguments vintage=2010s year_built=auto +Vintage <1940 ResStockArguments vintage=<1940 year_built=auto +Vintage <1950 ResStockArguments vintage=<1950 year_built=auto +Vintage ACS 1940-59 +Vintage ACS 1960-79 +Vintage ACS 1980-99 +Vintage ACS 2000-09 +Vintage ACS 2010s +Vintage ACS <1940 +Water Heater Efficiency "Electric Heat Pump, 50 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 140F" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=140 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 50 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=50 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 66 gal, 3.35 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=66 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.35 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=2.3 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Electric Heat Pump, 80 gal, 3.45 UEF" ResStockArguments water_heater_type=heat pump water heater water_heater_fuel_type=electricity water_heater_tank_volume=80 water_heater_efficiency_type=UniformEnergyFactor water_heater_efficiency=3.45 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Natural Gas Tankless, Condensing" ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.96 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency "Propane Premium, Condensing" ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.95 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=electricity water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.92 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Electric Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=electricity water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.99 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency FIXME Fuel Oil Indirect ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.68 water_heater_recovery_efficiency=0.9 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Fuel Oil Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=fuel oil water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.62 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=natural gas water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Natural Gas Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=natural gas water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Other Fuel ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=wood water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Premium ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.67 water_heater_recovery_efficiency=0.78 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Standard ResStockArguments water_heater_type=storage water heater water_heater_fuel_type=propane water_heater_tank_volume=auto water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.59 water_heater_recovery_efficiency=0.76 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Efficiency Propane Tankless ResStockArguments water_heater_type=instantaneous water heater water_heater_fuel_type=propane water_heater_tank_volume=0 water_heater_efficiency_type=EnergyFactor water_heater_efficiency=0.82 water_heater_recovery_efficiency=0 water_heater_standby_loss=0 water_heater_jacket_rvalue=0 water_heater_setpoint_temperature=125 water_heater_heating_capacity=auto water_heater_has_flue_or_chimney=auto water_heater_num_units_served=1 water_heater_operating_mode=auto water_heater_tank_model_type=auto water_heater_usage_bin=auto water_heater_uses_desuperheater=auto +Water Heater Fuel Electricity +Water Heater Fuel Fuel Oil +Water Heater Fuel Natural Gas +Water Heater Fuel Other Fuel +Water Heater Fuel Propane +Water Heater In Unit No +Water Heater In Unit Yes +Water Heater Location Attic ResStockArguments water_heater_location=attic +Water Heater Location Crawlspace ResStockArguments water_heater_location=crawlspace +Water Heater Location Garage ResStockArguments water_heater_location=garage +Water Heater Location Heated Basement ResStockArguments water_heater_location=basement - conditioned +Water Heater Location Living Space ResStockArguments water_heater_location=conditioned space +Water Heater Location None +Water Heater Location Outside ResStockArguments water_heater_location=other exterior +Water Heater Location Unheated Basement ResStockArguments water_heater_location=basement - unconditioned +Window Areas F10 B30 L10 R10 ResStockArguments window_front_wwr=0.1 window_back_wwr=0.3 window_left_wwr=0.1 window_right_wwr=0.1 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F12 B12 L12 R12 ResStockArguments window_front_wwr=0.12 window_back_wwr=0.12 window_left_wwr=0.12 window_right_wwr=0.12 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L0 R0 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0 window_right_wwr=0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F15 B15 L15 R15 ResStockArguments window_front_wwr=0.15 window_back_wwr=0.15 window_left_wwr=0.15 window_right_wwr=0.15 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F18 B18 L18 R18 ResStockArguments window_front_wwr=0.18 window_back_wwr=0.18 window_left_wwr=0.18 window_right_wwr=0.18 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F30 B30 L30 R30 ResStockArguments window_front_wwr=0.30 window_back_wwr=0.30 window_left_wwr=0.30 window_right_wwr=0.30 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F6 B6 L6 R6 ResStockArguments window_front_wwr=0.06 window_back_wwr=0.06 window_left_wwr=0.06 window_right_wwr=0.06 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas F9 B9 L9 R9 ResStockArguments window_front_wwr=0.09 window_back_wwr=0.09 window_left_wwr=0.09 window_right_wwr=0.09 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Window Areas None ResStockArguments window_front_wwr=0.0 window_back_wwr=0.0 window_left_wwr=0.0 window_right_wwr=0.0 window_area_front=0 window_area_back=0 window_area_left=0 window_area_right=0 window_aspect_ratio=1.333 skylight_area_front=0 skylight_area_back=0 skylight_area_left=0 skylight_area_right=0 +Windows "Double, Clear, Metal, Air" ResStockArguments window_ufactor=0.76 window_shgc=0.67 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.55 window_shgc=0.51 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.49 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air" ResStockArguments window_ufactor=0.49 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Air, Exterior Clear Storm" ResStockArguments window_ufactor=0.34 window_shgc=0.49 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.28 window_shgc=0.42 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Clear, Thermal-Break, Air" ResStockArguments window_ufactor=0.63 window_shgc=0.62 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, H-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, L-Gain" ResStockArguments window_ufactor=0.26 window_shgc=0.31 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.37 window_shgc=0.3 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Double, Low-E, Non-metal, Air, M-Gain" ResStockArguments window_ufactor=0.38 window_shgc=0.44 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal" ResStockArguments window_ufactor=1.16 window_shgc=0.76 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.67 window_shgc=0.56 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.57 window_shgc=0.47 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal" ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Clear Storm" ResStockArguments window_ufactor=0.47 window_shgc=0.54 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Single, Clear, Non-metal, Exterior Low-E Storm" ResStockArguments window_ufactor=0.36 window_shgc=0.46 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, H-Gain" ResStockArguments window_ufactor=0.18 window_shgc=0.40 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Insulated, Argon, L-Gain" ResStockArguments window_ufactor=0.17 window_shgc=0.27 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor=0.29 window_shgc=0.26 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto +Windows Void +Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=other fuel +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.60 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_compressor_lockout_temp=-20 heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From 33a5bd30cb2bd845c5788e7bcb2da2bb1e618651 Mon Sep 17 00:00:00 2001 From: Yingli Date: Mon, 12 Feb 2024 19:49:26 -0700 Subject: [PATCH 09/19] schedule based appliance --- project_national/national_baseline.yml | 8 +- .../resources/README.md | 3 +- .../clothes_dryer_consumption_dist.csv | 100 +----------------- .../clothes_washer_consumption_dist.csv | 95 +---------------- .../resources/cooking_consumption_dist.csv | 70 ++---------- .../resources/dishwasher_consumption_dist.csv | 57 +--------- .../resources/schedules.rb | 25 +++-- .../resources/hotwater_appliances.rb | 36 ++++++- .../HPXMLtoOpenStudio/resources/schedules.rb | 35 ++++-- resources/options_lookup.tsv | 6 +- 10 files changed, 101 insertions(+), 334 deletions(-) diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index 947697e5f7..7aff8d1e65 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -3,14 +3,14 @@ os_version: 3.7.0 os_sha: d5269793f1 buildstock_directory: ../ # Relative to this file or absolute project_directory: project_national # Relative to buildstock_directory -output_directory: /kfs2/projects/panels/schedule_based_appliance/test_run20231221 -#weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip -weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_TMY3_FIPS.zip +output_directory: schedule_based_appliance +weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip +#weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_TMY3_FIPS.zip sampler: type: precomputed args: - sample_file: /kfs2/projects/panels/schedule_based_appliance/buildstock_550K.csv + sample_file: failed_buildstock5.csv workflow_generator: type: residential_hpxml diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md index 01341703a2..7d29503c60 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md @@ -39,8 +39,7 @@ The files are divided into four clusters (cluster0 to cluster3), for 4 occupant `_consumption_dist.csv` -These files contain the 15-min power consumption kWh samples for the given end use, obtained from RBSA (average 15-min end use kWh for each submetered home; N=number of homes with that end use). -The schedule generator randomly picks one of these values to determine the power level of the appliance schedule. +These files contain the 1-min power kW samples for the given end use, obtained from NREL metered data. The metered range is Whirlpool WFE540H0AS, which is a standard electric range. The metered clothes dryer is Bosch WTG865H4UC, whose CEF=2.68. Metered Clothes washer IMEF= 2.07. Metered dishwasher Annual Energy Use rating is 240 kWh/yr. `_duration_dist.csv` diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv index 5a9d15bf27..e11588eeca 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_dryer_consumption_dist.csv @@ -1,95 +1,5 @@ -0.7401875901875902 -0.6763526834611172 -0.6933136094674556 -0.7525892857142857 -0.6114730290456432 -0.6686034353995519 -0.6486158192090395 -0.8418343195266272 -0.5109159779614325 -0.7325305738476011 -0.7300523350987 -0.8098499541059488 -0.7579439252336448 -0.505147348212131 -0.8228205128205128 -0.757375415282392 -0.6456170212765957 -0.6166452095808383 -0.5857394366197183 -0.7722986682107701 -0.5820289855072464 -0.8095555555555556 -0.8690485829959514 -0.5393928798474253 -0.6707438016528926 -0.6491715976331361 -0.6852181208053691 -0.7737162162162162 -0.5468722466960353 -0.6900119904076739 -0.6686852589641434 -0.5546972369194592 -0.7376367498672332 -0.7106993006993007 -0.8190260631001371 -0.9360693641618497 -0.7348567530695771 -0.5642268041237113 -0.4671391917896087 -0.576453488372093 -0.7148119469026548 -0.5451612903225806 -0.7728179190751445 -0.5989509433962265 -0.7988797250859107 -0.614203211351755 -0.6865119651921683 -0.643011583011583 -0.656452296819788 -0.624065934065934 -0.49186450492182976 -0.698195991091314 -0.5266933333333333 -0.6834490740740741 -0.6792571428571429 -0.580092920073819 -0.6755813953488372 -0.7074688796680498 -0.6719745222929936 -0.7267451523545706 -0.5332251655629139 -0.6518089167280766 -0.7233875338753387 -0.5308162031438936 -0.7748849104859334 -0.5244340505144995 -0.7985 -0.6511931818181819 -0.5508247422680412 -0.5128938156359393 -0.5025907590759076 -0.5205498281786941 -0.5137831858407079 -0.5919750628069445 -0.5294406822425564 -0.6661693548387096 -0.7131951219512195 -0.6371662206363367 -0.49895771878072764 -0.5738197424892704 -0.4593438320209974 -0.83614 -0.6048826895565093 -0.5638992581023038 -0.6861959662853703 -0.5313793103448275 -0.715788876276958 -0.4535348226018397 -0.7158775067750407 -0.6221506849315068 -0.7510689869484152 -0.8052488687782805 -0.714069640914037 -0.5361458333333333 -0.6422522522522522 +0.182461667 +1.9305556 +2.578876433 +2.607120267 +5.981998067 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv index 40dc6fb042..298e976a34 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/clothes_washer_consumption_dist.csv @@ -1,93 +1,2 @@ -0.07840152649072847 -0.08468426286190477 -0.07354431109509202 -0.05928571428571429 -0.047323492187499996 -0.08326639892904954 -0.08801944565 -0.10726148409893993 -0.06470188386108597 -0.036913244172727275 -0.06380358329255953 -0.03639135685580222 -0.06532894736842106 -0.075 -0.0724594589916996 -0.04552238805970149 -0.0454150216342155 -0.08559735020011683 -0.04075611066856492 -0.049579831932773114 -0.09103340292275575 -0.055832836370387245 -0.04031746031746032 -0.060389375761458336 -0.03660564553348165 -0.08472395263956835 -0.051892162410218975 -0.04075858495649351 -0.036328667291947565 -0.17408163265306123 -0.056306947876447876 -0.0396128506696 -0.04122222222222222 -0.10344627299128752 -0.11312958614822646 -0.036449818245376346 -0.08550582650327869 -0.07144449236641222 -0.06485333333061225 -0.044670719351570416 -0.04111545881583012 -0.07306586750025063 -0.061816410982954546 -0.06934900732161896 -0.036943585438202246 -0.08009580838323353 -0.07253886010362695 -0.09161556603773585 -0.06734366904857143 -0.04669642857142857 -0.09067542213883678 -0.07715048591408451 -0.03741839523160377 -0.07300678889151516 -0.07983786760725807 -0.08426026080046685 -0.06947525244250614 -0.08961722488038278 -0.036504996461146494 -0.04847781164346764 -0.07804588823411765 -0.054262407749416666 -0.03410074324978541 -0.07096827022890173 -0.0365219869796875 -0.06884012422808641 -0.07333511100723127 -0.06980131860797546 -0.07540567352784314 -0.048277994330612244 -0.03508549061456044 -0.08235954552052023 -0.08555555555555555 -0.04969387972166667 -0.07329218106995886 -0.042370467636666666 -0.09774325928465753 -0.047965425507356156 -0.07347945054308944 -0.05227391342638889 -0.03785645173949045 -0.03873201797222222 -0.10400276502513116 -0.08141323676074766 -0.07476731104767442 -0.03763019355974441 -0.0832133676092545 -0.057244647308859226 -0.04419379292659933 -0.08293756397134085 -0.03424707690035088 -0.0862861697537037 -0.050176510811891895 +0.755685783 +0.711993683 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv index 6dd4bd9671..48faf8a3d8 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/cooking_consumption_dist.csv @@ -1,63 +1,7 @@ -0.24184278350515465 -0.35916249105225484 -0.3342277992277992 -0.22115897435897436 -0.09386666666666667 -0.2452562225475842 -0.2596535129932628 -0.2432636193530874 -0.24371917463512835 -0.29547826086956525 -0.26907056798623064 -0.1512106135986733 -0.30496503496503496 -0.24927876823338735 -0.28042694497153703 -0.21896645512239346 -0.22332857142857143 -0.26805182341650674 -0.28706552706552707 -0.2110576923076923 -0.2335443411539029 -0.2429324894514768 -0.26504347826086955 -0.27439024390243905 -0.2443854324734446 -0.256246719160105 -0.25103846153846154 -0.2787231503579952 -0.25219110378912685 -0.21715078416728903 -0.3207981220657277 -0.23244106463878328 -0.2183682008368201 -0.20691096305269535 -0.26887706855791965 -0.22020926756352766 -0.27527944969905416 -0.3208922238372093 -0.21243827160493828 -0.1282451253481894 -0.24433724075743912 -0.2594965449160908 -0.22655840455840456 -0.23205211726384364 -0.1833734939759036 -0.2773582295988935 -0.20106739053043787 -0.20534220532319392 -0.23474915254237289 -0.2620616570327553 -0.26216216216216215 -0.19722676579925652 -0.22963117236760225 -0.2672146739130435 -0.20087423312883435 -0.27033473154362414 -0.19489583333333332 -0.18529780564263323 -0.13686559139784946 -0.2350279552715655 -0.23928018575851392 -0.3259296875 -0.18784615384615386 +0.428622011 +1.1382695 +1.255058153 +3.327111361 +3.345616878 +3.351581688 +3.449142567 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv index 231559fbae..13ec6c5951 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/dishwasher_consumption_dist.csv @@ -1,56 +1 @@ -0.17106035889070148 -0.15234417344173443 -0.12264907135874878 -0.17646869983948635 -0.159185667752443 -0.08693232131562302 -0.14911691542288558 -0.1589312536106297 -0.12033292231812577 -0.2234162162162162 -0.17139954853273137 -0.22575192096597146 -0.14875886524822696 -0.23615671641791044 -0.22696747114375657 -0.1382964509394572 -0.1954726368159204 -0.15478218780251693 -0.1606179775280899 -0.20641921397379911 -0.18277294038847958 -0.13049798115746972 -0.18272727272727274 -0.1634688995215311 -0.16244444444444445 -0.08069159836065574 -0.16043570669500531 -0.10926213286921388 -0.12836313617606604 -0.1486868686868687 -0.23592876712328767 -0.1351692913385827 -0.1369962686567164 -0.1741904761904762 -0.21345098039215687 -0.11025 -0.1772456813819578 -0.15782529743268628 -0.1526602564102564 -0.17230768295204263 -0.09601374570446736 -0.1711441647597254 -0.23446710090525502 -0.14131832797427654 -0.16409345794392524 -0.11176461562068436 -0.20523647001462703 -0.16846917666528755 -0.09413361169102297 -0.15504725897920604 -0.18657683215130025 -0.17790163934426229 -0.09052422097870969 -0.2059972299168975 -0.17470588235294118 -0.18686940966010734 +1.004 diff --git a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb index e5fd81cd2c..b9715f9c7d 100644 --- a/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +++ b/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb @@ -554,30 +554,30 @@ def create_stochastic_schedules(args:) random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cooking_power_sch = cooking_power_sch.rotate(random_offset) cooking_power_sch = apply_monthly_offsets(array: cooking_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cooking_power_sch = aggregate_array(cooking_power_sch, @minutes_per_step) + cooking_power_sch = average_array(cooking_power_sch, @minutes_per_step) cooking_peak_power = cooking_power_sch.max - @schedules[SchedulesFile::ColumnCookingRange] = cooking_power_sch.map { |power| power / cooking_peak_power } + @schedules[SchedulesFile::ColumnCookingRange] = cooking_power_sch.map { |power| power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cw_power_sch = cw_power_sch.rotate(random_offset) cw_power_sch = apply_monthly_offsets(array: cw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cw_power_sch = aggregate_array(cw_power_sch, @minutes_per_step) + cw_power_sch = average_array(cw_power_sch, @minutes_per_step) cw_peak_power = cw_power_sch.max - @schedules[SchedulesFile::ColumnClothesWasher] = cw_power_sch.map { |power| power / cw_peak_power } + @schedules[SchedulesFile::ColumnClothesWasher] = cw_power_sch.map { |power| power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cd_power_sch = cd_power_sch.rotate(random_offset) cd_power_sch = apply_monthly_offsets(array: cd_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - cd_power_sch = aggregate_array(cd_power_sch, @minutes_per_step) + cd_power_sch = average_array(cd_power_sch, @minutes_per_step) cd_peak_power = cd_power_sch.max - @schedules[SchedulesFile::ColumnClothesDryer] = cd_power_sch.map { |power| power / cd_peak_power } + @schedules[SchedulesFile::ColumnClothesDryer] = cd_power_sch.map { |power| power } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range dw_power_sch = dw_power_sch.rotate(random_offset) dw_power_sch = apply_monthly_offsets(array: dw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) - dw_power_sch = aggregate_array(dw_power_sch, @minutes_per_step) + dw_power_sch = average_array(dw_power_sch, @minutes_per_step) dw_peak_power = dw_power_sch.max - @schedules[SchedulesFile::ColumnDishwasher] = dw_power_sch.map { |power| power / dw_peak_power } + @schedules[SchedulesFile::ColumnDishwasher] = dw_power_sch.map { |power| power } @schedules[SchedulesFile::ColumnOccupants] = away_schedule.map { |i| 1.0 - i } @@ -601,6 +601,15 @@ def aggregate_array(array, group_size) return new_array end + def average_array(array, group_size) + new_array_size = array.size / group_size + new_array = [0] * new_array_size + new_array_size.times do |j| + new_array[j] = array[(j * group_size)..(j + 1) * group_size - 1].sum(0) / group_size + end + return new_array + end + def apply_monthly_offsets(array:, weekday_monthly_shift_dict:, weekend_monthly_shift_dict:) month_strs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] new_array = [] diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index c616da8200..96d9d42f75 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -48,8 +48,13 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cw_power_schedule = nil cw_col_name = SchedulesFile::ColumnClothesWasher cw_object_name = Constants.ObjectNameClothesWasher + metered_clothes_washer_IMEF = 2.07 + if clothes_washer.integrated_modified_energy_factor.nil? + clothes_washer.integrated_modified_energy_factor = 2.07 + end + clothes_washer_power_multiplier = metered_clothes_washer_IMEF/clothes_washer.integrated_modified_energy_factor if not schedules_file.nil? - cw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: cw_col_name, daily_kwh: cw_annual_kwh / 365.0) + cw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: cw_col_name) * clothes_washer_power_multiplier cw_power_schedule = schedules_file.create_schedule_file(model, col_name: cw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cw_power_schedule.nil? @@ -79,8 +84,17 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat cd_schedule = nil cd_col_name = SchedulesFile::ColumnClothesDryer cd_obj_name = Constants.ObjectNameClothesDryer + metered_clothes_dryer_CEF = 2.68 + if clothes_dryer.combined_energy_factor.nil? + clothes_dryer.combined_energy_factor = 2.68 + end + clothes_dryer_power_multiplier = metered_clothes_dryer_CEF/clothes_dryer.combined_energy_factor if not schedules_file.nil? - cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) + if clothes_dryer.fuel_type == HPXML::FuelTypeElectricity + cd_design_level_e = clothes_dryer_power_multiplier * schedules_file.calc_design_level_from_schedule_max(col_name: cd_col_name) + else + cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) + end cd_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cd_col_name, annual_therm: cd_annual_therm) cd_schedule = schedules_file.create_schedule_file(model, col_name: cd_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end @@ -113,8 +127,13 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat dw_power_schedule = nil dw_col_name = SchedulesFile::ColumnDishwasher dw_obj_name = Constants.ObjectNameDishwasher + metered_dishwasher_rated_annual_kwh = 240 + if dishwasher.rated_annual_kwh.nil? + dishwasher.rated_annual_kwh = 240 + end + dishwasher_power_multiplier = dishwasher.rated_annual_kwh/metered_dishwasher_rated_annual_kwh if not schedules_file.nil? - dw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: dw_col_name, daily_kwh: dw_annual_kwh / 365.0) + dw_design_level_w = schedules_file.calc_design_level_from_schedule_max(col_name: dw_col_name) * dishwasher_power_multiplier dw_power_schedule = schedules_file.create_schedule_file(model, col_name: dw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if dw_power_schedule.nil? @@ -201,13 +220,22 @@ def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_wat # Cooking Range energy if not cooking_range.nil? cook_annual_kwh, cook_annual_therm, cook_frac_sens, cook_frac_lat = calc_range_oven_energy(nbeds, cooking_range, oven, cooking_range.additional_properties.space.nil?) + if cooking_range.is_induction + burner_ef = 0.91 + else + burner_ef = 1.0 + end # Create schedule cook_schedule = nil cook_col_name = SchedulesFile::ColumnCookingRange cook_obj_name = Constants.ObjectNameCookingRange if not schedules_file.nil? - cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) + if cooking_range.fuel_type == HPXML::FuelTypeElectricity + cook_design_level_e = burner_ef * schedules_file.calc_design_level_from_schedule_max(col_name: cook_col_name) + else + cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) + end cook_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cook_col_name, annual_therm: cook_annual_therm) cook_schedule = schedules_file.create_schedule_file(model, col_name: cook_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index bc403c81e3..45ca7317a6 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -592,7 +592,7 @@ def self.weekend_name def self.annual_equivalent_full_load_hrs(modelYear, schedule) if schedule.to_ScheduleInterval.is_initialized timeSeries = schedule.to_ScheduleInterval.get.timeSeries - annual_flh = timeSeries.averageValue * 8760 + annual_flh = (timeSeries.averageValue * 8760) / timeSeries.max return annual_flh end @@ -1370,12 +1370,24 @@ def initialize(runner: nil, battery_schedules expand_schedules @tmp_schedules = Marshal.load(Marshal.dump(@schedules)) + normalize_zero_to_one_scale set_unavailable_periods(runner, unavailable_periods) convert_setpoints @output_schedules_path = output_path export() end + def normalize_zero_to_one_scale + range_max_value = @tmp_schedules['cooking_range'].max + @tmp_schedules['cooking_range'] = @tmp_schedules['cooking_range'].map { |power| power / range_max_value } + dishwasher_max_value = @tmp_schedules['dishwasher'].max + @tmp_schedules['dishwasher'] = @tmp_schedules['dishwasher'].map { |power| power / dishwasher_max_value } + washer_max_value = @tmp_schedules['clothes_washer'].max + @tmp_schedules['clothes_washer'] = @tmp_schedules['clothes_washer'].map { |power| power / washer_max_value } + dryer_max_value = @tmp_schedules['clothes_dryer'].max + @tmp_schedules['clothes_dryer'] = @tmp_schedules['clothes_dryer'].map { |power| power / dryer_max_value } + end + def nil? if @schedules.nil? return true @@ -1412,11 +1424,11 @@ def import(schedules_paths) fail "Schedule column name '#{col_name}' is duplicated. [context: #{schedules_path}]" end - if max_value_one[col_name] - if values.max > 1.01 || values.max < 0.99 # Allow some imprecision - fail "Schedule max value for column '#{col_name}' must be 1. [context: #{schedules_path}]" - end - end + #if max_value_one[col_name] + # if values.max > 1.01 || values.max < 0.99 # Allow some imprecision + # fail "Schedule max value for column '#{col_name}' must be 1. [context: #{schedules_path}]" + # end + #end if min_value_zero[col_name] if values.min < 0 @@ -1570,6 +1582,7 @@ def period_equivalent_full_load_hrs(col_name:, end else # Annual equiv_full_load_hrs += schedules[col_name].sum / (60.0 / min_per_item) + equiv_full_load_hrs = equiv_full_load_hrs / schedules[col_name].max end return equiv_full_load_hrs @@ -1592,6 +1605,16 @@ def calc_design_level_from_annual_kwh(col_name:, return design_level end + def calc_design_level_from_schedule_max(col_name:) + if @schedules[col_name].nil? + return + end + + design_level = @schedules[col_name].max * 1000 # W + + return design_level + end + # Similar to ann_equiv_full_load_hrs, but for thermal energy def calc_design_level_from_annual_therm(col_name:, annual_therm:) diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 183e946201..a70d09887a 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -12774,9 +12774,9 @@ REEDS Balancing Area 97 REEDS Balancing Area 98 REEDS Balancing Area 99 REEDS Balancing Area None -Radiant Barrier No ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier None ResStockArguments roof_radiant_barrier=false roof_radiant_barrier_grade=1 -Radiant Barrier Yes ResStockArguments roof_radiant_barrier=true roof_radiant_barrier_grade=1 +Radiant Barrier No ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier None ResStockArguments radiant_barrier_attic_location=none radiant_barrier_grade=1 +Radiant Barrier Yes ResStockArguments radiant_barrier_attic_location=Attic roof only radiant_barrier_grade=1 Range Spot Vent Hour Hour0 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=0 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto Range Spot Vent Hour Hour1 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=1 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto Range Spot Vent Hour Hour10 ResStockArguments kitchen_fans_quantity=auto kitchen_fans_start_hour=10 kitchen_fans_flow_rate=auto kitchen_fans_hours_in_operation=auto kitchen_fans_power=auto From 751c37ad2a4ce35288ab3cac19a7607549a974cb Mon Sep 17 00:00:00 2001 From: Yingli Date: Mon, 12 Feb 2024 22:15:58 -0700 Subject: [PATCH 10/19] revision of yml file --- project_national/panel_upgrades.yml | 248 +++++++++++----------------- resources/options_lookup.tsv | 42 ++--- 2 files changed, 122 insertions(+), 168 deletions(-) diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index 92b1680339..024c3f0e6b 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -61,11 +61,12 @@ baseline: references: options: - #### 1.0 Common Options For Heat Pump, 12 options #### + #### 1.0 Common Options For Heat Pump with ele backup, 12 options #### - &1_heating_fuel option: Heating Fuel|Electricity apply_logic: - not: Heating Fuel|None + - not: Heating Fuel|Electricity - &2_cooling_efficiency_ducted option: HVAC Cooling Efficiency|Ducted Heat Pump @@ -87,13 +88,6 @@ references: - or: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - - - &5_cooling_setpoint_no_offset - option: Cooling Setpoint Has Offset|No - apply_logic: - - or: - - *logic_ducted_hvac_no_ashp - - *logic_ductless_hvac_no_mshp - &6_cooling_setpoint_offset_magnitude_0 option: Cooling Setpoint Offset Magnitude|0F @@ -109,13 +103,6 @@ references: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - - &8_heating_setpoint_no_offset - option: Heating Setpoint Has Offset|No - apply_logic: - - or: - - *logic_ducted_hvac_no_ashp - - *logic_ductless_hvac_no_mshp - - &9_heating_setpoint_offset_magnitude_0 option: Heating Setpoint Offset Magnitude|0F apply_logic: @@ -129,18 +116,64 @@ references: - or: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - - - &11_heating_type_and_fuel_ashp - option: HVAC Heating Type And Fuel|Electricity ASHP + #### 1.0 Common Options For Heat Pump with existing backup, 12 options #### + - &hp_exist_bkup_heating_fuel + option: Heating Fuel|Electricity apply_logic: - - HVAC Has Ducts|Yes - not: Heating Fuel|None + - not: Heating Fuel|Electricity + - HVAC Has Shared System|None - - &12_heating_type_and_fuel_mshp - option: HVAC Heating Type And Fuel|Electricity MSHP - apply_logic: + - &hp_exist_bkup_cooling_efficiency_ducted + option: HVAC Cooling Efficiency|Ducted Heat Pump + apply_logic: &logic_ducted_hvac_no_ashp_no_shared_sys + - HVAC Has Ducts|Yes + - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Has Shared System|None + + - &hp_exist_bkup_cooling_efficiency_ductless + option: HVAC Cooling Efficiency|Non-Ducted Heat Pump + apply_logic: &logic_ductless_hvac_no_mshp_no_shared_sys - HVAC Has Ducts|No - not: Heating Fuel|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + - HVAC Has Shared System|None + + - &hp_exist_bkup_100_percent_conditioned + option: HVAC Cooling Partial Space Conditioning|100% Conditioned + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp_no_shared_sys + - *logic_ductless_hvac_no_mshp_no_shared_sys + + - &hp_exist_bkup_cooling_setpoint_offset_magnitude_0 + option: Cooling Setpoint Offset Magnitude|0F + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp_no_shared_sys + - *logic_ductless_hvac_no_mshp_no_shared_sys + + - &hp_exist_bkup_cooling_setpoint_offset_period_none + option: Cooling Setpoint Offset Period|None + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp_no_shared_sys + - *logic_ductless_hvac_no_mshp_no_shared_sys + + - &hp_exist_bkup_heating_setpoint_offset_magnitude_0 + option: Heating Setpoint Offset Magnitude|0F + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp_no_shared_sys + - *logic_ductless_hvac_no_mshp_no_shared_sys + + - &hp_exist_bkup_heating_setpoint_offset_period_none + option: Heating Setpoint Offset Period|None + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp_no_shared_sys + - *logic_ductless_hvac_no_mshp_no_shared_sys #### 1.1 Electric Resistance Heating, 10 options #### - &1_electric_resistance_heating_heating_fuel @@ -148,52 +181,36 @@ references: apply_logic: - not: Heating Fuel|None - - &2_electric_resistance_heating_heating_type_and_fuel_boiler - option: HVAC Heating Type And Fuel|Electricity Electric Boiler + - &6_electric_resistance_heating_heating_eff_boiler + option: HVAC Heating Efficiency|Electric Boiler, 100% AFUE apply_logic: &apply_logic_fuel_boiler - or: - HVAC Heating Efficiency|Fuel Boiler, 76% AFUE - HVAC Heating Efficiency|Fuel Boiler, 80% AFUE - - HVAC Heating Efficiency|Fuel Boiler, 90% AFUE - - &3_electric_resistance_heating_heating_type_and_fuel_furnace - option: HVAC Heating Type And Fuel|Electricity Electric Furnace + - HVAC Heating Efficiency|Fuel Boiler, 90% AFUE + - &7_electric_resistance_heating_heating_eff_fuel_furnace + option: HVAC Heating Efficiency|Electric Furnace, 100% AFUE apply_logic: &apply_logic_fuel_furnace - or: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - - &4_electric_resistance_heating_heating_type_and_fuel_wall_floor_furnace - option: HVAC Heating Type And Fuel|Electricity Electric Wall Furnace + - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE + - &8_electric_resistance_heating_heating_eff_wall_floor_furnace + option: HVAC Heating Efficiency|Electric Wall Furnace, 100% AFUE apply_logic: &apply_logic_fuel_wall_floor_furnace - or: - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 60% AFUE - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 68% AFUE - - &5_electric_resistance_heating_heating_type_and_fuel_shared_heating - option: HVAC Heating Type And Fuel|Electricity Shared Heating - apply_logic: - - HVAC Heating Efficiency|Shared Heating - - - &6_electric_resistance_heating_heating_eff_boiler - option: HVAC Heating Efficiency|Electric Boiler, 100% AFUE - apply_logic: *apply_logic_fuel_boiler - - &7_electric_resistance_heating_heating_eff_fuel_furnace - option: HVAC Heating Efficiency|Electric Furnace, 100% AFUE - apply_logic: *apply_logic_fuel_furnace - - &8_electric_resistance_heating_heating_eff_wall_floor_furnace - option: HVAC Heating Efficiency|Electric Wall Furnace, 100% AFUE - apply_logic: *apply_logic_fuel_wall_floor_furnace - &9_electric_resistance_hvac_shared_eff_shared_heating_only option: HVAC Shared Efficiencies|Boiler Baseboards Heating Only, Electricity apply_logic: - - HVAC Heating Efficiency|Shared Heating - - not: HVAC Cooling Efficiency|Shared Cooling + - HVAC Shared Efficiencies|Boiler Baseboards Heating Only, Fuel - &10_electric_resistance_hvac_shared_eff_shared_heating_cooling option: HVAC Shared Efficiencies|Fan Coil Heating and Cooling, Electricity apply_logic: - - HVAC Heating Efficiency|Shared Heating - - HVAC Cooling Efficiency|Shared Cooling + - HVAC Shared Efficiencies|Fan Coil Heating and Cooling, Fuel #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - &1_fed_min_ashp_ducted @@ -237,11 +254,9 @@ references: - &fed_min_ashp_exist_backup_no_shared_ducts option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing apply_logic: - - not: HVAC Heating Efficiency|Shared Heating - - not: HVAC Cooling Efficiency|Shared Cooling + - HVAC Has Shared System|None - HVAC Has Ducts|Yes - HVAC Heating Type|Non-Ducted Heating - - not: HVAC Heating Type And Fuel|Electricity ASHP costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP @@ -319,28 +334,28 @@ references: ## ASHP ducted heating ## # Natural Gas as backup - &fed_min_ashp_exist_backup_shared_ducts_60_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace @@ -349,28 +364,28 @@ references: #Fuel Oil as backup - &fed_min_ashp_exist_backup_shared_ducts_60_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace @@ -379,28 +394,28 @@ references: # Propane as backup - &fed_min_ashp_exist_backup_shared_ducts_60_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace @@ -409,28 +424,28 @@ references: # Other Fuel as backup - &fed_min_ashp_exist_backup_shared_ducts_60_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 5F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace @@ -449,8 +464,7 @@ references: - &fed_min_mshp_exist_backup option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load apply_logic: - - not: HVAC Heating Efficiency|Shared Heating - - not: HVAC Cooling Efficiency|Shared Cooling + - HVAC Has Shared System|None - HVAC Has Ducts|No - not: HVAC Heating Type And Fuel|Electricity MSHP costs: *costs_mshp_ductless_8-33_HSPF @@ -769,10 +783,6 @@ upgrades: options: #### 1.1 Electric Resistance Heating 10 options #### - *1_electric_resistance_heating_heating_fuel - - *2_electric_resistance_heating_heating_type_and_fuel_boiler - - *3_electric_resistance_heating_heating_type_and_fuel_furnace - - *4_electric_resistance_heating_heating_type_and_fuel_wall_floor_furnace - - *5_electric_resistance_heating_heating_type_and_fuel_shared_heating - *6_electric_resistance_heating_heating_eff_boiler - *7_electric_resistance_heating_heating_eff_fuel_furnace - *8_electric_resistance_heating_heating_eff_wall_floor_furnace @@ -798,14 +808,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - *1_fed_min_ashp_ducted - *2_fed_min_mshp_ductless @@ -829,14 +835,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - *1_fed_min_ashp_ducted - *2_fed_min_mshp_ductless @@ -860,14 +862,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *1_high_eff_ashp_ducted - *2_high_eff_mshp_ductless @@ -891,14 +889,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *1_high_eff_ashp_ducted - *2_high_eff_mshp_ductless @@ -922,14 +916,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - *1_fed_min_ashp_ducted - *2_fed_min_mshp_ductless @@ -953,14 +943,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *1_high_eff_ashp_ducted - *2_high_eff_mshp_ductless @@ -979,19 +965,15 @@ upgrades: - upgrade_name: 1.8 BAU Electrification with Existing Fuel Backup options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp + #### 1.0 Common Options For Heat Pump with existing backup, 8 options #### + - *hp_exist_bkup_heating_fuel + - *hp_exist_bkup_cooling_efficiency_ducted + - *hp_exist_bkup_cooling_efficiency_ductless + - *hp_exist_bkup_100_percent_conditioned + - *hp_exist_bkup_cooling_setpoint_offset_magnitude_0 + - *hp_exist_bkup_cooling_setpoint_offset_period_none + - *hp_exist_bkup_heating_setpoint_offset_magnitude_0 + - *hp_exist_bkup_heating_setpoint_offset_period_none #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### - *fed_min_ashp_exist_backup_no_shared_ducts - *secondary_heating_type_fuel_natural_gas @@ -1045,14 +1027,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - *1_fed_min_ashp_ducted - *2_fed_min_mshp_ductless @@ -1086,14 +1064,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - *1_fed_min_ashp_ducted - *2_fed_min_mshp_ductless @@ -1127,14 +1101,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *1_high_eff_ashp_ducted - *2_high_eff_mshp_ductless @@ -1168,14 +1138,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *1_high_eff_ashp_ducted - *2_high_eff_mshp_ductless @@ -1209,14 +1175,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - *1_fed_min_ashp_ducted - *2_fed_min_mshp_ductless @@ -1250,14 +1212,10 @@ upgrades: - *2_cooling_efficiency_ducted - *3_cooling_efficiency_ductless - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - *6_cooling_setpoint_offset_magnitude_0 - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - *9_heating_setpoint_offset_magnitude_0 - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *1_high_eff_ashp_ducted - *2_high_eff_mshp_ductless @@ -1286,19 +1244,15 @@ upgrades: - upgrade_name: 2.7 BAU Electrification with Existing Fuel Backup with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *5_cooling_setpoint_no_offset - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *8_heating_setpoint_no_offset - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none - - *11_heating_type_and_fuel_ashp - - *12_heating_type_and_fuel_mshp + #### 1.0 Common Options For Heat Pump with existing backup, 8 options #### + - *hp_exist_bkup_heating_fuel + - *hp_exist_bkup_cooling_efficiency_ducted + - *hp_exist_bkup_cooling_efficiency_ductless + - *hp_exist_bkup_100_percent_conditioned + - *hp_exist_bkup_cooling_setpoint_offset_magnitude_0 + - *hp_exist_bkup_cooling_setpoint_offset_period_none + - *hp_exist_bkup_heating_setpoint_offset_magnitude_0 + - *hp_exist_bkup_heating_setpoint_offset_period_none #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### - *fed_min_ashp_exist_backup_no_shared_ducts - *secondary_heating_type_fuel_natural_gas diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index a70d09887a..bdbb8bb9ab 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -12990,10 +12990,10 @@ Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylig Windows Void Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=other fuel -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto @@ -13002,20 +13002,20 @@ HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockAr HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_compressor_lockout_temp=-20 heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From d3a0964e810bc71284d82d58d14a9454ed62d496 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 14 Feb 2024 22:22:16 -0700 Subject: [PATCH 11/19] revise yml --- project_national/panel_upgrades.yml | 830 ++++++++++++++-------------- resources/options_lookup.tsv | 6 +- 2 files changed, 422 insertions(+), 414 deletions(-) diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index 024c3f0e6b..f049c317e4 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -10,7 +10,7 @@ weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1 sampler: type: residential_quota args: - n_datapoints: 5 + n_datapoints: 1000 workflow_generator: type: residential_hpxml @@ -61,62 +61,60 @@ baseline: references: options: - #### 1.0 Common Options For Heat Pump with ele backup, 12 options #### - - &1_heating_fuel + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - &heating_fuel option: Heating Fuel|Electricity apply_logic: - not: Heating Fuel|None - not: Heating Fuel|Electricity - - - &2_cooling_efficiency_ducted + - &cooling_efficiency_ducted option: HVAC Cooling Efficiency|Ducted Heat Pump apply_logic: &logic_ducted_hvac_no_ashp - HVAC Has Ducts|Yes - - not: Heating Fuel|None - - not: HVAC Heating Type And Fuel|Electricity ASHP - - - &3_cooling_efficiency_ductless + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + - &cooling_efficiency_ductless option: HVAC Cooling Efficiency|Non-Ducted Heat Pump apply_logic: &logic_ductless_hvac_no_mshp - HVAC Has Ducts|No - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity MSHP - - - &4_100_percent_conditioned + - &100_percent_conditioned option: HVAC Cooling Partial Space Conditioning|100% Conditioned apply_logic: - or: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - - - &6_cooling_setpoint_offset_magnitude_0 + - &cooling_setpoint_offset_magnitude_0 option: Cooling Setpoint Offset Magnitude|0F apply_logic: - or: - *logic_ducted_hvac_no_ashp - - *logic_ductless_hvac_no_mshp - - - &7_cooling_setpoint_offset_period_none + - *logic_ductless_hvac_no_mshp + - &cooling_setpoint_offset_period_none option: Cooling Setpoint Offset Period|None apply_logic: - or: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - - - &9_heating_setpoint_offset_magnitude_0 + - &heating_setpoint_offset_magnitude_0 option: Heating Setpoint Offset Magnitude|0F apply_logic: - or: - *logic_ducted_hvac_no_ashp - - *logic_ductless_hvac_no_mshp - - - &10_heating_setpoint_offset_period_none + - *logic_ductless_hvac_no_mshp + - &heating_setpoint_offset_period_none option: Heating Setpoint Offset Period|None apply_logic: - or: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - #### 1.0 Common Options For Heat Pump with existing backup, 12 options #### + + #### 1.0 Common Options For Heat Pump with existing backup, 8 options #### - &hp_exist_bkup_heating_fuel option: Heating Fuel|Electricity apply_logic: @@ -128,7 +126,9 @@ references: option: HVAC Cooling Efficiency|Ducted Heat Pump apply_logic: &logic_ducted_hvac_no_ashp_no_shared_sys - HVAC Has Ducts|Yes - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity ASHP - HVAC Has Shared System|None @@ -136,7 +136,9 @@ references: option: HVAC Cooling Efficiency|Non-Ducted Heat Pump apply_logic: &logic_ductless_hvac_no_mshp_no_shared_sys - HVAC Has Ducts|No - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity MSHP - HVAC Has Shared System|None @@ -175,20 +177,16 @@ references: - *logic_ducted_hvac_no_ashp_no_shared_sys - *logic_ductless_hvac_no_mshp_no_shared_sys - #### 1.1 Electric Resistance Heating, 10 options #### - - &1_electric_resistance_heating_heating_fuel - option: Heating Fuel|Electricity - apply_logic: - - not: Heating Fuel|None - - - &6_electric_resistance_heating_heating_eff_boiler + #### 1.1 Electric Resistance Heating, 6 options #### + - *heating_fuel + - &electric_resistance_heating_heating_eff_boiler option: HVAC Heating Efficiency|Electric Boiler, 100% AFUE apply_logic: &apply_logic_fuel_boiler - or: - HVAC Heating Efficiency|Fuel Boiler, 76% AFUE - HVAC Heating Efficiency|Fuel Boiler, 80% AFUE - HVAC Heating Efficiency|Fuel Boiler, 90% AFUE - - &7_electric_resistance_heating_heating_eff_fuel_furnace + - &electric_resistance_heating_heating_eff_fuel_furnace option: HVAC Heating Efficiency|Electric Furnace, 100% AFUE apply_logic: &apply_logic_fuel_furnace - or: @@ -196,28 +194,29 @@ references: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - - &8_electric_resistance_heating_heating_eff_wall_floor_furnace + - &electric_resistance_heating_heating_eff_wall_floor_furnace option: HVAC Heating Efficiency|Electric Wall Furnace, 100% AFUE apply_logic: &apply_logic_fuel_wall_floor_furnace - or: - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 60% AFUE - HVAC Heating Efficiency|Fuel Wall/Floor Furnace, 68% AFUE - - - &9_electric_resistance_hvac_shared_eff_shared_heating_only + - &electric_resistance_hvac_shared_eff_shared_heating_only option: HVAC Shared Efficiencies|Boiler Baseboards Heating Only, Electricity apply_logic: - HVAC Shared Efficiencies|Boiler Baseboards Heating Only, Fuel - - &10_electric_resistance_hvac_shared_eff_shared_heating_cooling + - &electric_resistance_hvac_shared_eff_shared_heating_cooling option: HVAC Shared Efficiencies|Fan Coil Heating and Cooling, Electricity apply_logic: - HVAC Shared Efficiencies|Fan Coil Heating and Cooling, Fuel #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - &1_fed_min_ashp_ducted + - &fed_min_ashp_ducted option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing # same as base option apply_logic: - HVAC Has Ducts|Yes - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity ASHP costs: &costs_ashp_ducted_8-82_HSPF # Source: Custom regression by Brennan Less. Ducted heat pump project costs were regressed on nameplate tons and HSPF, @@ -229,11 +228,13 @@ references: multiplier: Size, Heating System Primary (kBtu/h) lifetime: &lifetime_HP 15 - - &2_fed_min_mshp_ductless + - &fed_min_mshp_ductless option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing # federal minimum is SEER 14.3, but 14.5 is lowest SEER in baseline ResStock apply_logic: - HVAC Has Ducts|No - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity MSHP costs: &costs_mshp_ductless_8-33_HSPF # Source: Custom regression by Brennan Less. Ductless heat pump project costs were regressed on nameplate tons, @@ -249,7 +250,7 @@ references: multiplier: Size, Heating System Primary (kBtu/h) lifetime: *lifetime_HP - #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### + #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup, 32 options #### ##ASHP non-ducted heating## - &fed_min_ashp_exist_backup_no_shared_ducts option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing @@ -466,16 +467,21 @@ references: apply_logic: - HVAC Has Shared System|None - HVAC Has Ducts|No + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity MSHP costs: *costs_mshp_ductless_8-33_HSPF lifetime: *lifetime_HP #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - &1_high_eff_ashp_ducted + - &high_eff_ashp_ducted option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing apply_logic: - HVAC Has Ducts|Yes - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity ASHP costs: &costs_ashp_ducted_SEER_20_11_HSPF # Source: Custom regression by Brennan Less. Ducted heat pump project costs were regressed on nameplate tons and HSPF, @@ -487,11 +493,13 @@ references: multiplier: Size, Heating System Primary (kBtu/h) lifetime: *lifetime_HP - - &2_high_eff_mshp_ductless + - &high_eff_mshp_ductless option: HVAC Heating Efficiency|MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing apply_logic: - HVAC Has Ducts|No - - not: Heating Fuel|None + - not: + - Heating Fuel|None + - HVAC Cooling Type|None - not: HVAC Heating Type And Fuel|Electricity MSHP costs: &costs_mshp_ductless_SEER_20_11_HSPF # Source: Custom regression by Brennan Less. Ductless heat pump project costs were regressed on nameplate tons, @@ -507,17 +515,15 @@ references: multiplier: Size, Heating System Primary (kBtu/h) lifetime: *lifetime_HP - #### 2.1 Electric Water Heating, 4 options #### - - &1_water_heater_fuel - option: Water Heater Fuel|Electricity - - &2_water_heater_fuel_eff_premium + #### 2.1 Electric Water Heating, 3 options #### + - &water_heater_fuel_eff_premium option: Water Heater Efficiency|Electric Premium apply_logic: - or: - Water Heater Efficiency|Fuel Oil Premium - Water Heater Efficiency|Natural Gas Premium - Water Heater Efficiency|Propane Premium - - &3_water_heater_fuel_eff_standard + - &water_heater_fuel_eff_standard option: Water Heater Efficiency|Electric Standard apply_logic: - or: @@ -526,17 +532,15 @@ references: - Water Heater Efficiency|Propane Standard - Water Heater Efficiency|FIXME Fuel Oil Indirect - Water Heater Efficiency|Other Fuel - - &4_water_heater_fuel_eff_tankless + - &water_heater_fuel_eff_tankless option: Water Heater Efficiency|Electric Tankless apply_logic: - or: - Water Heater Efficiency|Natural Gas Tankless - Water Heater Efficiency|Propane Tankless - #### 2.2 240V HPWH, 4 options #### - - &1_water_heater_fuel_240V_hpwh - option: Water Heater Fuel|Electricity - - &2_240V_hpwh_50_gal + #### 2.2 240V HPWH, 3 options #### + - &240V_hpwh_50_gal option: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF apply_logic: - not: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF @@ -547,16 +551,18 @@ references: costs: - value: 2712.82 # Median installed cost for 50 gal heat pump water heaters in Less et al. https://doi.org/10.20357/B7FP4D, inflation adjusted with 1.21 factor multiplier: Fixed (1) - - &3_240V_hpwh_66_gal + - &240V_hpwh_66_gal option: Water Heater Efficiency|Electric Heat Pump, 66 gal, 3.35 UEF apply_logic: + - not: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF - Bedrooms|4 costs: - value: 3736.48 # Interpolated between 50 gal and 80 gal HPWH costs in Less et al. https://doi.org/10.20357/B7FP4D, inflation adjusted with 1.21 factor multiplier: Fixed (1) - - &4_240V_hpwh_80_gal + - &240V_hpwh_80_gal option: Water Heater Efficiency|Electric Heat Pump, 80 gal, 3.45 UEF apply_logic: + - not: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF - Bedrooms|5 costs: - value: 4631.88 # Median installed cost for 80 gal heat pump water heaters in Less et al. https://doi.org/10.20357/B7FP4D, inflation adjusted with 1.21 factor @@ -588,24 +594,22 @@ references: - Clothes Dryer|Propane #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - &1_electric_pool_heaters + - &electric_pool_heaters option: Misc Pool Heater|Electricity apply_logic: - or: - Misc Pool Heater|Natural Gas - - Misc Pool Heater|Other Fuel costs: - value: 4590 # https://lesliespool.com/jacuzzi-127000-btu-pro-grade-electric-pool-heat-pump/85451.html # installation $310 - varies on state and zip code between 228 and 400 USD # tax 7% multiplier: Fixed (1) lifetime: 15 - - &2_electric_spa_heaters + - &electric_spa_heaters option: Misc Hot Tub Spa|Electricity apply_logic: - or: - Misc Hot Tub Spa|Natural Gas - - Misc Hot Tub Spa|Other Fuel costs: - value: 2760 # https://lesliespool.com/raypak-model-0018-e3t-electric-3-series-titanium-pool-spa-heater---18kw---61419-btu-hr/382735.html # installation $310 - varies on state and zip code between 228 and 400 USD @@ -613,8 +617,8 @@ references: multiplier: Fixed (1) lifetime: 15 - #### 6 Envelope, 10 options #### - - &1_attic_insulation_IECC_CZ1A + #### 6 Envelope, 12 options #### + - &attic_insulation_IECC_CZ1A option: Insulation Ceiling|R-30 apply_logic: - ASHRAE IECC Climate Zone 2004|1A @@ -632,7 +636,7 @@ references: # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.1545 multiplier: Floor Area, Attic (ft^2) lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - &attic_insulation_IECC_CZ2A-2B-3A-3B-3C option: Insulation Ceiling|R-49 apply_logic: - or: @@ -657,7 +661,7 @@ references: # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 0.1545 multiplier: Floor Area, Attic (ft^2) lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B + - &attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK option: Insulation Ceiling|R-60 apply_logic: - or: @@ -670,6 +674,8 @@ references: - ASHRAE IECC Climate Zone 2004|6B - ASHRAE IECC Climate Zone 2004|7A - ASHRAE IECC Climate Zone 2004|7B + - ASHRAE IECC Climate Zone 2004|7AK + - ASHRAE IECC Climate Zone 2004|8AK - Geometry Attic Type|Vented Attic - or: - Insulation Ceiling|Uninsulated @@ -689,7 +695,7 @@ references: lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf # General air sealing - 30% total reduction in ACH50 for homes with greater than 10 ACH50 # 30% is consistent with median reduction documented in https://doi.org/10.20357/B7FP4D - - &4_infiltration_30pct_reduction + - &infiltration_30pct_reduction option: Infiltration Reduction|30% apply_logic: - or: @@ -698,75 +704,78 @@ references: - Infiltration|30 ACH50 - Infiltration|25 ACH50 - Infiltration|20 ACH50 - - Infiltration|18.5 ACH50 - Infiltration|15 ACH50 - - Infiltration|11.25 ACH50 costs: - value: 0.53 # from LBNL data for general air sealing (https://doi.org/10.20357/B7FP4D). # Interpolated between 20% and 40% reductions to get $0.44/ft2, # then used 1.2052 multiplier to inflate from Jan 2019 to April 2023 https://www.bls.gov/data/inflation_calculator.htm multiplier: Floor Area, Conditioned (ft^2) lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &5_ducts_category1 #improving leakage a lot, and insulation + - &ducts_category1 option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 apply_logic: or: - Duct Leakage and Insulation|30% Leakage to Outside, Uninsulated - Duct Leakage and Insulation|30% Leakage to Outside, R-4 costs: - - value: 3.08 # 2.2 $/(ft^2) is the mid-value from REMDB, 30% Leakage, Uninsulated to 10% Leakage, R-8 - # https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2145&bcId=6185 - # REMDB doesn't have the data for 30% Leakage, R-4 and 30% Leakage, R-6 to 10% Leakage, R-8 - # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 2.2 + - value: 3.09 multiplier: Duct Unconditioned Surface Area (ft^2) - lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &6_ducts_category2 #improving leakage a lot only + lifetime: 60 + - &ducts_category2 option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 apply_logic: or: - Duct Leakage and Insulation|30% Leakage to Outside, R-8 costs: - - value: 1.134 # 0.81 $/(ft^2) is Mid-value from REMDB https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2143&bcId=6187 - # apply inflation factor 1.4 (Jan 2010 to Apr 2023) + - value: 1.13 # multiplier: Duct Unconditioned Surface Area (ft^2) - lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &7_ducts_category3 #improving leakage some, and insulation + lifetime: 60 + - &ducts_category3 + option: Duct Leakage and Insulation|10% Leakage to Outside, R-6 + apply_logic: + or: + - Duct Leakage and Insulation|30% Leakage to Outside, R-6 + costs: + - value: 1.13 + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 + - &ducts_category4 option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 apply_logic: or: - Duct Leakage and Insulation|20% Leakage to Outside, Uninsulated - Duct Leakage and Insulation|20% Leakage to Outside, R-4 costs: - - value: 2.52 # 1.8 $/(ft^2) is Mid-value from REMDB, 20% Leakage, Uninsulated to 10% Leakage, R-8 - # https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2145&bcId=6716 - # REMDB doesn't have the data for 20% Leakage, R-4 and 20% Leakage, R-6 to 10% Leakage, R-8 - # apply inflation factor 1.4 (Jan 2010 to Apr 2023) to 1.8 + - value: 2.52 multiplier: Duct Unconditioned Surface Area (ft^2) - lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &8_ducts_category4 #improving leakage some only + lifetime: 60 + - &ducts_category5 option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 apply_logic: - or: - - Duct Leakage and Insulation|20% Leakage to Outside, R-8 + - Duct Leakage and Insulation|20% Leakage to Outside, R-8 costs: - - value: 0.56 # 0.4 $/(ft^2) is the Mid-value from REMDB https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2143&bcId=6718 - # apply inflation factor 1.4 (Jan 2010 to Apr 2023) + - value: 0.56 multiplier: Duct Unconditioned Surface Area (ft^2) - lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &9_ducts_category5 #improving insulation only + lifetime: 60 + - &ducts_category6 + option: Duct Leakage and Insulation|10% Leakage to Outside, R-6 + apply_logic: + - Duct Leakage and Insulation|20% Leakage to Outside, R-6 + costs: + - value: 0.56 + multiplier: Duct Unconditioned Surface Area (ft^2) + lifetime: 60 + - &ducts_category7 #improving insulation only option: Duct Leakage and Insulation|10% Leakage to Outside, R-8 apply_logic: or: - Duct Leakage and Insulation|10% Leakage to Outside, Uninsulated - Duct Leakage and Insulation|10% Leakage to Outside, R-4 costs: - - value: 1.96 # 1.4 $/(ft^2) Mid-value from REMDB, 10% Leakage, Uninsulated to 10% Leakage, R-8 - # https://remdb.nrel.gov/measures?group_id=2&component_type_id=401&actionId=2144&bcId=6725 - # REMDB doesn't have the data for 10% Leakage, R-4 and 10% Leakage, R-6 to 10% Leakage, R-8 - # apply inflation factor 1.4 (Jan 2010 to Apr 2023) + - value: 1.96 multiplier: Duct Unconditioned Surface Area (ft^2) - lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf - - &10_Drill_and_fill + lifetime: 60 # + - &drill_and_fill option: Insulation Wall|Wood Stud, R-13 apply_logic: - Insulation Wall|Wood Stud, Uninsulated @@ -781,187 +790,180 @@ references: upgrades: - upgrade_name: 1.1 Inefficient Electrification options: - #### 1.1 Electric Resistance Heating 10 options #### - - *1_electric_resistance_heating_heating_fuel - - *6_electric_resistance_heating_heating_eff_boiler - - *7_electric_resistance_heating_heating_eff_fuel_furnace - - *8_electric_resistance_heating_heating_eff_wall_floor_furnace - - *9_electric_resistance_hvac_shared_eff_shared_heating_only - - *10_electric_resistance_hvac_shared_eff_shared_heating_cooling - #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + #### 1.1 Electric Resistance Heating 6 options #### + - *heating_fuel + - *electric_resistance_heating_heating_eff_boiler + - *electric_resistance_heating_heating_eff_fuel_furnace + - *electric_resistance_heating_heating_eff_wall_floor_furnace + - *electric_resistance_hvac_shared_eff_shared_heating_only + - *electric_resistance_hvac_shared_eff_shared_heating_cooling + #### 2.1 Electric Water Heating, 3 options #### + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.2 BAU Electrification options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *1_fed_min_ashp_ducted - - *2_fed_min_mshp_ductless - #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 3 options #### + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.3 BAU Electrification with HPWH options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *1_fed_min_ashp_ducted - - *2_fed_min_mshp_ductless - #### 2.2 240V HPWH, 4 options #### - - *1_water_heater_fuel_240V_hpwh - - *2_240V_hpwh_50_gal - - *3_240V_hpwh_66_gal - - *4_240V_hpwh_80_gal + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless + #### 2.2 240V HPWH, 3 options #### + - *240V_hpwh_50_gal + - *240V_hpwh_66_gal + - *240V_hpwh_80_gal #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.4 High Efficiency Space Heating Electrification options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *1_high_eff_ashp_ducted - - *2_high_eff_mshp_ductless - #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless + #### 2.1 Electric Water Heating, 3 options #### + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.5 High Efficiency Space Heating Electrification With HPWH options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *1_high_eff_ashp_ducted - - *2_high_eff_mshp_ductless - #### 2.2 240V HPWH, 4 options #### - - *1_water_heater_fuel_240V_hpwh - - *2_240V_hpwh_50_gal - - *3_240V_hpwh_66_gal - - *4_240V_hpwh_80_gal + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless + #### 2.2 240V HPWH, 3 options #### + - *240V_hpwh_50_gal + - *240V_hpwh_66_gal + - *240V_hpwh_80_gal #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.6. Low-voltage Electrification options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *1_fed_min_ashp_ducted - - *2_fed_min_mshp_ductless + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless #### 2.1 Electric Water Heating, 4 options #### ##TO DO evise it to 120V HPWH - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.7. High Efficiency and Low-voltage Electrification options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *1_high_eff_ashp_ducted - - *2_high_eff_mshp_ductless - #### 2.2 240V HPWH, 4 options #### ## TO DO revise to 120V HPWH - - *1_water_heater_fuel_240V_hpwh - - *2_240V_hpwh_50_gal - - *3_240V_hpwh_66_gal - - *4_240V_hpwh_80_gal + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless + #### 2.2 240V HPWH, 3 options #### ## TO DO revise to 120V HPWH + - *240V_hpwh_50_gal + - *240V_hpwh_66_gal + - *240V_hpwh_80_gal #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 1.8 BAU Electrification with Existing Fuel Backup options: @@ -974,7 +976,7 @@ upgrades: - *hp_exist_bkup_cooling_setpoint_offset_period_none - *hp_exist_bkup_heating_setpoint_offset_magnitude_0 - *hp_exist_bkup_heating_setpoint_offset_period_none - #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### + #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup, 32 options #### - *fed_min_ashp_exist_backup_no_shared_ducts - *secondary_heating_type_fuel_natural_gas - *secondary_heating_type_fuel_propane @@ -1007,240 +1009,245 @@ upgrades: - *fed_min_ashp_exist_backup_shared_ducts_92-5_of - *fed_min_ashp_exist_backup_shared_ducts_electricity - *fed_min_mshp_exist_backup - #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + #### 2.1 Electric Water Heating, 3 options #### + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters + - *electric_pool_heaters + - *electric_spa_heaters - upgrade_name: 2.1. BAU Electrification with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *1_fed_min_ashp_ducted - - *2_fed_min_mshp_ductless - #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 3 options #### + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill - upgrade_name: 2.2 BAU Electrification with HPWH with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *1_fed_min_ashp_ducted - - *2_fed_min_mshp_ductless - #### 2.2 240V HPWH, 4 options #### - - *1_water_heater_fuel_240V_hpwh - - *2_240V_hpwh_50_gal - - *3_240V_hpwh_66_gal - - *4_240V_hpwh_80_gal + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless + #### 2.2 240V HPWH, 3 options #### + - *240V_hpwh_50_gal + - *240V_hpwh_66_gal + - *240V_hpwh_80_gal #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill - upgrade_name: 2.3 High Efficiency Space Heating Electrification with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *1_high_eff_ashp_ducted - - *2_high_eff_mshp_ductless + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill - upgrade_name: 2.4 High Efficiency Space Heating Electrification With HPWH with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *1_high_eff_ashp_ducted - - *2_high_eff_mshp_ductless + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless #### 2.2 240V HPWH, 4 options #### - - *1_water_heater_fuel_240V_hpwh - - *2_240V_hpwh_50_gal - - *3_240V_hpwh_66_gal - - *4_240V_hpwh_80_gal + - *240V_hpwh_50_gal + - *240V_hpwh_66_gal + - *240V_hpwh_80_gal #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill - upgrade_name: 2.5 Low-voltage Electrification with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *1_fed_min_ashp_ducted - - *2_fed_min_mshp_ductless - #### 2.1 Electric Water Heating, 4 options #### ##TO DO evise it to 120V HPWH - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless + #### 2.1 Electric Water Heating, 3 options #### ##TO DO evise it to 120V HPWH + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill - upgrade_name: 2.6 High Efficiency and Low-voltage Electrification with Envelope options: - #### 1.0 Common Options For Heat Pump, 12 options #### - - *1_heating_fuel - - *2_cooling_efficiency_ducted - - *3_cooling_efficiency_ductless - - *4_100_percent_conditioned - - *6_cooling_setpoint_offset_magnitude_0 - - *7_cooling_setpoint_offset_period_none - - *9_heating_setpoint_offset_magnitude_0 - - *10_heating_setpoint_offset_period_none + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *1_high_eff_ashp_ducted - - *2_high_eff_mshp_ductless - #### 2.2 240V HPWH, 4 options #### ## TO DO revise to 120V HPWH - - *1_water_heater_fuel_240V_hpwh - - *2_240V_hpwh_50_gal - - *3_240V_hpwh_66_gal - - *4_240V_hpwh_80_gal + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless + #### 2.2 240V HPWH, 3 options #### ## TO DO revise to 120V HPWH + - *240V_hpwh_50_gal + - *240V_hpwh_66_gal + - *240V_hpwh_80_gal #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill - upgrade_name: 2.7 BAU Electrification with Existing Fuel Backup with Envelope options: @@ -1253,7 +1260,7 @@ upgrades: - *hp_exist_bkup_cooling_setpoint_offset_period_none - *hp_exist_bkup_heating_setpoint_offset_magnitude_0 - *hp_exist_bkup_heating_setpoint_offset_period_none - #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup #### + #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup, 32 options #### - *fed_min_ashp_exist_backup_no_shared_ducts - *secondary_heating_type_fuel_natural_gas - *secondary_heating_type_fuel_propane @@ -1286,28 +1293,29 @@ upgrades: - *fed_min_ashp_exist_backup_shared_ducts_92-5_of - *fed_min_ashp_exist_backup_shared_ducts_electricity - *fed_min_mshp_exist_backup - #### 2.1 Electric Water Heating, 4 options #### - - *1_water_heater_fuel - - *2_water_heater_fuel_eff_premium - - *3_water_heater_fuel_eff_standard - - *4_water_heater_fuel_eff_tankless + #### 2.1 Electric Water Heating, 3 options #### + - *water_heater_fuel_eff_premium + - *water_heater_fuel_eff_standard + - *water_heater_fuel_eff_tankless #### 3 Electric Resistance Cooking, 1 option #### - *electric_resistance_cooking #### 4 Electric Clothes Dryer, 1 options #### - *clothes_dryer_electric #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *1_electric_pool_heaters - - *2_electric_spa_heaters - #### 6 Envelope, 10 options #### - - *1_attic_insulation_IECC_CZ1A - - *2_attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *3_attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B - - *4_infiltration_30pct_reduction - - *5_ducts_category1 - - *7_ducts_category3 - - *8_ducts_category4 - - *9_ducts_category5 - - *10_Drill_and_fill + - *electric_pool_heaters + - *electric_spa_heaters + #### 6 Envelope, 12 options #### + - *attic_insulation_IECC_CZ1A + - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C + - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK + - *infiltration_30pct_reduction + - *ducts_category1 + - *ducts_category3 + - *ducts_category4 + - *ducts_category5 + - *ducts_category6 + - *ducts_category7 + - *drill_and_fill eagle: n_jobs: 3 diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index bdbb8bb9ab..80df3b1666 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -12989,7 +12989,7 @@ Windows "Triple, Low-E, Non-metal, Air, L-Gain" ResStockArguments window_ufactor Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylight_ufactor=0.37 skylight_shgc=0.3 skylight_storm_type=auto window_exterior_shading_summer=auto window_exterior_shading_winter=auto window_natvent_availability=auto window_shading_summer_season=auto Windows Void Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 -HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=other fuel +HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental @@ -13005,7 +13005,7 @@ HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArg HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental @@ -13017,5 +13017,5 @@ HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backu HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From fd00cd5ef1554e9837dd133b51832e071d2251ca Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 14 Feb 2024 22:22:34 -0700 Subject: [PATCH 12/19] revise yml --- resources/options_lookup.tsv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 80df3b1666..9f6819e04e 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -13009,11 +13009,11 @@ HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backu HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=other fuel heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental From 9a0b6c9919bc495f858107f867c808f84670876e Mon Sep 17 00:00:00 2001 From: Yingli Lou Date: Fri, 16 Feb 2024 14:14:37 -0700 Subject: [PATCH 13/19] hot tub and pool heater --- project_national/panel_upgrades.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index f049c317e4..5d4f3c99c3 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -23,13 +23,13 @@ workflow_generator: simulation_control_run_period_end_day_of_month: 31 simulation_control_run_period_calendar_year: 2007 - emissions: - - scenario_name: LRMER_MidCase_15 - type: CO2e - elec_folder: data/cambium/2022/LRMER_MidCase_15 + #emissions: + # - scenario_name: LRMER_MidCase_15 + # type: CO2e + # elec_folder: data/cambium/2022/LRMER_MidCase_15 - utility_bills: - - scenario_name: Bills + #utility_bills: + # - scenario_name: Bills simulation_output_report: timeseries_frequency: timestep @@ -599,6 +599,7 @@ references: apply_logic: - or: - Misc Pool Heater|Natural Gas + - Misc Pool Heater|Other Fuel costs: - value: 4590 # https://lesliespool.com/jacuzzi-127000-btu-pro-grade-electric-pool-heat-pump/85451.html # installation $310 - varies on state and zip code between 228 and 400 USD @@ -610,6 +611,7 @@ references: apply_logic: - or: - Misc Hot Tub Spa|Natural Gas + - Misc Pool Heater|Other Fuel costs: - value: 2760 # https://lesliespool.com/raypak-model-0018-e3t-electric-3-series-titanium-pool-spa-heater---18kw---61419-btu-hr/382735.html # installation $310 - varies on state and zip code between 228 and 400 USD From decfee843b6459b5811e386ed1c169fd910f2802 Mon Sep 17 00:00:00 2001 From: Yingli Lou Date: Mon, 26 Feb 2024 13:52:16 -0700 Subject: [PATCH 14/19] small run --- measures/ApplyUpgrade/measure.xml | 400195 +++++++++++++++- measures/ApplyUpgrade/resources/constants.rb | 4 +- measures/BuildExistingModel/measure.rb | 2 +- project_national/national_baseline.yml | 10 +- project_national/panel_upgrades.yml | 168 +- resources/options_lookup.tsv | 2 +- 6 files changed, 399373 insertions(+), 1008 deletions(-) diff --git a/measures/ApplyUpgrade/measure.xml b/measures/ApplyUpgrade/measure.xml index 5cdd21d1c0..2831a40f0b 100644 --- a/measures/ApplyUpgrade/measure.xml +++ b/measures/ApplyUpgrade/measure.xml @@ -3,8 +3,8 @@ 3.1 apply_upgrade 33f1654c-f734-43d1-b35d-9d2856e41b5a - 21302f9b-57a8-45d7-b393-c1a1eee78aa5 - 2023-11-28T23:34:10Z + 695f1987-393d-4e17-a232-ed701b00a1c7 + 2024-02-16T21:31:38Z 9339BE01 ApplyUpgrade Apply Upgrade @@ -260,44 +260,398870 @@
+ + option_1_cost_3_value + Option 1 Cost 3 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_3_multiplier + Option 1 Cost 3 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_4_value + Option 1 Cost 4 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_4_multiplier + Option 1 Cost 4 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_5_value + Option 1 Cost 5 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_5_multiplier + Option 1 Cost 5 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_6_value + Option 1 Cost 6 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_6_multiplier + Option 1 Cost 6 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_7_value + Option 1 Cost 7 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_7_multiplier + Option 1 Cost 7 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_8_value + Option 1 Cost 8 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_8_multiplier + Option 1 Cost 8 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_9_value + Option 1 Cost 9 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_9_multiplier + Option 1 Cost 9 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_10_value + Option 1 Cost 10 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_10_multiplier + Option 1 Cost 10 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_11_value + Option 1 Cost 11 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_11_multiplier + Option 1 Cost 11 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_12_value + Option 1 Cost 12 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_12_multiplier + Option 1 Cost 12 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_13_value + Option 1 Cost 13 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_13_multiplier + Option 1 Cost 13 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_14_value + Option 1 Cost 14 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_14_multiplier + Option 1 Cost 14 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_15_value + Option 1 Cost 15 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_15_multiplier + Option 1 Cost 15 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_16_value + Option 1 Cost 16 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_16_multiplier + Option 1 Cost 16 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_17_value + Option 1 Cost 17 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_17_multiplier + Option 1 Cost 17 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_18_value + Option 1 Cost 18 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_18_multiplier + Option 1 Cost 18 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_19_value + Option 1 Cost 19 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_19_multiplier + Option 1 Cost 19 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_20_value + Option 1 Cost 20 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_20_multiplier + Option 1 Cost 20 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_21_value + Option 1 Cost 21 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_21_multiplier + Option 1 Cost 21 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_22_value + Option 1 Cost 22 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_22_multiplier + Option 1 Cost 22 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_23_value + Option 1 Cost 23 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_23_multiplier + Option 1 Cost 23 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_24_value + Option 1 Cost 24 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_24_multiplier + Option 1 Cost 24 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_25_value + Option 1 Cost 25 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_25_multiplier + Option 1 Cost 25 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_26_value + Option 1 Cost 26 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_26_multiplier + Option 1 Cost 26 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_27_value + Option 1 Cost 27 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_27_multiplier + Option 1 Cost 27 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_28_value + Option 1 Cost 28 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_28_multiplier + Option 1 Cost 28 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_29_value + Option 1 Cost 29 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_29_multiplier + Option 1 Cost 29 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_30_value + Option 1 Cost 30 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_30_multiplier + Option 1 Cost 30 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_31_value + Option 1 Cost 31 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_31_multiplier + Option 1 Cost 31 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_32_value + Option 1 Cost 32 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_32_multiplier + Option 1 Cost 32 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_33_value + Option 1 Cost 33 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_33_multiplier + Option 1 Cost 33 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_34_value + Option 1 Cost 34 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_34_multiplier + Option 1 Cost 34 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_35_value + Option 1 Cost 35 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_35_multiplier + Option 1 Cost 35 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_36_value + Option 1 Cost 36 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_36_multiplier + Option 1 Cost 36 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_37_value + Option 1 Cost 37 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_37_multiplier + Option 1 Cost 37 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_38_value + Option 1 Cost 38 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_38_multiplier + Option 1 Cost 38 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_39_value + Option 1 Cost 39 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_39_multiplier + Option 1 Cost 39 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_40_value + Option 1 Cost 40 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_40_multiplier + Option 1 Cost 40 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_41_value + Option 1 Cost 41 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_41_multiplier + Option 1 Cost 41 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_42_value + Option 1 Cost 42 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_42_multiplier + Option 1 Cost 42 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_43_value + Option 1 Cost 43 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_43_multiplier + Option 1 Cost 43 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_44_value + Option 1 Cost 44 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_44_multiplier + Option 1 Cost 44 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_45_value + Option 1 Cost 45 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_45_multiplier + Option 1 Cost 45 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_46_value + Option 1 Cost 46 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_46_multiplier + Option 1 Cost 46 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_47_value + Option 1 Cost 47 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_47_multiplier + Option 1 Cost 47 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_48_value + Option 1 Cost 48 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_48_multiplier + Option 1 Cost 48 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_49_value + Option 1 Cost 49 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_49_multiplier + Option 1 Cost 49 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_50_value + Option 1 Cost 50 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_50_multiplier + Option 1 Cost 50 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_51_value + Option 1 Cost 51 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_51_multiplier + Option 1 Cost 51 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_52_value + Option 1 Cost 52 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_52_multiplier + Option 1 Cost 52 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_53_value + Option 1 Cost 53 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_53_multiplier + Option 1 Cost 53 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_54_value + Option 1 Cost 54 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_54_multiplier + Option 1 Cost 54 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_55_value + Option 1 Cost 55 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_55_multiplier + Option 1 Cost 55 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_56_value + Option 1 Cost 56 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_56_multiplier + Option 1 Cost 56 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_57_value + Option 1 Cost 57 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_57_multiplier + Option 1 Cost 57 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_58_value + Option 1 Cost 58 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_58_multiplier + Option 1 Cost 58 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_59_value + Option 1 Cost 59 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_59_multiplier + Option 1 Cost 59 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_1_cost_60_value + Option 1 Cost 60 Value + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_1_cost_60_multiplier + Option 1 Cost 60 Multiplier + Total option 1 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + option_1_lifetime Option 1 Lifetime The option lifetime. Double - years + years + false + false + + + option_2 + Option 2 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_2_apply_logic + Option 2 Apply Logic + Logic that specifies if the Option 2 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_2_cost_1_value + Option 2 Cost 1 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_1_multiplier + Option 2 Cost 1 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_2_value + Option 2 Cost 2 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_2_multiplier + Option 2 Cost 2 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_3_value + Option 2 Cost 3 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_3_multiplier + Option 2 Cost 3 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_4_value + Option 2 Cost 4 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_4_multiplier + Option 2 Cost 4 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_5_value + Option 2 Cost 5 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_5_multiplier + Option 2 Cost 5 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_6_value + Option 2 Cost 6 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_6_multiplier + Option 2 Cost 6 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_7_value + Option 2 Cost 7 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_7_multiplier + Option 2 Cost 7 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_8_value + Option 2 Cost 8 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_8_multiplier + Option 2 Cost 8 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_9_value + Option 2 Cost 9 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_9_multiplier + Option 2 Cost 9 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_10_value + Option 2 Cost 10 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_10_multiplier + Option 2 Cost 10 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_11_value + Option 2 Cost 11 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_11_multiplier + Option 2 Cost 11 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_12_value + Option 2 Cost 12 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_12_multiplier + Option 2 Cost 12 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_13_value + Option 2 Cost 13 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_13_multiplier + Option 2 Cost 13 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_14_value + Option 2 Cost 14 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_14_multiplier + Option 2 Cost 14 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_15_value + Option 2 Cost 15 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_15_multiplier + Option 2 Cost 15 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_16_value + Option 2 Cost 16 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_16_multiplier + Option 2 Cost 16 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_17_value + Option 2 Cost 17 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_17_multiplier + Option 2 Cost 17 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_18_value + Option 2 Cost 18 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_18_multiplier + Option 2 Cost 18 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_19_value + Option 2 Cost 19 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_19_multiplier + Option 2 Cost 19 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_20_value + Option 2 Cost 20 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_20_multiplier + Option 2 Cost 20 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_21_value + Option 2 Cost 21 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_21_multiplier + Option 2 Cost 21 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_22_value + Option 2 Cost 22 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_22_multiplier + Option 2 Cost 22 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_23_value + Option 2 Cost 23 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_23_multiplier + Option 2 Cost 23 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_24_value + Option 2 Cost 24 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_24_multiplier + Option 2 Cost 24 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_25_value + Option 2 Cost 25 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_25_multiplier + Option 2 Cost 25 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_26_value + Option 2 Cost 26 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_26_multiplier + Option 2 Cost 26 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_27_value + Option 2 Cost 27 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_27_multiplier + Option 2 Cost 27 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_28_value + Option 2 Cost 28 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_28_multiplier + Option 2 Cost 28 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_29_value + Option 2 Cost 29 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_29_multiplier + Option 2 Cost 29 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_30_value + Option 2 Cost 30 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_30_multiplier + Option 2 Cost 30 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_31_value + Option 2 Cost 31 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_31_multiplier + Option 2 Cost 31 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_32_value + Option 2 Cost 32 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_32_multiplier + Option 2 Cost 32 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_33_value + Option 2 Cost 33 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_33_multiplier + Option 2 Cost 33 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_34_value + Option 2 Cost 34 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_34_multiplier + Option 2 Cost 34 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_35_value + Option 2 Cost 35 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_35_multiplier + Option 2 Cost 35 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_36_value + Option 2 Cost 36 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_36_multiplier + Option 2 Cost 36 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_37_value + Option 2 Cost 37 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_37_multiplier + Option 2 Cost 37 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_38_value + Option 2 Cost 38 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_38_multiplier + Option 2 Cost 38 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_39_value + Option 2 Cost 39 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_39_multiplier + Option 2 Cost 39 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_40_value + Option 2 Cost 40 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_40_multiplier + Option 2 Cost 40 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_41_value + Option 2 Cost 41 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_41_multiplier + Option 2 Cost 41 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_42_value + Option 2 Cost 42 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_42_multiplier + Option 2 Cost 42 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_43_value + Option 2 Cost 43 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_43_multiplier + Option 2 Cost 43 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_44_value + Option 2 Cost 44 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_44_multiplier + Option 2 Cost 44 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_45_value + Option 2 Cost 45 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_45_multiplier + Option 2 Cost 45 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_46_value + Option 2 Cost 46 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_46_multiplier + Option 2 Cost 46 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_47_value + Option 2 Cost 47 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_47_multiplier + Option 2 Cost 47 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_48_value + Option 2 Cost 48 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_48_multiplier + Option 2 Cost 48 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_49_value + Option 2 Cost 49 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_49_multiplier + Option 2 Cost 49 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_50_value + Option 2 Cost 50 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_50_multiplier + Option 2 Cost 50 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_51_value + Option 2 Cost 51 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_51_multiplier + Option 2 Cost 51 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_52_value + Option 2 Cost 52 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_52_multiplier + Option 2 Cost 52 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_53_value + Option 2 Cost 53 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_53_multiplier + Option 2 Cost 53 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_54_value + Option 2 Cost 54 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_54_multiplier + Option 2 Cost 54 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_55_value + Option 2 Cost 55 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_55_multiplier + Option 2 Cost 55 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_56_value + Option 2 Cost 56 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_56_multiplier + Option 2 Cost 56 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_57_value + Option 2 Cost 57 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_57_multiplier + Option 2 Cost 57 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_58_value + Option 2 Cost 58 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_58_multiplier + Option 2 Cost 58 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_59_value + Option 2 Cost 59 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_59_multiplier + Option 2 Cost 59 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_cost_60_value + Option 2 Cost 60 Value + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_2_cost_60_multiplier + Option 2 Cost 60 Multiplier + Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_2_lifetime + Option 2 Lifetime + The option lifetime. + Double + years + false + false + + + option_3 + Option 3 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_3_apply_logic + Option 3 Apply Logic + Logic that specifies if the Option 3 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_3_cost_1_value + Option 3 Cost 1 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_1_multiplier + Option 3 Cost 1 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_2_value + Option 3 Cost 2 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_2_multiplier + Option 3 Cost 2 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_3_value + Option 3 Cost 3 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_3_multiplier + Option 3 Cost 3 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_4_value + Option 3 Cost 4 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_4_multiplier + Option 3 Cost 4 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_5_value + Option 3 Cost 5 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_5_multiplier + Option 3 Cost 5 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_6_value + Option 3 Cost 6 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_6_multiplier + Option 3 Cost 6 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_7_value + Option 3 Cost 7 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_7_multiplier + Option 3 Cost 7 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_8_value + Option 3 Cost 8 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_8_multiplier + Option 3 Cost 8 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_9_value + Option 3 Cost 9 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_9_multiplier + Option 3 Cost 9 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_10_value + Option 3 Cost 10 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_10_multiplier + Option 3 Cost 10 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_11_value + Option 3 Cost 11 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_11_multiplier + Option 3 Cost 11 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_12_value + Option 3 Cost 12 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_12_multiplier + Option 3 Cost 12 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_13_value + Option 3 Cost 13 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_13_multiplier + Option 3 Cost 13 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_14_value + Option 3 Cost 14 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_14_multiplier + Option 3 Cost 14 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_15_value + Option 3 Cost 15 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_15_multiplier + Option 3 Cost 15 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_16_value + Option 3 Cost 16 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_16_multiplier + Option 3 Cost 16 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_17_value + Option 3 Cost 17 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_17_multiplier + Option 3 Cost 17 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_18_value + Option 3 Cost 18 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_18_multiplier + Option 3 Cost 18 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_19_value + Option 3 Cost 19 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_19_multiplier + Option 3 Cost 19 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_20_value + Option 3 Cost 20 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_20_multiplier + Option 3 Cost 20 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_21_value + Option 3 Cost 21 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_21_multiplier + Option 3 Cost 21 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_22_value + Option 3 Cost 22 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_22_multiplier + Option 3 Cost 22 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_23_value + Option 3 Cost 23 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_23_multiplier + Option 3 Cost 23 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_24_value + Option 3 Cost 24 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_24_multiplier + Option 3 Cost 24 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_25_value + Option 3 Cost 25 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_25_multiplier + Option 3 Cost 25 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_26_value + Option 3 Cost 26 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_26_multiplier + Option 3 Cost 26 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_27_value + Option 3 Cost 27 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_27_multiplier + Option 3 Cost 27 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_28_value + Option 3 Cost 28 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_28_multiplier + Option 3 Cost 28 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_29_value + Option 3 Cost 29 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_29_multiplier + Option 3 Cost 29 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_30_value + Option 3 Cost 30 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_30_multiplier + Option 3 Cost 30 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_31_value + Option 3 Cost 31 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_31_multiplier + Option 3 Cost 31 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_32_value + Option 3 Cost 32 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_32_multiplier + Option 3 Cost 32 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_33_value + Option 3 Cost 33 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_33_multiplier + Option 3 Cost 33 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_34_value + Option 3 Cost 34 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_34_multiplier + Option 3 Cost 34 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_35_value + Option 3 Cost 35 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_35_multiplier + Option 3 Cost 35 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_36_value + Option 3 Cost 36 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_36_multiplier + Option 3 Cost 36 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_37_value + Option 3 Cost 37 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_37_multiplier + Option 3 Cost 37 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_38_value + Option 3 Cost 38 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_38_multiplier + Option 3 Cost 38 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_39_value + Option 3 Cost 39 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_39_multiplier + Option 3 Cost 39 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_40_value + Option 3 Cost 40 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_40_multiplier + Option 3 Cost 40 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_41_value + Option 3 Cost 41 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_41_multiplier + Option 3 Cost 41 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_42_value + Option 3 Cost 42 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_42_multiplier + Option 3 Cost 42 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_43_value + Option 3 Cost 43 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_43_multiplier + Option 3 Cost 43 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_44_value + Option 3 Cost 44 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_44_multiplier + Option 3 Cost 44 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_45_value + Option 3 Cost 45 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_45_multiplier + Option 3 Cost 45 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_46_value + Option 3 Cost 46 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_46_multiplier + Option 3 Cost 46 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_47_value + Option 3 Cost 47 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_47_multiplier + Option 3 Cost 47 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_48_value + Option 3 Cost 48 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_48_multiplier + Option 3 Cost 48 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_49_value + Option 3 Cost 49 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_49_multiplier + Option 3 Cost 49 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_50_value + Option 3 Cost 50 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_50_multiplier + Option 3 Cost 50 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_51_value + Option 3 Cost 51 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_51_multiplier + Option 3 Cost 51 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_52_value + Option 3 Cost 52 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_52_multiplier + Option 3 Cost 52 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_53_value + Option 3 Cost 53 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_53_multiplier + Option 3 Cost 53 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_54_value + Option 3 Cost 54 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_54_multiplier + Option 3 Cost 54 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_55_value + Option 3 Cost 55 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_55_multiplier + Option 3 Cost 55 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_56_value + Option 3 Cost 56 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_56_multiplier + Option 3 Cost 56 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_57_value + Option 3 Cost 57 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_57_multiplier + Option 3 Cost 57 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_58_value + Option 3 Cost 58 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_58_multiplier + Option 3 Cost 58 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_59_value + Option 3 Cost 59 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_59_multiplier + Option 3 Cost 59 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_cost_60_value + Option 3 Cost 60 Value + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_3_cost_60_multiplier + Option 3 Cost 60 Multiplier + Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_3_lifetime + Option 3 Lifetime + The option lifetime. + Double + years + false + false + + + option_4 + Option 4 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_4_apply_logic + Option 4 Apply Logic + Logic that specifies if the Option 4 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_4_cost_1_value + Option 4 Cost 1 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_1_multiplier + Option 4 Cost 1 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_2_value + Option 4 Cost 2 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_2_multiplier + Option 4 Cost 2 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_3_value + Option 4 Cost 3 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_3_multiplier + Option 4 Cost 3 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_4_value + Option 4 Cost 4 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_4_multiplier + Option 4 Cost 4 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_5_value + Option 4 Cost 5 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_5_multiplier + Option 4 Cost 5 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_6_value + Option 4 Cost 6 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_6_multiplier + Option 4 Cost 6 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_7_value + Option 4 Cost 7 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_7_multiplier + Option 4 Cost 7 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_8_value + Option 4 Cost 8 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_8_multiplier + Option 4 Cost 8 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_9_value + Option 4 Cost 9 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_9_multiplier + Option 4 Cost 9 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_10_value + Option 4 Cost 10 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_10_multiplier + Option 4 Cost 10 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_11_value + Option 4 Cost 11 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_11_multiplier + Option 4 Cost 11 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_12_value + Option 4 Cost 12 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_12_multiplier + Option 4 Cost 12 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_13_value + Option 4 Cost 13 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_13_multiplier + Option 4 Cost 13 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_14_value + Option 4 Cost 14 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_14_multiplier + Option 4 Cost 14 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_15_value + Option 4 Cost 15 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_15_multiplier + Option 4 Cost 15 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_16_value + Option 4 Cost 16 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_16_multiplier + Option 4 Cost 16 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_17_value + Option 4 Cost 17 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_17_multiplier + Option 4 Cost 17 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_18_value + Option 4 Cost 18 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_18_multiplier + Option 4 Cost 18 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_19_value + Option 4 Cost 19 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_19_multiplier + Option 4 Cost 19 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_20_value + Option 4 Cost 20 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_20_multiplier + Option 4 Cost 20 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_21_value + Option 4 Cost 21 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_21_multiplier + Option 4 Cost 21 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_22_value + Option 4 Cost 22 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_22_multiplier + Option 4 Cost 22 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_23_value + Option 4 Cost 23 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_23_multiplier + Option 4 Cost 23 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_24_value + Option 4 Cost 24 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_24_multiplier + Option 4 Cost 24 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_25_value + Option 4 Cost 25 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_25_multiplier + Option 4 Cost 25 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_26_value + Option 4 Cost 26 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_26_multiplier + Option 4 Cost 26 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_27_value + Option 4 Cost 27 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_27_multiplier + Option 4 Cost 27 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_28_value + Option 4 Cost 28 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_28_multiplier + Option 4 Cost 28 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_29_value + Option 4 Cost 29 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_29_multiplier + Option 4 Cost 29 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_30_value + Option 4 Cost 30 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_30_multiplier + Option 4 Cost 30 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_31_value + Option 4 Cost 31 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_31_multiplier + Option 4 Cost 31 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_32_value + Option 4 Cost 32 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_32_multiplier + Option 4 Cost 32 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_33_value + Option 4 Cost 33 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_33_multiplier + Option 4 Cost 33 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_34_value + Option 4 Cost 34 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_34_multiplier + Option 4 Cost 34 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_35_value + Option 4 Cost 35 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_35_multiplier + Option 4 Cost 35 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_36_value + Option 4 Cost 36 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_36_multiplier + Option 4 Cost 36 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_37_value + Option 4 Cost 37 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_37_multiplier + Option 4 Cost 37 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_38_value + Option 4 Cost 38 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_38_multiplier + Option 4 Cost 38 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_39_value + Option 4 Cost 39 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_39_multiplier + Option 4 Cost 39 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_40_value + Option 4 Cost 40 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_40_multiplier + Option 4 Cost 40 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_41_value + Option 4 Cost 41 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_41_multiplier + Option 4 Cost 41 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_42_value + Option 4 Cost 42 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_42_multiplier + Option 4 Cost 42 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_43_value + Option 4 Cost 43 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_43_multiplier + Option 4 Cost 43 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_44_value + Option 4 Cost 44 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_44_multiplier + Option 4 Cost 44 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_45_value + Option 4 Cost 45 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_45_multiplier + Option 4 Cost 45 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_46_value + Option 4 Cost 46 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_46_multiplier + Option 4 Cost 46 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_47_value + Option 4 Cost 47 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_47_multiplier + Option 4 Cost 47 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_48_value + Option 4 Cost 48 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_48_multiplier + Option 4 Cost 48 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_49_value + Option 4 Cost 49 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_49_multiplier + Option 4 Cost 49 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_50_value + Option 4 Cost 50 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_50_multiplier + Option 4 Cost 50 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_51_value + Option 4 Cost 51 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_51_multiplier + Option 4 Cost 51 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_52_value + Option 4 Cost 52 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_52_multiplier + Option 4 Cost 52 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_53_value + Option 4 Cost 53 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_53_multiplier + Option 4 Cost 53 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_54_value + Option 4 Cost 54 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_54_multiplier + Option 4 Cost 54 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_55_value + Option 4 Cost 55 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_55_multiplier + Option 4 Cost 55 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_56_value + Option 4 Cost 56 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_56_multiplier + Option 4 Cost 56 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_57_value + Option 4 Cost 57 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_57_multiplier + Option 4 Cost 57 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_58_value + Option 4 Cost 58 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_58_multiplier + Option 4 Cost 58 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_59_value + Option 4 Cost 59 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_59_multiplier + Option 4 Cost 59 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_cost_60_value + Option 4 Cost 60 Value + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_4_cost_60_multiplier + Option 4 Cost 60 Multiplier + Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_4_lifetime + Option 4 Lifetime + The option lifetime. + Double + years + false + false + + + option_5 + Option 5 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_5_apply_logic + Option 5 Apply Logic + Logic that specifies if the Option 5 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_5_cost_1_value + Option 5 Cost 1 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_1_multiplier + Option 5 Cost 1 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_2_value + Option 5 Cost 2 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_2_multiplier + Option 5 Cost 2 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_3_value + Option 5 Cost 3 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_3_multiplier + Option 5 Cost 3 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_4_value + Option 5 Cost 4 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_4_multiplier + Option 5 Cost 4 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_5_value + Option 5 Cost 5 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_5_multiplier + Option 5 Cost 5 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_6_value + Option 5 Cost 6 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_6_multiplier + Option 5 Cost 6 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_7_value + Option 5 Cost 7 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_7_multiplier + Option 5 Cost 7 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_8_value + Option 5 Cost 8 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_8_multiplier + Option 5 Cost 8 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_9_value + Option 5 Cost 9 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_9_multiplier + Option 5 Cost 9 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_10_value + Option 5 Cost 10 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_10_multiplier + Option 5 Cost 10 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_11_value + Option 5 Cost 11 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_11_multiplier + Option 5 Cost 11 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_12_value + Option 5 Cost 12 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_12_multiplier + Option 5 Cost 12 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_13_value + Option 5 Cost 13 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_13_multiplier + Option 5 Cost 13 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_14_value + Option 5 Cost 14 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_14_multiplier + Option 5 Cost 14 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_15_value + Option 5 Cost 15 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_15_multiplier + Option 5 Cost 15 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_16_value + Option 5 Cost 16 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_16_multiplier + Option 5 Cost 16 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_17_value + Option 5 Cost 17 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_17_multiplier + Option 5 Cost 17 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_18_value + Option 5 Cost 18 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_18_multiplier + Option 5 Cost 18 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_19_value + Option 5 Cost 19 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_19_multiplier + Option 5 Cost 19 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_20_value + Option 5 Cost 20 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_20_multiplier + Option 5 Cost 20 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_21_value + Option 5 Cost 21 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_21_multiplier + Option 5 Cost 21 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_22_value + Option 5 Cost 22 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_22_multiplier + Option 5 Cost 22 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_23_value + Option 5 Cost 23 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_23_multiplier + Option 5 Cost 23 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_24_value + Option 5 Cost 24 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_24_multiplier + Option 5 Cost 24 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_25_value + Option 5 Cost 25 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_25_multiplier + Option 5 Cost 25 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_26_value + Option 5 Cost 26 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_26_multiplier + Option 5 Cost 26 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_27_value + Option 5 Cost 27 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_27_multiplier + Option 5 Cost 27 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_28_value + Option 5 Cost 28 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_28_multiplier + Option 5 Cost 28 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_29_value + Option 5 Cost 29 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_29_multiplier + Option 5 Cost 29 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_30_value + Option 5 Cost 30 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_30_multiplier + Option 5 Cost 30 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_31_value + Option 5 Cost 31 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_31_multiplier + Option 5 Cost 31 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_32_value + Option 5 Cost 32 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_32_multiplier + Option 5 Cost 32 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_33_value + Option 5 Cost 33 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_33_multiplier + Option 5 Cost 33 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_34_value + Option 5 Cost 34 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_34_multiplier + Option 5 Cost 34 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_35_value + Option 5 Cost 35 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_35_multiplier + Option 5 Cost 35 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_36_value + Option 5 Cost 36 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_36_multiplier + Option 5 Cost 36 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_37_value + Option 5 Cost 37 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_37_multiplier + Option 5 Cost 37 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_38_value + Option 5 Cost 38 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_38_multiplier + Option 5 Cost 38 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_39_value + Option 5 Cost 39 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_39_multiplier + Option 5 Cost 39 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_40_value + Option 5 Cost 40 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_40_multiplier + Option 5 Cost 40 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_41_value + Option 5 Cost 41 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_41_multiplier + Option 5 Cost 41 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_42_value + Option 5 Cost 42 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_42_multiplier + Option 5 Cost 42 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_43_value + Option 5 Cost 43 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_43_multiplier + Option 5 Cost 43 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_44_value + Option 5 Cost 44 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_44_multiplier + Option 5 Cost 44 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_45_value + Option 5 Cost 45 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_45_multiplier + Option 5 Cost 45 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_46_value + Option 5 Cost 46 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_46_multiplier + Option 5 Cost 46 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_47_value + Option 5 Cost 47 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_47_multiplier + Option 5 Cost 47 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_48_value + Option 5 Cost 48 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_48_multiplier + Option 5 Cost 48 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_49_value + Option 5 Cost 49 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_49_multiplier + Option 5 Cost 49 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_50_value + Option 5 Cost 50 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_50_multiplier + Option 5 Cost 50 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_51_value + Option 5 Cost 51 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_51_multiplier + Option 5 Cost 51 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_52_value + Option 5 Cost 52 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_52_multiplier + Option 5 Cost 52 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_53_value + Option 5 Cost 53 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_53_multiplier + Option 5 Cost 53 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_54_value + Option 5 Cost 54 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_54_multiplier + Option 5 Cost 54 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_55_value + Option 5 Cost 55 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_55_multiplier + Option 5 Cost 55 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_56_value + Option 5 Cost 56 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_56_multiplier + Option 5 Cost 56 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_57_value + Option 5 Cost 57 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_57_multiplier + Option 5 Cost 57 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_58_value + Option 5 Cost 58 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_58_multiplier + Option 5 Cost 58 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_59_value + Option 5 Cost 59 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_59_multiplier + Option 5 Cost 59 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_cost_60_value + Option 5 Cost 60 Value + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_5_cost_60_multiplier + Option 5 Cost 60 Multiplier + Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_5_lifetime + Option 5 Lifetime + The option lifetime. + Double + years + false + false + + + option_6 + Option 6 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_6_apply_logic + Option 6 Apply Logic + Logic that specifies if the Option 6 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_6_cost_1_value + Option 6 Cost 1 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_1_multiplier + Option 6 Cost 1 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_2_value + Option 6 Cost 2 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_2_multiplier + Option 6 Cost 2 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_3_value + Option 6 Cost 3 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_3_multiplier + Option 6 Cost 3 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_4_value + Option 6 Cost 4 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_4_multiplier + Option 6 Cost 4 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_5_value + Option 6 Cost 5 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_5_multiplier + Option 6 Cost 5 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_6_value + Option 6 Cost 6 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_6_multiplier + Option 6 Cost 6 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_7_value + Option 6 Cost 7 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_7_multiplier + Option 6 Cost 7 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_8_value + Option 6 Cost 8 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_8_multiplier + Option 6 Cost 8 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_9_value + Option 6 Cost 9 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_9_multiplier + Option 6 Cost 9 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_10_value + Option 6 Cost 10 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_10_multiplier + Option 6 Cost 10 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_11_value + Option 6 Cost 11 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_11_multiplier + Option 6 Cost 11 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_12_value + Option 6 Cost 12 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_12_multiplier + Option 6 Cost 12 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_13_value + Option 6 Cost 13 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_13_multiplier + Option 6 Cost 13 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_14_value + Option 6 Cost 14 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_14_multiplier + Option 6 Cost 14 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_15_value + Option 6 Cost 15 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_15_multiplier + Option 6 Cost 15 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_16_value + Option 6 Cost 16 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_16_multiplier + Option 6 Cost 16 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_17_value + Option 6 Cost 17 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_17_multiplier + Option 6 Cost 17 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_18_value + Option 6 Cost 18 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_18_multiplier + Option 6 Cost 18 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_19_value + Option 6 Cost 19 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_19_multiplier + Option 6 Cost 19 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_20_value + Option 6 Cost 20 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_20_multiplier + Option 6 Cost 20 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_21_value + Option 6 Cost 21 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_21_multiplier + Option 6 Cost 21 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_22_value + Option 6 Cost 22 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_22_multiplier + Option 6 Cost 22 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_23_value + Option 6 Cost 23 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_23_multiplier + Option 6 Cost 23 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_24_value + Option 6 Cost 24 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_24_multiplier + Option 6 Cost 24 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_25_value + Option 6 Cost 25 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_25_multiplier + Option 6 Cost 25 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_26_value + Option 6 Cost 26 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_26_multiplier + Option 6 Cost 26 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_27_value + Option 6 Cost 27 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_27_multiplier + Option 6 Cost 27 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_28_value + Option 6 Cost 28 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_28_multiplier + Option 6 Cost 28 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_29_value + Option 6 Cost 29 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_29_multiplier + Option 6 Cost 29 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_30_value + Option 6 Cost 30 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_30_multiplier + Option 6 Cost 30 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_31_value + Option 6 Cost 31 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_31_multiplier + Option 6 Cost 31 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_32_value + Option 6 Cost 32 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_32_multiplier + Option 6 Cost 32 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_33_value + Option 6 Cost 33 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_33_multiplier + Option 6 Cost 33 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_34_value + Option 6 Cost 34 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_34_multiplier + Option 6 Cost 34 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_35_value + Option 6 Cost 35 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_35_multiplier + Option 6 Cost 35 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_36_value + Option 6 Cost 36 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_36_multiplier + Option 6 Cost 36 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_37_value + Option 6 Cost 37 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_37_multiplier + Option 6 Cost 37 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_38_value + Option 6 Cost 38 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_38_multiplier + Option 6 Cost 38 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_39_value + Option 6 Cost 39 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_39_multiplier + Option 6 Cost 39 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_40_value + Option 6 Cost 40 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_40_multiplier + Option 6 Cost 40 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_41_value + Option 6 Cost 41 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_41_multiplier + Option 6 Cost 41 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_42_value + Option 6 Cost 42 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_42_multiplier + Option 6 Cost 42 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_43_value + Option 6 Cost 43 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_43_multiplier + Option 6 Cost 43 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_44_value + Option 6 Cost 44 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_44_multiplier + Option 6 Cost 44 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_45_value + Option 6 Cost 45 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_45_multiplier + Option 6 Cost 45 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_46_value + Option 6 Cost 46 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_46_multiplier + Option 6 Cost 46 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_47_value + Option 6 Cost 47 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_47_multiplier + Option 6 Cost 47 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_48_value + Option 6 Cost 48 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_48_multiplier + Option 6 Cost 48 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_49_value + Option 6 Cost 49 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_49_multiplier + Option 6 Cost 49 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_50_value + Option 6 Cost 50 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_50_multiplier + Option 6 Cost 50 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_51_value + Option 6 Cost 51 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_51_multiplier + Option 6 Cost 51 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_52_value + Option 6 Cost 52 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_52_multiplier + Option 6 Cost 52 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_53_value + Option 6 Cost 53 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_53_multiplier + Option 6 Cost 53 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_54_value + Option 6 Cost 54 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_54_multiplier + Option 6 Cost 54 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_55_value + Option 6 Cost 55 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_55_multiplier + Option 6 Cost 55 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_56_value + Option 6 Cost 56 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_56_multiplier + Option 6 Cost 56 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_57_value + Option 6 Cost 57 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_57_multiplier + Option 6 Cost 57 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_58_value + Option 6 Cost 58 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_58_multiplier + Option 6 Cost 58 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_59_value + Option 6 Cost 59 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_59_multiplier + Option 6 Cost 59 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_cost_60_value + Option 6 Cost 60 Value + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_6_cost_60_multiplier + Option 6 Cost 60 Multiplier + Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_6_lifetime + Option 6 Lifetime + The option lifetime. + Double + years + false + false + + + option_7 + Option 7 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_7_apply_logic + Option 7 Apply Logic + Logic that specifies if the Option 7 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_7_cost_1_value + Option 7 Cost 1 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_1_multiplier + Option 7 Cost 1 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_2_value + Option 7 Cost 2 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_2_multiplier + Option 7 Cost 2 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_3_value + Option 7 Cost 3 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_3_multiplier + Option 7 Cost 3 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_4_value + Option 7 Cost 4 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_4_multiplier + Option 7 Cost 4 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_5_value + Option 7 Cost 5 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_5_multiplier + Option 7 Cost 5 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_6_value + Option 7 Cost 6 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_6_multiplier + Option 7 Cost 6 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_7_value + Option 7 Cost 7 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_7_multiplier + Option 7 Cost 7 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_8_value + Option 7 Cost 8 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_8_multiplier + Option 7 Cost 8 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_9_value + Option 7 Cost 9 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_9_multiplier + Option 7 Cost 9 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_10_value + Option 7 Cost 10 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_10_multiplier + Option 7 Cost 10 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_11_value + Option 7 Cost 11 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_11_multiplier + Option 7 Cost 11 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_12_value + Option 7 Cost 12 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_12_multiplier + Option 7 Cost 12 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_13_value + Option 7 Cost 13 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_13_multiplier + Option 7 Cost 13 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_14_value + Option 7 Cost 14 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_14_multiplier + Option 7 Cost 14 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_15_value + Option 7 Cost 15 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_15_multiplier + Option 7 Cost 15 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_16_value + Option 7 Cost 16 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_16_multiplier + Option 7 Cost 16 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_17_value + Option 7 Cost 17 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_17_multiplier + Option 7 Cost 17 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_18_value + Option 7 Cost 18 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_18_multiplier + Option 7 Cost 18 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_19_value + Option 7 Cost 19 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_19_multiplier + Option 7 Cost 19 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_20_value + Option 7 Cost 20 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_20_multiplier + Option 7 Cost 20 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_21_value + Option 7 Cost 21 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_21_multiplier + Option 7 Cost 21 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_22_value + Option 7 Cost 22 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_22_multiplier + Option 7 Cost 22 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_23_value + Option 7 Cost 23 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_23_multiplier + Option 7 Cost 23 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_24_value + Option 7 Cost 24 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_24_multiplier + Option 7 Cost 24 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_25_value + Option 7 Cost 25 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_25_multiplier + Option 7 Cost 25 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_26_value + Option 7 Cost 26 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_26_multiplier + Option 7 Cost 26 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_27_value + Option 7 Cost 27 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_27_multiplier + Option 7 Cost 27 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_28_value + Option 7 Cost 28 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_28_multiplier + Option 7 Cost 28 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_29_value + Option 7 Cost 29 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_29_multiplier + Option 7 Cost 29 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_30_value + Option 7 Cost 30 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_30_multiplier + Option 7 Cost 30 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_31_value + Option 7 Cost 31 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_31_multiplier + Option 7 Cost 31 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_32_value + Option 7 Cost 32 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_32_multiplier + Option 7 Cost 32 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_33_value + Option 7 Cost 33 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_33_multiplier + Option 7 Cost 33 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_34_value + Option 7 Cost 34 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_34_multiplier + Option 7 Cost 34 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_35_value + Option 7 Cost 35 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_35_multiplier + Option 7 Cost 35 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_36_value + Option 7 Cost 36 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_36_multiplier + Option 7 Cost 36 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_37_value + Option 7 Cost 37 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_37_multiplier + Option 7 Cost 37 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_38_value + Option 7 Cost 38 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_38_multiplier + Option 7 Cost 38 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_39_value + Option 7 Cost 39 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_39_multiplier + Option 7 Cost 39 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_40_value + Option 7 Cost 40 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_40_multiplier + Option 7 Cost 40 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_41_value + Option 7 Cost 41 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_41_multiplier + Option 7 Cost 41 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_42_value + Option 7 Cost 42 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_42_multiplier + Option 7 Cost 42 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_43_value + Option 7 Cost 43 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_43_multiplier + Option 7 Cost 43 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_44_value + Option 7 Cost 44 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_44_multiplier + Option 7 Cost 44 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_45_value + Option 7 Cost 45 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_45_multiplier + Option 7 Cost 45 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_46_value + Option 7 Cost 46 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_46_multiplier + Option 7 Cost 46 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_47_value + Option 7 Cost 47 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_47_multiplier + Option 7 Cost 47 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_48_value + Option 7 Cost 48 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_48_multiplier + Option 7 Cost 48 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_49_value + Option 7 Cost 49 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_49_multiplier + Option 7 Cost 49 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_50_value + Option 7 Cost 50 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_50_multiplier + Option 7 Cost 50 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_51_value + Option 7 Cost 51 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_51_multiplier + Option 7 Cost 51 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_52_value + Option 7 Cost 52 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_52_multiplier + Option 7 Cost 52 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_53_value + Option 7 Cost 53 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_53_multiplier + Option 7 Cost 53 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_54_value + Option 7 Cost 54 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_54_multiplier + Option 7 Cost 54 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_55_value + Option 7 Cost 55 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_55_multiplier + Option 7 Cost 55 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_56_value + Option 7 Cost 56 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_56_multiplier + Option 7 Cost 56 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_57_value + Option 7 Cost 57 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_57_multiplier + Option 7 Cost 57 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_58_value + Option 7 Cost 58 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_58_multiplier + Option 7 Cost 58 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_59_value + Option 7 Cost 59 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_59_multiplier + Option 7 Cost 59 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_cost_60_value + Option 7 Cost 60 Value + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_7_cost_60_multiplier + Option 7 Cost 60 Multiplier + Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_7_lifetime + Option 7 Lifetime + The option lifetime. + Double + years + false + false + + + option_8 + Option 8 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_8_apply_logic + Option 8 Apply Logic + Logic that specifies if the Option 8 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_8_cost_1_value + Option 8 Cost 1 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_1_multiplier + Option 8 Cost 1 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_2_value + Option 8 Cost 2 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_2_multiplier + Option 8 Cost 2 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_3_value + Option 8 Cost 3 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_3_multiplier + Option 8 Cost 3 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_4_value + Option 8 Cost 4 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_4_multiplier + Option 8 Cost 4 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_5_value + Option 8 Cost 5 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_5_multiplier + Option 8 Cost 5 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_6_value + Option 8 Cost 6 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_6_multiplier + Option 8 Cost 6 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_7_value + Option 8 Cost 7 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_7_multiplier + Option 8 Cost 7 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_8_value + Option 8 Cost 8 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_8_multiplier + Option 8 Cost 8 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_9_value + Option 8 Cost 9 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_9_multiplier + Option 8 Cost 9 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_10_value + Option 8 Cost 10 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_10_multiplier + Option 8 Cost 10 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_11_value + Option 8 Cost 11 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_11_multiplier + Option 8 Cost 11 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_12_value + Option 8 Cost 12 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_12_multiplier + Option 8 Cost 12 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_13_value + Option 8 Cost 13 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_13_multiplier + Option 8 Cost 13 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_14_value + Option 8 Cost 14 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_14_multiplier + Option 8 Cost 14 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_15_value + Option 8 Cost 15 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_15_multiplier + Option 8 Cost 15 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_16_value + Option 8 Cost 16 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_16_multiplier + Option 8 Cost 16 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_17_value + Option 8 Cost 17 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_17_multiplier + Option 8 Cost 17 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_18_value + Option 8 Cost 18 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_18_multiplier + Option 8 Cost 18 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_19_value + Option 8 Cost 19 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_19_multiplier + Option 8 Cost 19 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_20_value + Option 8 Cost 20 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_20_multiplier + Option 8 Cost 20 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_21_value + Option 8 Cost 21 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_21_multiplier + Option 8 Cost 21 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_22_value + Option 8 Cost 22 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_22_multiplier + Option 8 Cost 22 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_23_value + Option 8 Cost 23 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_23_multiplier + Option 8 Cost 23 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_24_value + Option 8 Cost 24 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_24_multiplier + Option 8 Cost 24 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_25_value + Option 8 Cost 25 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_25_multiplier + Option 8 Cost 25 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_26_value + Option 8 Cost 26 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_26_multiplier + Option 8 Cost 26 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_27_value + Option 8 Cost 27 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_27_multiplier + Option 8 Cost 27 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_28_value + Option 8 Cost 28 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_28_multiplier + Option 8 Cost 28 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_29_value + Option 8 Cost 29 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_29_multiplier + Option 8 Cost 29 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_30_value + Option 8 Cost 30 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_30_multiplier + Option 8 Cost 30 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_31_value + Option 8 Cost 31 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_31_multiplier + Option 8 Cost 31 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_32_value + Option 8 Cost 32 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_32_multiplier + Option 8 Cost 32 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_33_value + Option 8 Cost 33 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_33_multiplier + Option 8 Cost 33 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_34_value + Option 8 Cost 34 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_34_multiplier + Option 8 Cost 34 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_35_value + Option 8 Cost 35 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_35_multiplier + Option 8 Cost 35 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_36_value + Option 8 Cost 36 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_36_multiplier + Option 8 Cost 36 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_37_value + Option 8 Cost 37 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_37_multiplier + Option 8 Cost 37 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_38_value + Option 8 Cost 38 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_38_multiplier + Option 8 Cost 38 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_39_value + Option 8 Cost 39 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_39_multiplier + Option 8 Cost 39 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_40_value + Option 8 Cost 40 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_40_multiplier + Option 8 Cost 40 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_41_value + Option 8 Cost 41 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_41_multiplier + Option 8 Cost 41 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_42_value + Option 8 Cost 42 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_42_multiplier + Option 8 Cost 42 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_43_value + Option 8 Cost 43 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_43_multiplier + Option 8 Cost 43 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_44_value + Option 8 Cost 44 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_44_multiplier + Option 8 Cost 44 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_45_value + Option 8 Cost 45 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_45_multiplier + Option 8 Cost 45 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_46_value + Option 8 Cost 46 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_46_multiplier + Option 8 Cost 46 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_47_value + Option 8 Cost 47 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_47_multiplier + Option 8 Cost 47 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_48_value + Option 8 Cost 48 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_48_multiplier + Option 8 Cost 48 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_49_value + Option 8 Cost 49 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_49_multiplier + Option 8 Cost 49 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_50_value + Option 8 Cost 50 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_50_multiplier + Option 8 Cost 50 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_51_value + Option 8 Cost 51 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_51_multiplier + Option 8 Cost 51 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_52_value + Option 8 Cost 52 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_52_multiplier + Option 8 Cost 52 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_53_value + Option 8 Cost 53 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_53_multiplier + Option 8 Cost 53 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_54_value + Option 8 Cost 54 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_54_multiplier + Option 8 Cost 54 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_55_value + Option 8 Cost 55 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_55_multiplier + Option 8 Cost 55 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_56_value + Option 8 Cost 56 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_56_multiplier + Option 8 Cost 56 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_57_value + Option 8 Cost 57 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_57_multiplier + Option 8 Cost 57 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_58_value + Option 8 Cost 58 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_58_multiplier + Option 8 Cost 58 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_59_value + Option 8 Cost 59 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_59_multiplier + Option 8 Cost 59 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_cost_60_value + Option 8 Cost 60 Value + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_8_cost_60_multiplier + Option 8 Cost 60 Multiplier + Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_8_lifetime + Option 8 Lifetime + The option lifetime. + Double + years + false + false + + + option_9 + Option 9 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_9_apply_logic + Option 9 Apply Logic + Logic that specifies if the Option 9 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_9_cost_1_value + Option 9 Cost 1 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_1_multiplier + Option 9 Cost 1 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_2_value + Option 9 Cost 2 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_2_multiplier + Option 9 Cost 2 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_3_value + Option 9 Cost 3 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_3_multiplier + Option 9 Cost 3 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_4_value + Option 9 Cost 4 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_4_multiplier + Option 9 Cost 4 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_5_value + Option 9 Cost 5 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_5_multiplier + Option 9 Cost 5 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_6_value + Option 9 Cost 6 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_6_multiplier + Option 9 Cost 6 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_7_value + Option 9 Cost 7 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_7_multiplier + Option 9 Cost 7 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_8_value + Option 9 Cost 8 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_8_multiplier + Option 9 Cost 8 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_9_value + Option 9 Cost 9 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_9_multiplier + Option 9 Cost 9 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_10_value + Option 9 Cost 10 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_10_multiplier + Option 9 Cost 10 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_11_value + Option 9 Cost 11 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_11_multiplier + Option 9 Cost 11 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_12_value + Option 9 Cost 12 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_12_multiplier + Option 9 Cost 12 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_13_value + Option 9 Cost 13 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_13_multiplier + Option 9 Cost 13 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_14_value + Option 9 Cost 14 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_14_multiplier + Option 9 Cost 14 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_15_value + Option 9 Cost 15 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_15_multiplier + Option 9 Cost 15 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_16_value + Option 9 Cost 16 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_16_multiplier + Option 9 Cost 16 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_17_value + Option 9 Cost 17 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_17_multiplier + Option 9 Cost 17 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_18_value + Option 9 Cost 18 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_18_multiplier + Option 9 Cost 18 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_19_value + Option 9 Cost 19 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_19_multiplier + Option 9 Cost 19 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_20_value + Option 9 Cost 20 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_20_multiplier + Option 9 Cost 20 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_21_value + Option 9 Cost 21 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_21_multiplier + Option 9 Cost 21 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_22_value + Option 9 Cost 22 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_22_multiplier + Option 9 Cost 22 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_23_value + Option 9 Cost 23 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_23_multiplier + Option 9 Cost 23 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_24_value + Option 9 Cost 24 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_24_multiplier + Option 9 Cost 24 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_25_value + Option 9 Cost 25 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_25_multiplier + Option 9 Cost 25 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_26_value + Option 9 Cost 26 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_26_multiplier + Option 9 Cost 26 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_27_value + Option 9 Cost 27 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_27_multiplier + Option 9 Cost 27 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_28_value + Option 9 Cost 28 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_28_multiplier + Option 9 Cost 28 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_29_value + Option 9 Cost 29 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_29_multiplier + Option 9 Cost 29 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_30_value + Option 9 Cost 30 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_30_multiplier + Option 9 Cost 30 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_31_value + Option 9 Cost 31 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_31_multiplier + Option 9 Cost 31 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_32_value + Option 9 Cost 32 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_32_multiplier + Option 9 Cost 32 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_33_value + Option 9 Cost 33 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_33_multiplier + Option 9 Cost 33 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_34_value + Option 9 Cost 34 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_34_multiplier + Option 9 Cost 34 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_35_value + Option 9 Cost 35 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_35_multiplier + Option 9 Cost 35 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_36_value + Option 9 Cost 36 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_36_multiplier + Option 9 Cost 36 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_37_value + Option 9 Cost 37 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_37_multiplier + Option 9 Cost 37 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_38_value + Option 9 Cost 38 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_38_multiplier + Option 9 Cost 38 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_39_value + Option 9 Cost 39 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_39_multiplier + Option 9 Cost 39 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_40_value + Option 9 Cost 40 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_40_multiplier + Option 9 Cost 40 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_41_value + Option 9 Cost 41 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_41_multiplier + Option 9 Cost 41 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_42_value + Option 9 Cost 42 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_42_multiplier + Option 9 Cost 42 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_43_value + Option 9 Cost 43 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_43_multiplier + Option 9 Cost 43 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_44_value + Option 9 Cost 44 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_44_multiplier + Option 9 Cost 44 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_45_value + Option 9 Cost 45 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_45_multiplier + Option 9 Cost 45 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_46_value + Option 9 Cost 46 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_46_multiplier + Option 9 Cost 46 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_47_value + Option 9 Cost 47 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_47_multiplier + Option 9 Cost 47 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_48_value + Option 9 Cost 48 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_48_multiplier + Option 9 Cost 48 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_49_value + Option 9 Cost 49 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_49_multiplier + Option 9 Cost 49 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_50_value + Option 9 Cost 50 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_50_multiplier + Option 9 Cost 50 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_51_value + Option 9 Cost 51 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_51_multiplier + Option 9 Cost 51 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_52_value + Option 9 Cost 52 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_52_multiplier + Option 9 Cost 52 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_53_value + Option 9 Cost 53 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_53_multiplier + Option 9 Cost 53 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_54_value + Option 9 Cost 54 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_54_multiplier + Option 9 Cost 54 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_55_value + Option 9 Cost 55 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_55_multiplier + Option 9 Cost 55 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_56_value + Option 9 Cost 56 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_56_multiplier + Option 9 Cost 56 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_57_value + Option 9 Cost 57 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_57_multiplier + Option 9 Cost 57 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_58_value + Option 9 Cost 58 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_58_multiplier + Option 9 Cost 58 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_59_value + Option 9 Cost 59 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_59_multiplier + Option 9 Cost 59 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_cost_60_value + Option 9 Cost 60 Value + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_9_cost_60_multiplier + Option 9 Cost 60 Multiplier + Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_9_lifetime + Option 9 Lifetime + The option lifetime. + Double + years + false + false + + + option_10 + Option 10 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_10_apply_logic + Option 10 Apply Logic + Logic that specifies if the Option 10 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_10_cost_1_value + Option 10 Cost 1 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_1_multiplier + Option 10 Cost 1 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_2_value + Option 10 Cost 2 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_2_multiplier + Option 10 Cost 2 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_3_value + Option 10 Cost 3 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_3_multiplier + Option 10 Cost 3 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_4_value + Option 10 Cost 4 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_4_multiplier + Option 10 Cost 4 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_5_value + Option 10 Cost 5 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_5_multiplier + Option 10 Cost 5 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_6_value + Option 10 Cost 6 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_6_multiplier + Option 10 Cost 6 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_7_value + Option 10 Cost 7 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_7_multiplier + Option 10 Cost 7 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_8_value + Option 10 Cost 8 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_8_multiplier + Option 10 Cost 8 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_9_value + Option 10 Cost 9 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_9_multiplier + Option 10 Cost 9 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_10_value + Option 10 Cost 10 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_10_multiplier + Option 10 Cost 10 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_11_value + Option 10 Cost 11 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_11_multiplier + Option 10 Cost 11 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_12_value + Option 10 Cost 12 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_12_multiplier + Option 10 Cost 12 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_13_value + Option 10 Cost 13 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_13_multiplier + Option 10 Cost 13 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_14_value + Option 10 Cost 14 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_14_multiplier + Option 10 Cost 14 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_15_value + Option 10 Cost 15 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_15_multiplier + Option 10 Cost 15 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_16_value + Option 10 Cost 16 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_16_multiplier + Option 10 Cost 16 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_17_value + Option 10 Cost 17 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_17_multiplier + Option 10 Cost 17 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_18_value + Option 10 Cost 18 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_18_multiplier + Option 10 Cost 18 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_19_value + Option 10 Cost 19 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_19_multiplier + Option 10 Cost 19 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_20_value + Option 10 Cost 20 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_20_multiplier + Option 10 Cost 20 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_21_value + Option 10 Cost 21 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_21_multiplier + Option 10 Cost 21 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_22_value + Option 10 Cost 22 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_22_multiplier + Option 10 Cost 22 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_23_value + Option 10 Cost 23 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_23_multiplier + Option 10 Cost 23 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_24_value + Option 10 Cost 24 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_24_multiplier + Option 10 Cost 24 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_25_value + Option 10 Cost 25 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_25_multiplier + Option 10 Cost 25 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_26_value + Option 10 Cost 26 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_26_multiplier + Option 10 Cost 26 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_27_value + Option 10 Cost 27 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_27_multiplier + Option 10 Cost 27 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_28_value + Option 10 Cost 28 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_28_multiplier + Option 10 Cost 28 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_29_value + Option 10 Cost 29 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_29_multiplier + Option 10 Cost 29 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_30_value + Option 10 Cost 30 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_30_multiplier + Option 10 Cost 30 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_31_value + Option 10 Cost 31 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_31_multiplier + Option 10 Cost 31 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_32_value + Option 10 Cost 32 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_32_multiplier + Option 10 Cost 32 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_33_value + Option 10 Cost 33 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_33_multiplier + Option 10 Cost 33 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_34_value + Option 10 Cost 34 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_34_multiplier + Option 10 Cost 34 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_35_value + Option 10 Cost 35 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_35_multiplier + Option 10 Cost 35 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_36_value + Option 10 Cost 36 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_36_multiplier + Option 10 Cost 36 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_37_value + Option 10 Cost 37 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_37_multiplier + Option 10 Cost 37 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_38_value + Option 10 Cost 38 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_38_multiplier + Option 10 Cost 38 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_39_value + Option 10 Cost 39 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_39_multiplier + Option 10 Cost 39 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_40_value + Option 10 Cost 40 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_40_multiplier + Option 10 Cost 40 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_41_value + Option 10 Cost 41 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_41_multiplier + Option 10 Cost 41 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_42_value + Option 10 Cost 42 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_42_multiplier + Option 10 Cost 42 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_43_value + Option 10 Cost 43 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_43_multiplier + Option 10 Cost 43 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_44_value + Option 10 Cost 44 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_44_multiplier + Option 10 Cost 44 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_45_value + Option 10 Cost 45 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_45_multiplier + Option 10 Cost 45 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_46_value + Option 10 Cost 46 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_46_multiplier + Option 10 Cost 46 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_47_value + Option 10 Cost 47 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_47_multiplier + Option 10 Cost 47 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_48_value + Option 10 Cost 48 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_48_multiplier + Option 10 Cost 48 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_49_value + Option 10 Cost 49 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_49_multiplier + Option 10 Cost 49 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_50_value + Option 10 Cost 50 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_50_multiplier + Option 10 Cost 50 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_51_value + Option 10 Cost 51 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_51_multiplier + Option 10 Cost 51 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_52_value + Option 10 Cost 52 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_52_multiplier + Option 10 Cost 52 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_53_value + Option 10 Cost 53 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_53_multiplier + Option 10 Cost 53 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_54_value + Option 10 Cost 54 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_54_multiplier + Option 10 Cost 54 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_55_value + Option 10 Cost 55 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_55_multiplier + Option 10 Cost 55 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_56_value + Option 10 Cost 56 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_56_multiplier + Option 10 Cost 56 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_57_value + Option 10 Cost 57 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_57_multiplier + Option 10 Cost 57 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_58_value + Option 10 Cost 58 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_58_multiplier + Option 10 Cost 58 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_59_value + Option 10 Cost 59 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_59_multiplier + Option 10 Cost 59 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_cost_60_value + Option 10 Cost 60 Value + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_10_cost_60_multiplier + Option 10 Cost 60 Multiplier + Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_10_lifetime + Option 10 Lifetime + The option lifetime. + Double + years + false + false + + + option_11 + Option 11 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_11_apply_logic + Option 11 Apply Logic + Logic that specifies if the Option 11 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_11_cost_1_value + Option 11 Cost 1 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_1_multiplier + Option 11 Cost 1 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_2_value + Option 11 Cost 2 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_2_multiplier + Option 11 Cost 2 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_3_value + Option 11 Cost 3 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_3_multiplier + Option 11 Cost 3 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_4_value + Option 11 Cost 4 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_4_multiplier + Option 11 Cost 4 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_5_value + Option 11 Cost 5 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_5_multiplier + Option 11 Cost 5 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_6_value + Option 11 Cost 6 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_6_multiplier + Option 11 Cost 6 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_7_value + Option 11 Cost 7 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_7_multiplier + Option 11 Cost 7 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_8_value + Option 11 Cost 8 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_8_multiplier + Option 11 Cost 8 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_9_value + Option 11 Cost 9 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_9_multiplier + Option 11 Cost 9 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_10_value + Option 11 Cost 10 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_10_multiplier + Option 11 Cost 10 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_11_value + Option 11 Cost 11 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_11_multiplier + Option 11 Cost 11 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_12_value + Option 11 Cost 12 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_12_multiplier + Option 11 Cost 12 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_13_value + Option 11 Cost 13 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_13_multiplier + Option 11 Cost 13 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_14_value + Option 11 Cost 14 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_14_multiplier + Option 11 Cost 14 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_15_value + Option 11 Cost 15 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_15_multiplier + Option 11 Cost 15 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_16_value + Option 11 Cost 16 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_16_multiplier + Option 11 Cost 16 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_17_value + Option 11 Cost 17 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_17_multiplier + Option 11 Cost 17 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_18_value + Option 11 Cost 18 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_18_multiplier + Option 11 Cost 18 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_19_value + Option 11 Cost 19 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_19_multiplier + Option 11 Cost 19 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_20_value + Option 11 Cost 20 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_20_multiplier + Option 11 Cost 20 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_21_value + Option 11 Cost 21 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_21_multiplier + Option 11 Cost 21 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_22_value + Option 11 Cost 22 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_22_multiplier + Option 11 Cost 22 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_23_value + Option 11 Cost 23 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_23_multiplier + Option 11 Cost 23 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_24_value + Option 11 Cost 24 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_24_multiplier + Option 11 Cost 24 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_25_value + Option 11 Cost 25 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_25_multiplier + Option 11 Cost 25 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_26_value + Option 11 Cost 26 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_26_multiplier + Option 11 Cost 26 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_27_value + Option 11 Cost 27 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_27_multiplier + Option 11 Cost 27 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_28_value + Option 11 Cost 28 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_28_multiplier + Option 11 Cost 28 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_29_value + Option 11 Cost 29 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_29_multiplier + Option 11 Cost 29 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_30_value + Option 11 Cost 30 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_30_multiplier + Option 11 Cost 30 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_31_value + Option 11 Cost 31 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_31_multiplier + Option 11 Cost 31 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_32_value + Option 11 Cost 32 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_32_multiplier + Option 11 Cost 32 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_33_value + Option 11 Cost 33 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_33_multiplier + Option 11 Cost 33 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_34_value + Option 11 Cost 34 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_34_multiplier + Option 11 Cost 34 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_35_value + Option 11 Cost 35 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_35_multiplier + Option 11 Cost 35 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_36_value + Option 11 Cost 36 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_36_multiplier + Option 11 Cost 36 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_37_value + Option 11 Cost 37 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_37_multiplier + Option 11 Cost 37 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_38_value + Option 11 Cost 38 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_38_multiplier + Option 11 Cost 38 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_39_value + Option 11 Cost 39 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_39_multiplier + Option 11 Cost 39 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_40_value + Option 11 Cost 40 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_40_multiplier + Option 11 Cost 40 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_41_value + Option 11 Cost 41 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_41_multiplier + Option 11 Cost 41 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_42_value + Option 11 Cost 42 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_42_multiplier + Option 11 Cost 42 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_43_value + Option 11 Cost 43 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_43_multiplier + Option 11 Cost 43 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_44_value + Option 11 Cost 44 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_44_multiplier + Option 11 Cost 44 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_45_value + Option 11 Cost 45 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_45_multiplier + Option 11 Cost 45 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_46_value + Option 11 Cost 46 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_46_multiplier + Option 11 Cost 46 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_47_value + Option 11 Cost 47 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_47_multiplier + Option 11 Cost 47 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_48_value + Option 11 Cost 48 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_48_multiplier + Option 11 Cost 48 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_49_value + Option 11 Cost 49 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_49_multiplier + Option 11 Cost 49 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_50_value + Option 11 Cost 50 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_50_multiplier + Option 11 Cost 50 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_51_value + Option 11 Cost 51 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_51_multiplier + Option 11 Cost 51 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_52_value + Option 11 Cost 52 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_52_multiplier + Option 11 Cost 52 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_53_value + Option 11 Cost 53 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_53_multiplier + Option 11 Cost 53 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_54_value + Option 11 Cost 54 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_54_multiplier + Option 11 Cost 54 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_55_value + Option 11 Cost 55 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_55_multiplier + Option 11 Cost 55 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_56_value + Option 11 Cost 56 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_56_multiplier + Option 11 Cost 56 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_57_value + Option 11 Cost 57 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_57_multiplier + Option 11 Cost 57 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_58_value + Option 11 Cost 58 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_58_multiplier + Option 11 Cost 58 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_59_value + Option 11 Cost 59 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_59_multiplier + Option 11 Cost 59 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_cost_60_value + Option 11 Cost 60 Value + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_11_cost_60_multiplier + Option 11 Cost 60 Multiplier + Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_11_lifetime + Option 11 Lifetime + The option lifetime. + Double + years + false + false + + + option_12 + Option 12 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_12_apply_logic + Option 12 Apply Logic + Logic that specifies if the Option 12 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_12_cost_1_value + Option 12 Cost 1 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_1_multiplier + Option 12 Cost 1 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_2_value + Option 12 Cost 2 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_2_multiplier + Option 12 Cost 2 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_3_value + Option 12 Cost 3 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_3_multiplier + Option 12 Cost 3 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_4_value + Option 12 Cost 4 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_4_multiplier + Option 12 Cost 4 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_5_value + Option 12 Cost 5 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_5_multiplier + Option 12 Cost 5 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_6_value + Option 12 Cost 6 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_6_multiplier + Option 12 Cost 6 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_7_value + Option 12 Cost 7 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_7_multiplier + Option 12 Cost 7 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_8_value + Option 12 Cost 8 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_8_multiplier + Option 12 Cost 8 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_9_value + Option 12 Cost 9 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_9_multiplier + Option 12 Cost 9 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_10_value + Option 12 Cost 10 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_10_multiplier + Option 12 Cost 10 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_11_value + Option 12 Cost 11 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_11_multiplier + Option 12 Cost 11 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_12_value + Option 12 Cost 12 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_12_multiplier + Option 12 Cost 12 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_13_value + Option 12 Cost 13 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_13_multiplier + Option 12 Cost 13 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_14_value + Option 12 Cost 14 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_14_multiplier + Option 12 Cost 14 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_15_value + Option 12 Cost 15 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_15_multiplier + Option 12 Cost 15 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_16_value + Option 12 Cost 16 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_16_multiplier + Option 12 Cost 16 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_17_value + Option 12 Cost 17 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_17_multiplier + Option 12 Cost 17 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_18_value + Option 12 Cost 18 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_18_multiplier + Option 12 Cost 18 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_19_value + Option 12 Cost 19 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_19_multiplier + Option 12 Cost 19 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_20_value + Option 12 Cost 20 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_20_multiplier + Option 12 Cost 20 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_21_value + Option 12 Cost 21 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_21_multiplier + Option 12 Cost 21 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_22_value + Option 12 Cost 22 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_22_multiplier + Option 12 Cost 22 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_23_value + Option 12 Cost 23 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_23_multiplier + Option 12 Cost 23 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_24_value + Option 12 Cost 24 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_24_multiplier + Option 12 Cost 24 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_25_value + Option 12 Cost 25 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_25_multiplier + Option 12 Cost 25 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_26_value + Option 12 Cost 26 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_26_multiplier + Option 12 Cost 26 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_27_value + Option 12 Cost 27 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_27_multiplier + Option 12 Cost 27 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_28_value + Option 12 Cost 28 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_28_multiplier + Option 12 Cost 28 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_29_value + Option 12 Cost 29 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_29_multiplier + Option 12 Cost 29 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_30_value + Option 12 Cost 30 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_30_multiplier + Option 12 Cost 30 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_31_value + Option 12 Cost 31 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_31_multiplier + Option 12 Cost 31 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_32_value + Option 12 Cost 32 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_32_multiplier + Option 12 Cost 32 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_33_value + Option 12 Cost 33 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_33_multiplier + Option 12 Cost 33 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_34_value + Option 12 Cost 34 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_34_multiplier + Option 12 Cost 34 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_35_value + Option 12 Cost 35 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_35_multiplier + Option 12 Cost 35 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_36_value + Option 12 Cost 36 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_36_multiplier + Option 12 Cost 36 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_37_value + Option 12 Cost 37 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_37_multiplier + Option 12 Cost 37 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_38_value + Option 12 Cost 38 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_38_multiplier + Option 12 Cost 38 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_39_value + Option 12 Cost 39 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_39_multiplier + Option 12 Cost 39 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_40_value + Option 12 Cost 40 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_40_multiplier + Option 12 Cost 40 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_41_value + Option 12 Cost 41 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_41_multiplier + Option 12 Cost 41 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_42_value + Option 12 Cost 42 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_42_multiplier + Option 12 Cost 42 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_43_value + Option 12 Cost 43 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_43_multiplier + Option 12 Cost 43 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_44_value + Option 12 Cost 44 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_44_multiplier + Option 12 Cost 44 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_45_value + Option 12 Cost 45 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_45_multiplier + Option 12 Cost 45 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_46_value + Option 12 Cost 46 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_46_multiplier + Option 12 Cost 46 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_47_value + Option 12 Cost 47 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_47_multiplier + Option 12 Cost 47 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_48_value + Option 12 Cost 48 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_48_multiplier + Option 12 Cost 48 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_49_value + Option 12 Cost 49 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_49_multiplier + Option 12 Cost 49 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_50_value + Option 12 Cost 50 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_50_multiplier + Option 12 Cost 50 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_51_value + Option 12 Cost 51 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_51_multiplier + Option 12 Cost 51 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_52_value + Option 12 Cost 52 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_52_multiplier + Option 12 Cost 52 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_53_value + Option 12 Cost 53 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_53_multiplier + Option 12 Cost 53 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_54_value + Option 12 Cost 54 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_54_multiplier + Option 12 Cost 54 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_55_value + Option 12 Cost 55 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_55_multiplier + Option 12 Cost 55 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_56_value + Option 12 Cost 56 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_56_multiplier + Option 12 Cost 56 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_57_value + Option 12 Cost 57 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_57_multiplier + Option 12 Cost 57 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_58_value + Option 12 Cost 58 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_58_multiplier + Option 12 Cost 58 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_59_value + Option 12 Cost 59 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_59_multiplier + Option 12 Cost 59 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_cost_60_value + Option 12 Cost 60 Value + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_12_cost_60_multiplier + Option 12 Cost 60 Multiplier + Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_12_lifetime + Option 12 Lifetime + The option lifetime. + Double + years + false + false + + + option_13 + Option 13 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_13_apply_logic + Option 13 Apply Logic + Logic that specifies if the Option 13 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_13_cost_1_value + Option 13 Cost 1 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_1_multiplier + Option 13 Cost 1 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_2_value + Option 13 Cost 2 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_2_multiplier + Option 13 Cost 2 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_3_value + Option 13 Cost 3 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_3_multiplier + Option 13 Cost 3 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_4_value + Option 13 Cost 4 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_4_multiplier + Option 13 Cost 4 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_5_value + Option 13 Cost 5 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_5_multiplier + Option 13 Cost 5 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_6_value + Option 13 Cost 6 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_6_multiplier + Option 13 Cost 6 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_7_value + Option 13 Cost 7 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_7_multiplier + Option 13 Cost 7 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_8_value + Option 13 Cost 8 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_8_multiplier + Option 13 Cost 8 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_9_value + Option 13 Cost 9 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_9_multiplier + Option 13 Cost 9 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_10_value + Option 13 Cost 10 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_10_multiplier + Option 13 Cost 10 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_11_value + Option 13 Cost 11 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_11_multiplier + Option 13 Cost 11 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_12_value + Option 13 Cost 12 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_12_multiplier + Option 13 Cost 12 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_13_value + Option 13 Cost 13 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_13_multiplier + Option 13 Cost 13 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_14_value + Option 13 Cost 14 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_14_multiplier + Option 13 Cost 14 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_15_value + Option 13 Cost 15 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_15_multiplier + Option 13 Cost 15 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_16_value + Option 13 Cost 16 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_16_multiplier + Option 13 Cost 16 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_17_value + Option 13 Cost 17 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_17_multiplier + Option 13 Cost 17 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_18_value + Option 13 Cost 18 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_18_multiplier + Option 13 Cost 18 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_19_value + Option 13 Cost 19 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_19_multiplier + Option 13 Cost 19 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_20_value + Option 13 Cost 20 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_20_multiplier + Option 13 Cost 20 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_21_value + Option 13 Cost 21 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_21_multiplier + Option 13 Cost 21 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_22_value + Option 13 Cost 22 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_22_multiplier + Option 13 Cost 22 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_23_value + Option 13 Cost 23 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_23_multiplier + Option 13 Cost 23 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_24_value + Option 13 Cost 24 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_24_multiplier + Option 13 Cost 24 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_25_value + Option 13 Cost 25 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_25_multiplier + Option 13 Cost 25 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_26_value + Option 13 Cost 26 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_26_multiplier + Option 13 Cost 26 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_27_value + Option 13 Cost 27 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_27_multiplier + Option 13 Cost 27 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_28_value + Option 13 Cost 28 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_28_multiplier + Option 13 Cost 28 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_29_value + Option 13 Cost 29 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_29_multiplier + Option 13 Cost 29 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_30_value + Option 13 Cost 30 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_30_multiplier + Option 13 Cost 30 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_31_value + Option 13 Cost 31 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_31_multiplier + Option 13 Cost 31 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_32_value + Option 13 Cost 32 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_32_multiplier + Option 13 Cost 32 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_33_value + Option 13 Cost 33 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_33_multiplier + Option 13 Cost 33 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_34_value + Option 13 Cost 34 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_34_multiplier + Option 13 Cost 34 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_35_value + Option 13 Cost 35 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_35_multiplier + Option 13 Cost 35 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_36_value + Option 13 Cost 36 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_36_multiplier + Option 13 Cost 36 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_37_value + Option 13 Cost 37 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_37_multiplier + Option 13 Cost 37 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_38_value + Option 13 Cost 38 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_38_multiplier + Option 13 Cost 38 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_39_value + Option 13 Cost 39 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_39_multiplier + Option 13 Cost 39 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_40_value + Option 13 Cost 40 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_40_multiplier + Option 13 Cost 40 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_41_value + Option 13 Cost 41 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_41_multiplier + Option 13 Cost 41 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_42_value + Option 13 Cost 42 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_42_multiplier + Option 13 Cost 42 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_43_value + Option 13 Cost 43 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_43_multiplier + Option 13 Cost 43 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_44_value + Option 13 Cost 44 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_44_multiplier + Option 13 Cost 44 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_45_value + Option 13 Cost 45 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_45_multiplier + Option 13 Cost 45 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_46_value + Option 13 Cost 46 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_46_multiplier + Option 13 Cost 46 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_47_value + Option 13 Cost 47 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_47_multiplier + Option 13 Cost 47 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_48_value + Option 13 Cost 48 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_48_multiplier + Option 13 Cost 48 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_49_value + Option 13 Cost 49 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_49_multiplier + Option 13 Cost 49 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_50_value + Option 13 Cost 50 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_50_multiplier + Option 13 Cost 50 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_51_value + Option 13 Cost 51 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_51_multiplier + Option 13 Cost 51 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_52_value + Option 13 Cost 52 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_52_multiplier + Option 13 Cost 52 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_53_value + Option 13 Cost 53 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_53_multiplier + Option 13 Cost 53 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_54_value + Option 13 Cost 54 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_54_multiplier + Option 13 Cost 54 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_55_value + Option 13 Cost 55 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_55_multiplier + Option 13 Cost 55 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_56_value + Option 13 Cost 56 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_56_multiplier + Option 13 Cost 56 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_57_value + Option 13 Cost 57 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_57_multiplier + Option 13 Cost 57 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_58_value + Option 13 Cost 58 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_58_multiplier + Option 13 Cost 58 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_59_value + Option 13 Cost 59 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_59_multiplier + Option 13 Cost 59 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_cost_60_value + Option 13 Cost 60 Value + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_13_cost_60_multiplier + Option 13 Cost 60 Multiplier + Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_13_lifetime + Option 13 Lifetime + The option lifetime. + Double + years + false + false + + + option_14 + Option 14 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_14_apply_logic + Option 14 Apply Logic + Logic that specifies if the Option 14 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_14_cost_1_value + Option 14 Cost 1 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_1_multiplier + Option 14 Cost 1 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_2_value + Option 14 Cost 2 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_2_multiplier + Option 14 Cost 2 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_3_value + Option 14 Cost 3 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_3_multiplier + Option 14 Cost 3 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_4_value + Option 14 Cost 4 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_4_multiplier + Option 14 Cost 4 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_5_value + Option 14 Cost 5 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_5_multiplier + Option 14 Cost 5 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_6_value + Option 14 Cost 6 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_6_multiplier + Option 14 Cost 6 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_7_value + Option 14 Cost 7 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_7_multiplier + Option 14 Cost 7 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_8_value + Option 14 Cost 8 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_8_multiplier + Option 14 Cost 8 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_9_value + Option 14 Cost 9 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_9_multiplier + Option 14 Cost 9 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_10_value + Option 14 Cost 10 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_10_multiplier + Option 14 Cost 10 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_11_value + Option 14 Cost 11 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_11_multiplier + Option 14 Cost 11 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_12_value + Option 14 Cost 12 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_12_multiplier + Option 14 Cost 12 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_13_value + Option 14 Cost 13 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_13_multiplier + Option 14 Cost 13 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_14_value + Option 14 Cost 14 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_14_multiplier + Option 14 Cost 14 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_15_value + Option 14 Cost 15 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_15_multiplier + Option 14 Cost 15 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_16_value + Option 14 Cost 16 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_16_multiplier + Option 14 Cost 16 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_17_value + Option 14 Cost 17 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_17_multiplier + Option 14 Cost 17 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_18_value + Option 14 Cost 18 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_18_multiplier + Option 14 Cost 18 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_19_value + Option 14 Cost 19 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_19_multiplier + Option 14 Cost 19 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_20_value + Option 14 Cost 20 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_20_multiplier + Option 14 Cost 20 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_21_value + Option 14 Cost 21 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_21_multiplier + Option 14 Cost 21 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_22_value + Option 14 Cost 22 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_22_multiplier + Option 14 Cost 22 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_23_value + Option 14 Cost 23 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_23_multiplier + Option 14 Cost 23 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_24_value + Option 14 Cost 24 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_24_multiplier + Option 14 Cost 24 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_25_value + Option 14 Cost 25 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_25_multiplier + Option 14 Cost 25 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_26_value + Option 14 Cost 26 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_26_multiplier + Option 14 Cost 26 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_27_value + Option 14 Cost 27 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_27_multiplier + Option 14 Cost 27 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_28_value + Option 14 Cost 28 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_28_multiplier + Option 14 Cost 28 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_29_value + Option 14 Cost 29 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_29_multiplier + Option 14 Cost 29 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_30_value + Option 14 Cost 30 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_30_multiplier + Option 14 Cost 30 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_31_value + Option 14 Cost 31 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_31_multiplier + Option 14 Cost 31 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_32_value + Option 14 Cost 32 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_32_multiplier + Option 14 Cost 32 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_33_value + Option 14 Cost 33 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_33_multiplier + Option 14 Cost 33 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_34_value + Option 14 Cost 34 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_34_multiplier + Option 14 Cost 34 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_35_value + Option 14 Cost 35 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_35_multiplier + Option 14 Cost 35 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_36_value + Option 14 Cost 36 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_36_multiplier + Option 14 Cost 36 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_37_value + Option 14 Cost 37 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_37_multiplier + Option 14 Cost 37 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_38_value + Option 14 Cost 38 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_38_multiplier + Option 14 Cost 38 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_39_value + Option 14 Cost 39 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_39_multiplier + Option 14 Cost 39 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_40_value + Option 14 Cost 40 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_40_multiplier + Option 14 Cost 40 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_41_value + Option 14 Cost 41 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_41_multiplier + Option 14 Cost 41 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_42_value + Option 14 Cost 42 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_42_multiplier + Option 14 Cost 42 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_43_value + Option 14 Cost 43 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_43_multiplier + Option 14 Cost 43 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_44_value + Option 14 Cost 44 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_44_multiplier + Option 14 Cost 44 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_45_value + Option 14 Cost 45 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_45_multiplier + Option 14 Cost 45 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_46_value + Option 14 Cost 46 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_46_multiplier + Option 14 Cost 46 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_47_value + Option 14 Cost 47 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_47_multiplier + Option 14 Cost 47 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_48_value + Option 14 Cost 48 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_48_multiplier + Option 14 Cost 48 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_49_value + Option 14 Cost 49 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_49_multiplier + Option 14 Cost 49 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_50_value + Option 14 Cost 50 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_50_multiplier + Option 14 Cost 50 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_51_value + Option 14 Cost 51 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_51_multiplier + Option 14 Cost 51 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_52_value + Option 14 Cost 52 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_52_multiplier + Option 14 Cost 52 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_53_value + Option 14 Cost 53 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_53_multiplier + Option 14 Cost 53 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_54_value + Option 14 Cost 54 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_54_multiplier + Option 14 Cost 54 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_55_value + Option 14 Cost 55 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_55_multiplier + Option 14 Cost 55 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_56_value + Option 14 Cost 56 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_56_multiplier + Option 14 Cost 56 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_57_value + Option 14 Cost 57 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_57_multiplier + Option 14 Cost 57 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_58_value + Option 14 Cost 58 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_58_multiplier + Option 14 Cost 58 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_59_value + Option 14 Cost 59 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_59_multiplier + Option 14 Cost 59 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_cost_60_value + Option 14 Cost 60 Value + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_14_cost_60_multiplier + Option 14 Cost 60 Multiplier + Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_14_lifetime + Option 14 Lifetime + The option lifetime. + Double + years + false + false + + + option_15 + Option 15 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_15_apply_logic + Option 15 Apply Logic + Logic that specifies if the Option 15 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_15_cost_1_value + Option 15 Cost 1 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_1_multiplier + Option 15 Cost 1 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_2_value + Option 15 Cost 2 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_2_multiplier + Option 15 Cost 2 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_3_value + Option 15 Cost 3 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_3_multiplier + Option 15 Cost 3 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_4_value + Option 15 Cost 4 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_4_multiplier + Option 15 Cost 4 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_5_value + Option 15 Cost 5 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_5_multiplier + Option 15 Cost 5 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_6_value + Option 15 Cost 6 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_6_multiplier + Option 15 Cost 6 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_7_value + Option 15 Cost 7 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_7_multiplier + Option 15 Cost 7 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_8_value + Option 15 Cost 8 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_8_multiplier + Option 15 Cost 8 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_9_value + Option 15 Cost 9 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_9_multiplier + Option 15 Cost 9 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_10_value + Option 15 Cost 10 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_10_multiplier + Option 15 Cost 10 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_11_value + Option 15 Cost 11 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_11_multiplier + Option 15 Cost 11 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_12_value + Option 15 Cost 12 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_12_multiplier + Option 15 Cost 12 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_13_value + Option 15 Cost 13 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_13_multiplier + Option 15 Cost 13 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_14_value + Option 15 Cost 14 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_14_multiplier + Option 15 Cost 14 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_15_value + Option 15 Cost 15 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_15_multiplier + Option 15 Cost 15 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_16_value + Option 15 Cost 16 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_16_multiplier + Option 15 Cost 16 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_17_value + Option 15 Cost 17 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_17_multiplier + Option 15 Cost 17 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_18_value + Option 15 Cost 18 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_18_multiplier + Option 15 Cost 18 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_19_value + Option 15 Cost 19 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_19_multiplier + Option 15 Cost 19 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_20_value + Option 15 Cost 20 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_20_multiplier + Option 15 Cost 20 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_21_value + Option 15 Cost 21 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_21_multiplier + Option 15 Cost 21 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_22_value + Option 15 Cost 22 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_22_multiplier + Option 15 Cost 22 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_23_value + Option 15 Cost 23 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_23_multiplier + Option 15 Cost 23 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_24_value + Option 15 Cost 24 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_24_multiplier + Option 15 Cost 24 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_25_value + Option 15 Cost 25 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_25_multiplier + Option 15 Cost 25 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_26_value + Option 15 Cost 26 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_26_multiplier + Option 15 Cost 26 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_27_value + Option 15 Cost 27 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_27_multiplier + Option 15 Cost 27 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_28_value + Option 15 Cost 28 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_28_multiplier + Option 15 Cost 28 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_29_value + Option 15 Cost 29 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_29_multiplier + Option 15 Cost 29 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_30_value + Option 15 Cost 30 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_30_multiplier + Option 15 Cost 30 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_31_value + Option 15 Cost 31 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_31_multiplier + Option 15 Cost 31 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_32_value + Option 15 Cost 32 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_32_multiplier + Option 15 Cost 32 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_33_value + Option 15 Cost 33 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_33_multiplier + Option 15 Cost 33 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_34_value + Option 15 Cost 34 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_34_multiplier + Option 15 Cost 34 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_35_value + Option 15 Cost 35 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_35_multiplier + Option 15 Cost 35 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_36_value + Option 15 Cost 36 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_36_multiplier + Option 15 Cost 36 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_37_value + Option 15 Cost 37 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_37_multiplier + Option 15 Cost 37 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_38_value + Option 15 Cost 38 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_38_multiplier + Option 15 Cost 38 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_39_value + Option 15 Cost 39 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_39_multiplier + Option 15 Cost 39 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_40_value + Option 15 Cost 40 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_40_multiplier + Option 15 Cost 40 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_41_value + Option 15 Cost 41 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_41_multiplier + Option 15 Cost 41 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_42_value + Option 15 Cost 42 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_42_multiplier + Option 15 Cost 42 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_43_value + Option 15 Cost 43 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_43_multiplier + Option 15 Cost 43 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_44_value + Option 15 Cost 44 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_44_multiplier + Option 15 Cost 44 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_45_value + Option 15 Cost 45 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_45_multiplier + Option 15 Cost 45 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_46_value + Option 15 Cost 46 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_46_multiplier + Option 15 Cost 46 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_47_value + Option 15 Cost 47 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_47_multiplier + Option 15 Cost 47 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_48_value + Option 15 Cost 48 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_48_multiplier + Option 15 Cost 48 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_49_value + Option 15 Cost 49 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_49_multiplier + Option 15 Cost 49 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_50_value + Option 15 Cost 50 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_50_multiplier + Option 15 Cost 50 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_51_value + Option 15 Cost 51 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_51_multiplier + Option 15 Cost 51 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_52_value + Option 15 Cost 52 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_52_multiplier + Option 15 Cost 52 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_53_value + Option 15 Cost 53 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_53_multiplier + Option 15 Cost 53 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_54_value + Option 15 Cost 54 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_54_multiplier + Option 15 Cost 54 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_55_value + Option 15 Cost 55 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_55_multiplier + Option 15 Cost 55 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_56_value + Option 15 Cost 56 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_56_multiplier + Option 15 Cost 56 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_57_value + Option 15 Cost 57 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_57_multiplier + Option 15 Cost 57 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_58_value + Option 15 Cost 58 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_58_multiplier + Option 15 Cost 58 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_59_value + Option 15 Cost 59 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_59_multiplier + Option 15 Cost 59 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_cost_60_value + Option 15 Cost 60 Value + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_15_cost_60_multiplier + Option 15 Cost 60 Multiplier + Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_15_lifetime + Option 15 Lifetime + The option lifetime. + Double + years + false + false + + + option_16 + Option 16 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_16_apply_logic + Option 16 Apply Logic + Logic that specifies if the Option 16 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_16_cost_1_value + Option 16 Cost 1 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_1_multiplier + Option 16 Cost 1 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_2_value + Option 16 Cost 2 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_2_multiplier + Option 16 Cost 2 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_3_value + Option 16 Cost 3 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_3_multiplier + Option 16 Cost 3 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_4_value + Option 16 Cost 4 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_4_multiplier + Option 16 Cost 4 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_5_value + Option 16 Cost 5 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_5_multiplier + Option 16 Cost 5 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_6_value + Option 16 Cost 6 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_6_multiplier + Option 16 Cost 6 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_7_value + Option 16 Cost 7 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_7_multiplier + Option 16 Cost 7 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_8_value + Option 16 Cost 8 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_8_multiplier + Option 16 Cost 8 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_9_value + Option 16 Cost 9 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_9_multiplier + Option 16 Cost 9 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_10_value + Option 16 Cost 10 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_10_multiplier + Option 16 Cost 10 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_11_value + Option 16 Cost 11 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_11_multiplier + Option 16 Cost 11 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_12_value + Option 16 Cost 12 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_12_multiplier + Option 16 Cost 12 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_13_value + Option 16 Cost 13 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_13_multiplier + Option 16 Cost 13 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_14_value + Option 16 Cost 14 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_14_multiplier + Option 16 Cost 14 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_15_value + Option 16 Cost 15 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_15_multiplier + Option 16 Cost 15 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_16_value + Option 16 Cost 16 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_16_multiplier + Option 16 Cost 16 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_17_value + Option 16 Cost 17 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_17_multiplier + Option 16 Cost 17 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_18_value + Option 16 Cost 18 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_18_multiplier + Option 16 Cost 18 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_19_value + Option 16 Cost 19 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_19_multiplier + Option 16 Cost 19 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_20_value + Option 16 Cost 20 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_20_multiplier + Option 16 Cost 20 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_21_value + Option 16 Cost 21 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_21_multiplier + Option 16 Cost 21 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_22_value + Option 16 Cost 22 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_22_multiplier + Option 16 Cost 22 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_23_value + Option 16 Cost 23 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_23_multiplier + Option 16 Cost 23 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_24_value + Option 16 Cost 24 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_24_multiplier + Option 16 Cost 24 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_25_value + Option 16 Cost 25 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_25_multiplier + Option 16 Cost 25 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_26_value + Option 16 Cost 26 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_26_multiplier + Option 16 Cost 26 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_27_value + Option 16 Cost 27 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_27_multiplier + Option 16 Cost 27 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_28_value + Option 16 Cost 28 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_28_multiplier + Option 16 Cost 28 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_29_value + Option 16 Cost 29 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_29_multiplier + Option 16 Cost 29 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_30_value + Option 16 Cost 30 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_30_multiplier + Option 16 Cost 30 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_31_value + Option 16 Cost 31 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_31_multiplier + Option 16 Cost 31 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_32_value + Option 16 Cost 32 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_32_multiplier + Option 16 Cost 32 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_33_value + Option 16 Cost 33 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_33_multiplier + Option 16 Cost 33 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_34_value + Option 16 Cost 34 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_34_multiplier + Option 16 Cost 34 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_35_value + Option 16 Cost 35 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_35_multiplier + Option 16 Cost 35 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_36_value + Option 16 Cost 36 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_36_multiplier + Option 16 Cost 36 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_37_value + Option 16 Cost 37 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_37_multiplier + Option 16 Cost 37 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_38_value + Option 16 Cost 38 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_38_multiplier + Option 16 Cost 38 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_39_value + Option 16 Cost 39 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_39_multiplier + Option 16 Cost 39 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_40_value + Option 16 Cost 40 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_40_multiplier + Option 16 Cost 40 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_41_value + Option 16 Cost 41 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_41_multiplier + Option 16 Cost 41 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_42_value + Option 16 Cost 42 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_42_multiplier + Option 16 Cost 42 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_43_value + Option 16 Cost 43 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_43_multiplier + Option 16 Cost 43 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_44_value + Option 16 Cost 44 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_44_multiplier + Option 16 Cost 44 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_45_value + Option 16 Cost 45 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_45_multiplier + Option 16 Cost 45 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_46_value + Option 16 Cost 46 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_46_multiplier + Option 16 Cost 46 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_47_value + Option 16 Cost 47 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_47_multiplier + Option 16 Cost 47 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_48_value + Option 16 Cost 48 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_48_multiplier + Option 16 Cost 48 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_49_value + Option 16 Cost 49 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_49_multiplier + Option 16 Cost 49 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_50_value + Option 16 Cost 50 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_50_multiplier + Option 16 Cost 50 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_51_value + Option 16 Cost 51 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_51_multiplier + Option 16 Cost 51 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_52_value + Option 16 Cost 52 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_52_multiplier + Option 16 Cost 52 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_53_value + Option 16 Cost 53 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_53_multiplier + Option 16 Cost 53 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_54_value + Option 16 Cost 54 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_54_multiplier + Option 16 Cost 54 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_55_value + Option 16 Cost 55 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_55_multiplier + Option 16 Cost 55 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_56_value + Option 16 Cost 56 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_56_multiplier + Option 16 Cost 56 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_57_value + Option 16 Cost 57 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_57_multiplier + Option 16 Cost 57 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_58_value + Option 16 Cost 58 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_58_multiplier + Option 16 Cost 58 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_59_value + Option 16 Cost 59 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_59_multiplier + Option 16 Cost 59 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_cost_60_value + Option 16 Cost 60 Value + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_16_cost_60_multiplier + Option 16 Cost 60 Multiplier + Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_16_lifetime + Option 16 Lifetime + The option lifetime. + Double + years + false + false + + + option_17 + Option 17 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_17_apply_logic + Option 17 Apply Logic + Logic that specifies if the Option 17 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_17_cost_1_value + Option 17 Cost 1 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_1_multiplier + Option 17 Cost 1 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_2_value + Option 17 Cost 2 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_2_multiplier + Option 17 Cost 2 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_3_value + Option 17 Cost 3 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_3_multiplier + Option 17 Cost 3 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_4_value + Option 17 Cost 4 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_4_multiplier + Option 17 Cost 4 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_5_value + Option 17 Cost 5 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_5_multiplier + Option 17 Cost 5 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_6_value + Option 17 Cost 6 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_6_multiplier + Option 17 Cost 6 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_7_value + Option 17 Cost 7 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_7_multiplier + Option 17 Cost 7 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_8_value + Option 17 Cost 8 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_8_multiplier + Option 17 Cost 8 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_9_value + Option 17 Cost 9 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_9_multiplier + Option 17 Cost 9 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_10_value + Option 17 Cost 10 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_10_multiplier + Option 17 Cost 10 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_11_value + Option 17 Cost 11 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_11_multiplier + Option 17 Cost 11 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_12_value + Option 17 Cost 12 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_12_multiplier + Option 17 Cost 12 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_13_value + Option 17 Cost 13 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_13_multiplier + Option 17 Cost 13 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_14_value + Option 17 Cost 14 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_14_multiplier + Option 17 Cost 14 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_15_value + Option 17 Cost 15 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_15_multiplier + Option 17 Cost 15 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_16_value + Option 17 Cost 16 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_16_multiplier + Option 17 Cost 16 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_17_value + Option 17 Cost 17 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_17_multiplier + Option 17 Cost 17 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_18_value + Option 17 Cost 18 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_18_multiplier + Option 17 Cost 18 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_19_value + Option 17 Cost 19 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_19_multiplier + Option 17 Cost 19 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_20_value + Option 17 Cost 20 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_20_multiplier + Option 17 Cost 20 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_21_value + Option 17 Cost 21 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_21_multiplier + Option 17 Cost 21 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_22_value + Option 17 Cost 22 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_22_multiplier + Option 17 Cost 22 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_23_value + Option 17 Cost 23 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_23_multiplier + Option 17 Cost 23 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_24_value + Option 17 Cost 24 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_24_multiplier + Option 17 Cost 24 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_25_value + Option 17 Cost 25 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_25_multiplier + Option 17 Cost 25 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_26_value + Option 17 Cost 26 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_26_multiplier + Option 17 Cost 26 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_27_value + Option 17 Cost 27 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_27_multiplier + Option 17 Cost 27 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_28_value + Option 17 Cost 28 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_28_multiplier + Option 17 Cost 28 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_29_value + Option 17 Cost 29 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_29_multiplier + Option 17 Cost 29 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_30_value + Option 17 Cost 30 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_30_multiplier + Option 17 Cost 30 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_31_value + Option 17 Cost 31 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_31_multiplier + Option 17 Cost 31 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_32_value + Option 17 Cost 32 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_32_multiplier + Option 17 Cost 32 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_33_value + Option 17 Cost 33 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_33_multiplier + Option 17 Cost 33 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_34_value + Option 17 Cost 34 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_34_multiplier + Option 17 Cost 34 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_35_value + Option 17 Cost 35 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_35_multiplier + Option 17 Cost 35 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_36_value + Option 17 Cost 36 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_36_multiplier + Option 17 Cost 36 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_37_value + Option 17 Cost 37 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_37_multiplier + Option 17 Cost 37 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_38_value + Option 17 Cost 38 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_38_multiplier + Option 17 Cost 38 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_39_value + Option 17 Cost 39 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_39_multiplier + Option 17 Cost 39 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_40_value + Option 17 Cost 40 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_40_multiplier + Option 17 Cost 40 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_41_value + Option 17 Cost 41 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_41_multiplier + Option 17 Cost 41 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_42_value + Option 17 Cost 42 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_42_multiplier + Option 17 Cost 42 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_43_value + Option 17 Cost 43 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_43_multiplier + Option 17 Cost 43 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_44_value + Option 17 Cost 44 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_44_multiplier + Option 17 Cost 44 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_45_value + Option 17 Cost 45 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_45_multiplier + Option 17 Cost 45 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_46_value + Option 17 Cost 46 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_46_multiplier + Option 17 Cost 46 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_47_value + Option 17 Cost 47 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_47_multiplier + Option 17 Cost 47 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_48_value + Option 17 Cost 48 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_48_multiplier + Option 17 Cost 48 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_49_value + Option 17 Cost 49 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_49_multiplier + Option 17 Cost 49 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_50_value + Option 17 Cost 50 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_50_multiplier + Option 17 Cost 50 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_51_value + Option 17 Cost 51 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_51_multiplier + Option 17 Cost 51 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_52_value + Option 17 Cost 52 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_52_multiplier + Option 17 Cost 52 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_53_value + Option 17 Cost 53 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_53_multiplier + Option 17 Cost 53 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_54_value + Option 17 Cost 54 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_54_multiplier + Option 17 Cost 54 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_55_value + Option 17 Cost 55 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_55_multiplier + Option 17 Cost 55 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_56_value + Option 17 Cost 56 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_56_multiplier + Option 17 Cost 56 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_57_value + Option 17 Cost 57 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_57_multiplier + Option 17 Cost 57 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_58_value + Option 17 Cost 58 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_58_multiplier + Option 17 Cost 58 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_59_value + Option 17 Cost 59 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_59_multiplier + Option 17 Cost 59 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_cost_60_value + Option 17 Cost 60 Value + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_17_cost_60_multiplier + Option 17 Cost 60 Multiplier + Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_17_lifetime + Option 17 Lifetime + The option lifetime. + Double + years + false + false + + + option_18 + Option 18 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_18_apply_logic + Option 18 Apply Logic + Logic that specifies if the Option 18 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_18_cost_1_value + Option 18 Cost 1 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_1_multiplier + Option 18 Cost 1 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_2_value + Option 18 Cost 2 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_2_multiplier + Option 18 Cost 2 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_3_value + Option 18 Cost 3 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_3_multiplier + Option 18 Cost 3 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_4_value + Option 18 Cost 4 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_4_multiplier + Option 18 Cost 4 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_5_value + Option 18 Cost 5 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_5_multiplier + Option 18 Cost 5 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_6_value + Option 18 Cost 6 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_6_multiplier + Option 18 Cost 6 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_7_value + Option 18 Cost 7 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_7_multiplier + Option 18 Cost 7 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_8_value + Option 18 Cost 8 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_8_multiplier + Option 18 Cost 8 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_9_value + Option 18 Cost 9 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_9_multiplier + Option 18 Cost 9 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_10_value + Option 18 Cost 10 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_10_multiplier + Option 18 Cost 10 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_11_value + Option 18 Cost 11 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_11_multiplier + Option 18 Cost 11 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_12_value + Option 18 Cost 12 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_12_multiplier + Option 18 Cost 12 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_13_value + Option 18 Cost 13 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_13_multiplier + Option 18 Cost 13 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_14_value + Option 18 Cost 14 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_14_multiplier + Option 18 Cost 14 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_15_value + Option 18 Cost 15 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_15_multiplier + Option 18 Cost 15 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_16_value + Option 18 Cost 16 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_16_multiplier + Option 18 Cost 16 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_17_value + Option 18 Cost 17 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_17_multiplier + Option 18 Cost 17 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_18_value + Option 18 Cost 18 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_18_multiplier + Option 18 Cost 18 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_19_value + Option 18 Cost 19 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_19_multiplier + Option 18 Cost 19 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_20_value + Option 18 Cost 20 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_20_multiplier + Option 18 Cost 20 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_21_value + Option 18 Cost 21 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_21_multiplier + Option 18 Cost 21 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_22_value + Option 18 Cost 22 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_22_multiplier + Option 18 Cost 22 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_23_value + Option 18 Cost 23 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_23_multiplier + Option 18 Cost 23 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_24_value + Option 18 Cost 24 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_24_multiplier + Option 18 Cost 24 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_25_value + Option 18 Cost 25 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_25_multiplier + Option 18 Cost 25 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_26_value + Option 18 Cost 26 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_26_multiplier + Option 18 Cost 26 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_27_value + Option 18 Cost 27 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_27_multiplier + Option 18 Cost 27 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_28_value + Option 18 Cost 28 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_28_multiplier + Option 18 Cost 28 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_29_value + Option 18 Cost 29 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_29_multiplier + Option 18 Cost 29 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_30_value + Option 18 Cost 30 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_30_multiplier + Option 18 Cost 30 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_31_value + Option 18 Cost 31 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_31_multiplier + Option 18 Cost 31 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_32_value + Option 18 Cost 32 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_32_multiplier + Option 18 Cost 32 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_33_value + Option 18 Cost 33 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_33_multiplier + Option 18 Cost 33 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_34_value + Option 18 Cost 34 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_34_multiplier + Option 18 Cost 34 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_35_value + Option 18 Cost 35 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_35_multiplier + Option 18 Cost 35 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_36_value + Option 18 Cost 36 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_36_multiplier + Option 18 Cost 36 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_37_value + Option 18 Cost 37 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_37_multiplier + Option 18 Cost 37 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_38_value + Option 18 Cost 38 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_38_multiplier + Option 18 Cost 38 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_39_value + Option 18 Cost 39 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_39_multiplier + Option 18 Cost 39 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_40_value + Option 18 Cost 40 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_40_multiplier + Option 18 Cost 40 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_41_value + Option 18 Cost 41 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_41_multiplier + Option 18 Cost 41 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_42_value + Option 18 Cost 42 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_42_multiplier + Option 18 Cost 42 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_43_value + Option 18 Cost 43 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_43_multiplier + Option 18 Cost 43 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_44_value + Option 18 Cost 44 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_44_multiplier + Option 18 Cost 44 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_45_value + Option 18 Cost 45 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_45_multiplier + Option 18 Cost 45 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_46_value + Option 18 Cost 46 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_46_multiplier + Option 18 Cost 46 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_47_value + Option 18 Cost 47 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_47_multiplier + Option 18 Cost 47 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_48_value + Option 18 Cost 48 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_48_multiplier + Option 18 Cost 48 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_49_value + Option 18 Cost 49 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_49_multiplier + Option 18 Cost 49 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_50_value + Option 18 Cost 50 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_50_multiplier + Option 18 Cost 50 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_51_value + Option 18 Cost 51 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_51_multiplier + Option 18 Cost 51 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_52_value + Option 18 Cost 52 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_52_multiplier + Option 18 Cost 52 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_53_value + Option 18 Cost 53 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_53_multiplier + Option 18 Cost 53 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_54_value + Option 18 Cost 54 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_54_multiplier + Option 18 Cost 54 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_55_value + Option 18 Cost 55 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_55_multiplier + Option 18 Cost 55 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_56_value + Option 18 Cost 56 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_56_multiplier + Option 18 Cost 56 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_57_value + Option 18 Cost 57 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_57_multiplier + Option 18 Cost 57 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_58_value + Option 18 Cost 58 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_58_multiplier + Option 18 Cost 58 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_59_value + Option 18 Cost 59 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_59_multiplier + Option 18 Cost 59 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_cost_60_value + Option 18 Cost 60 Value + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_18_cost_60_multiplier + Option 18 Cost 60 Multiplier + Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_18_lifetime + Option 18 Lifetime + The option lifetime. + Double + years + false + false + + + option_19 + Option 19 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_19_apply_logic + Option 19 Apply Logic + Logic that specifies if the Option 19 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_19_cost_1_value + Option 19 Cost 1 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_1_multiplier + Option 19 Cost 1 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_2_value + Option 19 Cost 2 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_2_multiplier + Option 19 Cost 2 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_3_value + Option 19 Cost 3 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_3_multiplier + Option 19 Cost 3 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_4_value + Option 19 Cost 4 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_4_multiplier + Option 19 Cost 4 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_5_value + Option 19 Cost 5 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_5_multiplier + Option 19 Cost 5 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_6_value + Option 19 Cost 6 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_6_multiplier + Option 19 Cost 6 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_7_value + Option 19 Cost 7 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_7_multiplier + Option 19 Cost 7 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_8_value + Option 19 Cost 8 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_8_multiplier + Option 19 Cost 8 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_9_value + Option 19 Cost 9 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_9_multiplier + Option 19 Cost 9 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_10_value + Option 19 Cost 10 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_10_multiplier + Option 19 Cost 10 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_11_value + Option 19 Cost 11 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_11_multiplier + Option 19 Cost 11 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_12_value + Option 19 Cost 12 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_12_multiplier + Option 19 Cost 12 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_13_value + Option 19 Cost 13 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_13_multiplier + Option 19 Cost 13 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_14_value + Option 19 Cost 14 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_14_multiplier + Option 19 Cost 14 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_15_value + Option 19 Cost 15 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_15_multiplier + Option 19 Cost 15 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_16_value + Option 19 Cost 16 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_16_multiplier + Option 19 Cost 16 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_17_value + Option 19 Cost 17 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_17_multiplier + Option 19 Cost 17 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_18_value + Option 19 Cost 18 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_18_multiplier + Option 19 Cost 18 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_19_value + Option 19 Cost 19 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_19_multiplier + Option 19 Cost 19 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_20_value + Option 19 Cost 20 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_20_multiplier + Option 19 Cost 20 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_21_value + Option 19 Cost 21 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_21_multiplier + Option 19 Cost 21 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_22_value + Option 19 Cost 22 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_22_multiplier + Option 19 Cost 22 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_23_value + Option 19 Cost 23 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_23_multiplier + Option 19 Cost 23 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_24_value + Option 19 Cost 24 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_24_multiplier + Option 19 Cost 24 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_25_value + Option 19 Cost 25 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_25_multiplier + Option 19 Cost 25 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_26_value + Option 19 Cost 26 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_26_multiplier + Option 19 Cost 26 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_27_value + Option 19 Cost 27 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_27_multiplier + Option 19 Cost 27 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_28_value + Option 19 Cost 28 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_28_multiplier + Option 19 Cost 28 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_29_value + Option 19 Cost 29 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_29_multiplier + Option 19 Cost 29 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_30_value + Option 19 Cost 30 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_30_multiplier + Option 19 Cost 30 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_31_value + Option 19 Cost 31 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_31_multiplier + Option 19 Cost 31 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_32_value + Option 19 Cost 32 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_32_multiplier + Option 19 Cost 32 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_33_value + Option 19 Cost 33 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_33_multiplier + Option 19 Cost 33 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_34_value + Option 19 Cost 34 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_34_multiplier + Option 19 Cost 34 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_35_value + Option 19 Cost 35 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_35_multiplier + Option 19 Cost 35 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_36_value + Option 19 Cost 36 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_36_multiplier + Option 19 Cost 36 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_37_value + Option 19 Cost 37 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_37_multiplier + Option 19 Cost 37 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_38_value + Option 19 Cost 38 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_38_multiplier + Option 19 Cost 38 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_39_value + Option 19 Cost 39 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_39_multiplier + Option 19 Cost 39 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_40_value + Option 19 Cost 40 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_40_multiplier + Option 19 Cost 40 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_41_value + Option 19 Cost 41 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_41_multiplier + Option 19 Cost 41 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_42_value + Option 19 Cost 42 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_42_multiplier + Option 19 Cost 42 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_43_value + Option 19 Cost 43 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_43_multiplier + Option 19 Cost 43 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_44_value + Option 19 Cost 44 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_44_multiplier + Option 19 Cost 44 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_45_value + Option 19 Cost 45 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_45_multiplier + Option 19 Cost 45 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_46_value + Option 19 Cost 46 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_46_multiplier + Option 19 Cost 46 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_47_value + Option 19 Cost 47 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_47_multiplier + Option 19 Cost 47 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_48_value + Option 19 Cost 48 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_48_multiplier + Option 19 Cost 48 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_49_value + Option 19 Cost 49 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_49_multiplier + Option 19 Cost 49 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_50_value + Option 19 Cost 50 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_50_multiplier + Option 19 Cost 50 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_51_value + Option 19 Cost 51 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_51_multiplier + Option 19 Cost 51 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_52_value + Option 19 Cost 52 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_52_multiplier + Option 19 Cost 52 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_53_value + Option 19 Cost 53 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_53_multiplier + Option 19 Cost 53 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_54_value + Option 19 Cost 54 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_54_multiplier + Option 19 Cost 54 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_55_value + Option 19 Cost 55 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_55_multiplier + Option 19 Cost 55 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_56_value + Option 19 Cost 56 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_56_multiplier + Option 19 Cost 56 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_57_value + Option 19 Cost 57 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_57_multiplier + Option 19 Cost 57 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_58_value + Option 19 Cost 58 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_58_multiplier + Option 19 Cost 58 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_59_value + Option 19 Cost 59 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_59_multiplier + Option 19 Cost 59 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_cost_60_value + Option 19 Cost 60 Value + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_19_cost_60_multiplier + Option 19 Cost 60 Multiplier + Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_19_lifetime + Option 19 Lifetime + The option lifetime. + Double + years + false + false + + + option_20 + Option 20 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_20_apply_logic + Option 20 Apply Logic + Logic that specifies if the Option 20 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_20_cost_1_value + Option 20 Cost 1 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_1_multiplier + Option 20 Cost 1 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_2_value + Option 20 Cost 2 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_2_multiplier + Option 20 Cost 2 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_3_value + Option 20 Cost 3 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_3_multiplier + Option 20 Cost 3 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_4_value + Option 20 Cost 4 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_4_multiplier + Option 20 Cost 4 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_5_value + Option 20 Cost 5 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_5_multiplier + Option 20 Cost 5 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_6_value + Option 20 Cost 6 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_6_multiplier + Option 20 Cost 6 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_7_value + Option 20 Cost 7 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_7_multiplier + Option 20 Cost 7 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_8_value + Option 20 Cost 8 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_8_multiplier + Option 20 Cost 8 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_9_value + Option 20 Cost 9 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_9_multiplier + Option 20 Cost 9 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_10_value + Option 20 Cost 10 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_10_multiplier + Option 20 Cost 10 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_11_value + Option 20 Cost 11 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_11_multiplier + Option 20 Cost 11 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_12_value + Option 20 Cost 12 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_12_multiplier + Option 20 Cost 12 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_13_value + Option 20 Cost 13 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_13_multiplier + Option 20 Cost 13 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_14_value + Option 20 Cost 14 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_14_multiplier + Option 20 Cost 14 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_15_value + Option 20 Cost 15 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_15_multiplier + Option 20 Cost 15 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_16_value + Option 20 Cost 16 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_16_multiplier + Option 20 Cost 16 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_17_value + Option 20 Cost 17 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_17_multiplier + Option 20 Cost 17 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_18_value + Option 20 Cost 18 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_18_multiplier + Option 20 Cost 18 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_19_value + Option 20 Cost 19 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_19_multiplier + Option 20 Cost 19 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_20_value + Option 20 Cost 20 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_20_multiplier + Option 20 Cost 20 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_21_value + Option 20 Cost 21 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_21_multiplier + Option 20 Cost 21 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_22_value + Option 20 Cost 22 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_22_multiplier + Option 20 Cost 22 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_23_value + Option 20 Cost 23 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_23_multiplier + Option 20 Cost 23 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_24_value + Option 20 Cost 24 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_24_multiplier + Option 20 Cost 24 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_25_value + Option 20 Cost 25 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_25_multiplier + Option 20 Cost 25 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_26_value + Option 20 Cost 26 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_26_multiplier + Option 20 Cost 26 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_27_value + Option 20 Cost 27 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_27_multiplier + Option 20 Cost 27 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_28_value + Option 20 Cost 28 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_28_multiplier + Option 20 Cost 28 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_29_value + Option 20 Cost 29 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_29_multiplier + Option 20 Cost 29 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_30_value + Option 20 Cost 30 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_30_multiplier + Option 20 Cost 30 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_31_value + Option 20 Cost 31 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_31_multiplier + Option 20 Cost 31 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_32_value + Option 20 Cost 32 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_32_multiplier + Option 20 Cost 32 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_33_value + Option 20 Cost 33 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_33_multiplier + Option 20 Cost 33 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_34_value + Option 20 Cost 34 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_34_multiplier + Option 20 Cost 34 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_35_value + Option 20 Cost 35 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_35_multiplier + Option 20 Cost 35 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_36_value + Option 20 Cost 36 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_36_multiplier + Option 20 Cost 36 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_37_value + Option 20 Cost 37 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_37_multiplier + Option 20 Cost 37 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_38_value + Option 20 Cost 38 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_38_multiplier + Option 20 Cost 38 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_39_value + Option 20 Cost 39 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_39_multiplier + Option 20 Cost 39 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_40_value + Option 20 Cost 40 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_40_multiplier + Option 20 Cost 40 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_41_value + Option 20 Cost 41 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_41_multiplier + Option 20 Cost 41 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_42_value + Option 20 Cost 42 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_42_multiplier + Option 20 Cost 42 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_43_value + Option 20 Cost 43 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_43_multiplier + Option 20 Cost 43 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_44_value + Option 20 Cost 44 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_44_multiplier + Option 20 Cost 44 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_45_value + Option 20 Cost 45 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_45_multiplier + Option 20 Cost 45 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_46_value + Option 20 Cost 46 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_46_multiplier + Option 20 Cost 46 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_47_value + Option 20 Cost 47 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_47_multiplier + Option 20 Cost 47 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_48_value + Option 20 Cost 48 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_48_multiplier + Option 20 Cost 48 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_49_value + Option 20 Cost 49 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_49_multiplier + Option 20 Cost 49 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_50_value + Option 20 Cost 50 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_50_multiplier + Option 20 Cost 50 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_51_value + Option 20 Cost 51 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_51_multiplier + Option 20 Cost 51 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_52_value + Option 20 Cost 52 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_52_multiplier + Option 20 Cost 52 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_53_value + Option 20 Cost 53 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_53_multiplier + Option 20 Cost 53 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_54_value + Option 20 Cost 54 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_54_multiplier + Option 20 Cost 54 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_55_value + Option 20 Cost 55 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_55_multiplier + Option 20 Cost 55 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_56_value + Option 20 Cost 56 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_56_multiplier + Option 20 Cost 56 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_57_value + Option 20 Cost 57 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_57_multiplier + Option 20 Cost 57 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_58_value + Option 20 Cost 58 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_58_multiplier + Option 20 Cost 58 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_59_value + Option 20 Cost 59 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_59_multiplier + Option 20 Cost 59 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_cost_60_value + Option 20 Cost 60 Value + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_20_cost_60_multiplier + Option 20 Cost 60 Multiplier + Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_20_lifetime + Option 20 Lifetime + The option lifetime. + Double + years + false + false + + + option_21 + Option 21 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_21_apply_logic + Option 21 Apply Logic + Logic that specifies if the Option 21 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_21_cost_1_value + Option 21 Cost 1 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_1_multiplier + Option 21 Cost 1 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_2_value + Option 21 Cost 2 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_2_multiplier + Option 21 Cost 2 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_3_value + Option 21 Cost 3 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_3_multiplier + Option 21 Cost 3 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_4_value + Option 21 Cost 4 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_4_multiplier + Option 21 Cost 4 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_5_value + Option 21 Cost 5 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_5_multiplier + Option 21 Cost 5 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_6_value + Option 21 Cost 6 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_6_multiplier + Option 21 Cost 6 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_7_value + Option 21 Cost 7 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_7_multiplier + Option 21 Cost 7 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_8_value + Option 21 Cost 8 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_8_multiplier + Option 21 Cost 8 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_9_value + Option 21 Cost 9 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_9_multiplier + Option 21 Cost 9 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_10_value + Option 21 Cost 10 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_10_multiplier + Option 21 Cost 10 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_11_value + Option 21 Cost 11 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_11_multiplier + Option 21 Cost 11 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_12_value + Option 21 Cost 12 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_12_multiplier + Option 21 Cost 12 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_13_value + Option 21 Cost 13 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_13_multiplier + Option 21 Cost 13 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_14_value + Option 21 Cost 14 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_14_multiplier + Option 21 Cost 14 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_15_value + Option 21 Cost 15 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_15_multiplier + Option 21 Cost 15 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_16_value + Option 21 Cost 16 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_16_multiplier + Option 21 Cost 16 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_17_value + Option 21 Cost 17 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_17_multiplier + Option 21 Cost 17 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_18_value + Option 21 Cost 18 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_18_multiplier + Option 21 Cost 18 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_19_value + Option 21 Cost 19 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_19_multiplier + Option 21 Cost 19 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_20_value + Option 21 Cost 20 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_20_multiplier + Option 21 Cost 20 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_21_value + Option 21 Cost 21 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_21_multiplier + Option 21 Cost 21 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_22_value + Option 21 Cost 22 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_22_multiplier + Option 21 Cost 22 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_23_value + Option 21 Cost 23 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_23_multiplier + Option 21 Cost 23 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_24_value + Option 21 Cost 24 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_24_multiplier + Option 21 Cost 24 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_25_value + Option 21 Cost 25 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_25_multiplier + Option 21 Cost 25 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_26_value + Option 21 Cost 26 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_26_multiplier + Option 21 Cost 26 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_27_value + Option 21 Cost 27 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_27_multiplier + Option 21 Cost 27 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_28_value + Option 21 Cost 28 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_28_multiplier + Option 21 Cost 28 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_29_value + Option 21 Cost 29 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_29_multiplier + Option 21 Cost 29 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_30_value + Option 21 Cost 30 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_30_multiplier + Option 21 Cost 30 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_31_value + Option 21 Cost 31 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_31_multiplier + Option 21 Cost 31 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_32_value + Option 21 Cost 32 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_32_multiplier + Option 21 Cost 32 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_33_value + Option 21 Cost 33 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_33_multiplier + Option 21 Cost 33 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_34_value + Option 21 Cost 34 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_34_multiplier + Option 21 Cost 34 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_35_value + Option 21 Cost 35 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_35_multiplier + Option 21 Cost 35 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_36_value + Option 21 Cost 36 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_36_multiplier + Option 21 Cost 36 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_37_value + Option 21 Cost 37 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_37_multiplier + Option 21 Cost 37 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_38_value + Option 21 Cost 38 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_38_multiplier + Option 21 Cost 38 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_39_value + Option 21 Cost 39 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_39_multiplier + Option 21 Cost 39 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_40_value + Option 21 Cost 40 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_40_multiplier + Option 21 Cost 40 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_41_value + Option 21 Cost 41 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_41_multiplier + Option 21 Cost 41 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_42_value + Option 21 Cost 42 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_42_multiplier + Option 21 Cost 42 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_43_value + Option 21 Cost 43 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_43_multiplier + Option 21 Cost 43 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_44_value + Option 21 Cost 44 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_44_multiplier + Option 21 Cost 44 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_45_value + Option 21 Cost 45 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_45_multiplier + Option 21 Cost 45 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_46_value + Option 21 Cost 46 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_46_multiplier + Option 21 Cost 46 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_47_value + Option 21 Cost 47 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_47_multiplier + Option 21 Cost 47 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_48_value + Option 21 Cost 48 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_48_multiplier + Option 21 Cost 48 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_49_value + Option 21 Cost 49 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_49_multiplier + Option 21 Cost 49 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_50_value + Option 21 Cost 50 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_50_multiplier + Option 21 Cost 50 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_51_value + Option 21 Cost 51 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_51_multiplier + Option 21 Cost 51 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_52_value + Option 21 Cost 52 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_52_multiplier + Option 21 Cost 52 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_53_value + Option 21 Cost 53 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_53_multiplier + Option 21 Cost 53 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_54_value + Option 21 Cost 54 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_54_multiplier + Option 21 Cost 54 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_55_value + Option 21 Cost 55 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_55_multiplier + Option 21 Cost 55 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_56_value + Option 21 Cost 56 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_56_multiplier + Option 21 Cost 56 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_57_value + Option 21 Cost 57 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_57_multiplier + Option 21 Cost 57 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_58_value + Option 21 Cost 58 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_58_multiplier + Option 21 Cost 58 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_59_value + Option 21 Cost 59 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_59_multiplier + Option 21 Cost 59 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_cost_60_value + Option 21 Cost 60 Value + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_21_cost_60_multiplier + Option 21 Cost 60 Multiplier + Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_21_lifetime + Option 21 Lifetime + The option lifetime. + Double + years + false + false + + + option_22 + Option 22 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_22_apply_logic + Option 22 Apply Logic + Logic that specifies if the Option 22 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_22_cost_1_value + Option 22 Cost 1 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_1_multiplier + Option 22 Cost 1 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_2_value + Option 22 Cost 2 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_2_multiplier + Option 22 Cost 2 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_3_value + Option 22 Cost 3 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_3_multiplier + Option 22 Cost 3 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_4_value + Option 22 Cost 4 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_4_multiplier + Option 22 Cost 4 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_5_value + Option 22 Cost 5 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_5_multiplier + Option 22 Cost 5 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_6_value + Option 22 Cost 6 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_6_multiplier + Option 22 Cost 6 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_7_value + Option 22 Cost 7 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_7_multiplier + Option 22 Cost 7 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_8_value + Option 22 Cost 8 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_8_multiplier + Option 22 Cost 8 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_9_value + Option 22 Cost 9 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_9_multiplier + Option 22 Cost 9 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_10_value + Option 22 Cost 10 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_10_multiplier + Option 22 Cost 10 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_11_value + Option 22 Cost 11 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_11_multiplier + Option 22 Cost 11 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_12_value + Option 22 Cost 12 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_12_multiplier + Option 22 Cost 12 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_13_value + Option 22 Cost 13 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_13_multiplier + Option 22 Cost 13 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_14_value + Option 22 Cost 14 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_14_multiplier + Option 22 Cost 14 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_15_value + Option 22 Cost 15 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_15_multiplier + Option 22 Cost 15 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_16_value + Option 22 Cost 16 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_16_multiplier + Option 22 Cost 16 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_17_value + Option 22 Cost 17 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_17_multiplier + Option 22 Cost 17 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_18_value + Option 22 Cost 18 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_18_multiplier + Option 22 Cost 18 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_19_value + Option 22 Cost 19 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_19_multiplier + Option 22 Cost 19 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_20_value + Option 22 Cost 20 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_20_multiplier + Option 22 Cost 20 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_21_value + Option 22 Cost 21 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_21_multiplier + Option 22 Cost 21 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_22_value + Option 22 Cost 22 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_22_multiplier + Option 22 Cost 22 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_23_value + Option 22 Cost 23 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_23_multiplier + Option 22 Cost 23 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_24_value + Option 22 Cost 24 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_24_multiplier + Option 22 Cost 24 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_25_value + Option 22 Cost 25 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_25_multiplier + Option 22 Cost 25 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_26_value + Option 22 Cost 26 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_26_multiplier + Option 22 Cost 26 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_27_value + Option 22 Cost 27 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_27_multiplier + Option 22 Cost 27 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_28_value + Option 22 Cost 28 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_28_multiplier + Option 22 Cost 28 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_29_value + Option 22 Cost 29 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_29_multiplier + Option 22 Cost 29 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_30_value + Option 22 Cost 30 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_30_multiplier + Option 22 Cost 30 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_31_value + Option 22 Cost 31 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_31_multiplier + Option 22 Cost 31 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_32_value + Option 22 Cost 32 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_32_multiplier + Option 22 Cost 32 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_33_value + Option 22 Cost 33 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_33_multiplier + Option 22 Cost 33 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_34_value + Option 22 Cost 34 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_34_multiplier + Option 22 Cost 34 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_35_value + Option 22 Cost 35 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_35_multiplier + Option 22 Cost 35 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_36_value + Option 22 Cost 36 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_36_multiplier + Option 22 Cost 36 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_37_value + Option 22 Cost 37 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_37_multiplier + Option 22 Cost 37 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_38_value + Option 22 Cost 38 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_38_multiplier + Option 22 Cost 38 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_39_value + Option 22 Cost 39 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_39_multiplier + Option 22 Cost 39 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_40_value + Option 22 Cost 40 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_40_multiplier + Option 22 Cost 40 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_41_value + Option 22 Cost 41 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_41_multiplier + Option 22 Cost 41 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_42_value + Option 22 Cost 42 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_42_multiplier + Option 22 Cost 42 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_43_value + Option 22 Cost 43 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_43_multiplier + Option 22 Cost 43 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_44_value + Option 22 Cost 44 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_44_multiplier + Option 22 Cost 44 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_45_value + Option 22 Cost 45 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_45_multiplier + Option 22 Cost 45 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_46_value + Option 22 Cost 46 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_46_multiplier + Option 22 Cost 46 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_47_value + Option 22 Cost 47 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_47_multiplier + Option 22 Cost 47 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_48_value + Option 22 Cost 48 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_48_multiplier + Option 22 Cost 48 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_49_value + Option 22 Cost 49 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_49_multiplier + Option 22 Cost 49 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_50_value + Option 22 Cost 50 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_50_multiplier + Option 22 Cost 50 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_51_value + Option 22 Cost 51 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_51_multiplier + Option 22 Cost 51 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_52_value + Option 22 Cost 52 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_52_multiplier + Option 22 Cost 52 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_53_value + Option 22 Cost 53 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_53_multiplier + Option 22 Cost 53 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_54_value + Option 22 Cost 54 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_54_multiplier + Option 22 Cost 54 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_55_value + Option 22 Cost 55 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_55_multiplier + Option 22 Cost 55 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_56_value + Option 22 Cost 56 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_56_multiplier + Option 22 Cost 56 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_57_value + Option 22 Cost 57 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_57_multiplier + Option 22 Cost 57 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_58_value + Option 22 Cost 58 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_58_multiplier + Option 22 Cost 58 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_59_value + Option 22 Cost 59 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_59_multiplier + Option 22 Cost 59 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_cost_60_value + Option 22 Cost 60 Value + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_22_cost_60_multiplier + Option 22 Cost 60 Multiplier + Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_22_lifetime + Option 22 Lifetime + The option lifetime. + Double + years + false + false + + + option_23 + Option 23 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_23_apply_logic + Option 23 Apply Logic + Logic that specifies if the Option 23 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_23_cost_1_value + Option 23 Cost 1 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_1_multiplier + Option 23 Cost 1 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_2_value + Option 23 Cost 2 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_2_multiplier + Option 23 Cost 2 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_3_value + Option 23 Cost 3 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_3_multiplier + Option 23 Cost 3 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_4_value + Option 23 Cost 4 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_4_multiplier + Option 23 Cost 4 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_5_value + Option 23 Cost 5 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_5_multiplier + Option 23 Cost 5 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_6_value + Option 23 Cost 6 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_6_multiplier + Option 23 Cost 6 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_7_value + Option 23 Cost 7 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_7_multiplier + Option 23 Cost 7 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_8_value + Option 23 Cost 8 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_8_multiplier + Option 23 Cost 8 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_9_value + Option 23 Cost 9 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_9_multiplier + Option 23 Cost 9 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_10_value + Option 23 Cost 10 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_10_multiplier + Option 23 Cost 10 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_11_value + Option 23 Cost 11 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_11_multiplier + Option 23 Cost 11 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_12_value + Option 23 Cost 12 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_12_multiplier + Option 23 Cost 12 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_13_value + Option 23 Cost 13 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_13_multiplier + Option 23 Cost 13 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_14_value + Option 23 Cost 14 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_14_multiplier + Option 23 Cost 14 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_15_value + Option 23 Cost 15 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_15_multiplier + Option 23 Cost 15 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_16_value + Option 23 Cost 16 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_16_multiplier + Option 23 Cost 16 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_17_value + Option 23 Cost 17 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_17_multiplier + Option 23 Cost 17 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_18_value + Option 23 Cost 18 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_18_multiplier + Option 23 Cost 18 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_19_value + Option 23 Cost 19 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_19_multiplier + Option 23 Cost 19 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_20_value + Option 23 Cost 20 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_20_multiplier + Option 23 Cost 20 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_21_value + Option 23 Cost 21 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_21_multiplier + Option 23 Cost 21 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_22_value + Option 23 Cost 22 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_22_multiplier + Option 23 Cost 22 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_23_value + Option 23 Cost 23 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_23_multiplier + Option 23 Cost 23 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_24_value + Option 23 Cost 24 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_24_multiplier + Option 23 Cost 24 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_25_value + Option 23 Cost 25 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_25_multiplier + Option 23 Cost 25 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_26_value + Option 23 Cost 26 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_26_multiplier + Option 23 Cost 26 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_27_value + Option 23 Cost 27 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_27_multiplier + Option 23 Cost 27 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_28_value + Option 23 Cost 28 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_28_multiplier + Option 23 Cost 28 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_29_value + Option 23 Cost 29 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_29_multiplier + Option 23 Cost 29 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_30_value + Option 23 Cost 30 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_30_multiplier + Option 23 Cost 30 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_31_value + Option 23 Cost 31 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_31_multiplier + Option 23 Cost 31 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_32_value + Option 23 Cost 32 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_32_multiplier + Option 23 Cost 32 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_33_value + Option 23 Cost 33 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_33_multiplier + Option 23 Cost 33 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_34_value + Option 23 Cost 34 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_34_multiplier + Option 23 Cost 34 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_35_value + Option 23 Cost 35 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_35_multiplier + Option 23 Cost 35 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_36_value + Option 23 Cost 36 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_36_multiplier + Option 23 Cost 36 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_37_value + Option 23 Cost 37 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_37_multiplier + Option 23 Cost 37 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_38_value + Option 23 Cost 38 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_38_multiplier + Option 23 Cost 38 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_39_value + Option 23 Cost 39 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_39_multiplier + Option 23 Cost 39 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_40_value + Option 23 Cost 40 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_40_multiplier + Option 23 Cost 40 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_41_value + Option 23 Cost 41 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_41_multiplier + Option 23 Cost 41 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_42_value + Option 23 Cost 42 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_42_multiplier + Option 23 Cost 42 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_43_value + Option 23 Cost 43 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_43_multiplier + Option 23 Cost 43 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_44_value + Option 23 Cost 44 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_44_multiplier + Option 23 Cost 44 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_45_value + Option 23 Cost 45 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_45_multiplier + Option 23 Cost 45 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_46_value + Option 23 Cost 46 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_46_multiplier + Option 23 Cost 46 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_47_value + Option 23 Cost 47 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_47_multiplier + Option 23 Cost 47 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_48_value + Option 23 Cost 48 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_48_multiplier + Option 23 Cost 48 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_49_value + Option 23 Cost 49 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_49_multiplier + Option 23 Cost 49 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_50_value + Option 23 Cost 50 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_50_multiplier + Option 23 Cost 50 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_51_value + Option 23 Cost 51 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_51_multiplier + Option 23 Cost 51 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_52_value + Option 23 Cost 52 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_52_multiplier + Option 23 Cost 52 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_53_value + Option 23 Cost 53 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_53_multiplier + Option 23 Cost 53 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_54_value + Option 23 Cost 54 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_54_multiplier + Option 23 Cost 54 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_55_value + Option 23 Cost 55 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_55_multiplier + Option 23 Cost 55 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_56_value + Option 23 Cost 56 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_56_multiplier + Option 23 Cost 56 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_57_value + Option 23 Cost 57 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_57_multiplier + Option 23 Cost 57 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_58_value + Option 23 Cost 58 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_58_multiplier + Option 23 Cost 58 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_59_value + Option 23 Cost 59 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_59_multiplier + Option 23 Cost 59 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_cost_60_value + Option 23 Cost 60 Value + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_23_cost_60_multiplier + Option 23 Cost 60 Multiplier + Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_23_lifetime + Option 23 Lifetime + The option lifetime. + Double + years + false + false + + + option_24 + Option 24 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_24_apply_logic + Option 24 Apply Logic + Logic that specifies if the Option 24 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_24_cost_1_value + Option 24 Cost 1 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_1_multiplier + Option 24 Cost 1 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_2_value + Option 24 Cost 2 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_2_multiplier + Option 24 Cost 2 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_3_value + Option 24 Cost 3 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_3_multiplier + Option 24 Cost 3 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_4_value + Option 24 Cost 4 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_4_multiplier + Option 24 Cost 4 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_5_value + Option 24 Cost 5 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_5_multiplier + Option 24 Cost 5 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_6_value + Option 24 Cost 6 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_6_multiplier + Option 24 Cost 6 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_7_value + Option 24 Cost 7 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_7_multiplier + Option 24 Cost 7 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_8_value + Option 24 Cost 8 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_8_multiplier + Option 24 Cost 8 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_9_value + Option 24 Cost 9 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_9_multiplier + Option 24 Cost 9 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_10_value + Option 24 Cost 10 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_10_multiplier + Option 24 Cost 10 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_11_value + Option 24 Cost 11 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_11_multiplier + Option 24 Cost 11 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_12_value + Option 24 Cost 12 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_12_multiplier + Option 24 Cost 12 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_13_value + Option 24 Cost 13 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_13_multiplier + Option 24 Cost 13 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_14_value + Option 24 Cost 14 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_14_multiplier + Option 24 Cost 14 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_15_value + Option 24 Cost 15 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_15_multiplier + Option 24 Cost 15 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_16_value + Option 24 Cost 16 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_16_multiplier + Option 24 Cost 16 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_17_value + Option 24 Cost 17 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_17_multiplier + Option 24 Cost 17 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_18_value + Option 24 Cost 18 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_18_multiplier + Option 24 Cost 18 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_19_value + Option 24 Cost 19 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_19_multiplier + Option 24 Cost 19 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_20_value + Option 24 Cost 20 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_20_multiplier + Option 24 Cost 20 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_21_value + Option 24 Cost 21 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_21_multiplier + Option 24 Cost 21 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_22_value + Option 24 Cost 22 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_22_multiplier + Option 24 Cost 22 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_23_value + Option 24 Cost 23 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_23_multiplier + Option 24 Cost 23 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_24_value + Option 24 Cost 24 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_24_multiplier + Option 24 Cost 24 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_25_value + Option 24 Cost 25 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_25_multiplier + Option 24 Cost 25 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_26_value + Option 24 Cost 26 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_26_multiplier + Option 24 Cost 26 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_27_value + Option 24 Cost 27 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_27_multiplier + Option 24 Cost 27 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_28_value + Option 24 Cost 28 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_28_multiplier + Option 24 Cost 28 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_29_value + Option 24 Cost 29 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_29_multiplier + Option 24 Cost 29 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_30_value + Option 24 Cost 30 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_30_multiplier + Option 24 Cost 30 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_31_value + Option 24 Cost 31 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_31_multiplier + Option 24 Cost 31 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_32_value + Option 24 Cost 32 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_32_multiplier + Option 24 Cost 32 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_33_value + Option 24 Cost 33 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_33_multiplier + Option 24 Cost 33 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_34_value + Option 24 Cost 34 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_34_multiplier + Option 24 Cost 34 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_35_value + Option 24 Cost 35 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_35_multiplier + Option 24 Cost 35 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_36_value + Option 24 Cost 36 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_36_multiplier + Option 24 Cost 36 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_37_value + Option 24 Cost 37 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_37_multiplier + Option 24 Cost 37 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_38_value + Option 24 Cost 38 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_38_multiplier + Option 24 Cost 38 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_39_value + Option 24 Cost 39 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_39_multiplier + Option 24 Cost 39 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_40_value + Option 24 Cost 40 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_40_multiplier + Option 24 Cost 40 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_41_value + Option 24 Cost 41 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_41_multiplier + Option 24 Cost 41 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_42_value + Option 24 Cost 42 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_42_multiplier + Option 24 Cost 42 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_43_value + Option 24 Cost 43 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_43_multiplier + Option 24 Cost 43 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_44_value + Option 24 Cost 44 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_44_multiplier + Option 24 Cost 44 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_45_value + Option 24 Cost 45 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_45_multiplier + Option 24 Cost 45 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_46_value + Option 24 Cost 46 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_46_multiplier + Option 24 Cost 46 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_47_value + Option 24 Cost 47 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_47_multiplier + Option 24 Cost 47 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_48_value + Option 24 Cost 48 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_48_multiplier + Option 24 Cost 48 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_49_value + Option 24 Cost 49 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_49_multiplier + Option 24 Cost 49 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_50_value + Option 24 Cost 50 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_50_multiplier + Option 24 Cost 50 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_51_value + Option 24 Cost 51 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_51_multiplier + Option 24 Cost 51 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_52_value + Option 24 Cost 52 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_52_multiplier + Option 24 Cost 52 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_53_value + Option 24 Cost 53 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_53_multiplier + Option 24 Cost 53 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_54_value + Option 24 Cost 54 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_54_multiplier + Option 24 Cost 54 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_55_value + Option 24 Cost 55 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_55_multiplier + Option 24 Cost 55 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_56_value + Option 24 Cost 56 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_56_multiplier + Option 24 Cost 56 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_57_value + Option 24 Cost 57 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_57_multiplier + Option 24 Cost 57 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_58_value + Option 24 Cost 58 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_58_multiplier + Option 24 Cost 58 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_59_value + Option 24 Cost 59 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_59_multiplier + Option 24 Cost 59 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_cost_60_value + Option 24 Cost 60 Value + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_24_cost_60_multiplier + Option 24 Cost 60 Multiplier + Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_24_lifetime + Option 24 Lifetime + The option lifetime. + Double + years + false + false + + + option_25 + Option 25 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_25_apply_logic + Option 25 Apply Logic + Logic that specifies if the Option 25 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_25_cost_1_value + Option 25 Cost 1 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_1_multiplier + Option 25 Cost 1 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_2_value + Option 25 Cost 2 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_2_multiplier + Option 25 Cost 2 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_3_value + Option 25 Cost 3 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_3_multiplier + Option 25 Cost 3 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_4_value + Option 25 Cost 4 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_4_multiplier + Option 25 Cost 4 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_5_value + Option 25 Cost 5 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_5_multiplier + Option 25 Cost 5 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_6_value + Option 25 Cost 6 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_6_multiplier + Option 25 Cost 6 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_7_value + Option 25 Cost 7 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_7_multiplier + Option 25 Cost 7 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_8_value + Option 25 Cost 8 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_8_multiplier + Option 25 Cost 8 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_9_value + Option 25 Cost 9 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_9_multiplier + Option 25 Cost 9 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_10_value + Option 25 Cost 10 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_10_multiplier + Option 25 Cost 10 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_11_value + Option 25 Cost 11 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_11_multiplier + Option 25 Cost 11 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_12_value + Option 25 Cost 12 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_12_multiplier + Option 25 Cost 12 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_13_value + Option 25 Cost 13 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_13_multiplier + Option 25 Cost 13 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_14_value + Option 25 Cost 14 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_14_multiplier + Option 25 Cost 14 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_15_value + Option 25 Cost 15 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_15_multiplier + Option 25 Cost 15 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_16_value + Option 25 Cost 16 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_16_multiplier + Option 25 Cost 16 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_17_value + Option 25 Cost 17 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_17_multiplier + Option 25 Cost 17 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_18_value + Option 25 Cost 18 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_18_multiplier + Option 25 Cost 18 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_19_value + Option 25 Cost 19 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_19_multiplier + Option 25 Cost 19 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_20_value + Option 25 Cost 20 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_20_multiplier + Option 25 Cost 20 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_21_value + Option 25 Cost 21 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_21_multiplier + Option 25 Cost 21 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_22_value + Option 25 Cost 22 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_22_multiplier + Option 25 Cost 22 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_23_value + Option 25 Cost 23 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_23_multiplier + Option 25 Cost 23 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_24_value + Option 25 Cost 24 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_24_multiplier + Option 25 Cost 24 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_25_value + Option 25 Cost 25 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_25_multiplier + Option 25 Cost 25 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_26_value + Option 25 Cost 26 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_26_multiplier + Option 25 Cost 26 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_27_value + Option 25 Cost 27 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_27_multiplier + Option 25 Cost 27 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_28_value + Option 25 Cost 28 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_28_multiplier + Option 25 Cost 28 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_29_value + Option 25 Cost 29 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_29_multiplier + Option 25 Cost 29 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_30_value + Option 25 Cost 30 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_30_multiplier + Option 25 Cost 30 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_31_value + Option 25 Cost 31 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_31_multiplier + Option 25 Cost 31 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_32_value + Option 25 Cost 32 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_32_multiplier + Option 25 Cost 32 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_33_value + Option 25 Cost 33 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_33_multiplier + Option 25 Cost 33 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_34_value + Option 25 Cost 34 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_34_multiplier + Option 25 Cost 34 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_35_value + Option 25 Cost 35 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_35_multiplier + Option 25 Cost 35 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_36_value + Option 25 Cost 36 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_36_multiplier + Option 25 Cost 36 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_37_value + Option 25 Cost 37 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_37_multiplier + Option 25 Cost 37 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_38_value + Option 25 Cost 38 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_38_multiplier + Option 25 Cost 38 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_39_value + Option 25 Cost 39 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_39_multiplier + Option 25 Cost 39 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_40_value + Option 25 Cost 40 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_40_multiplier + Option 25 Cost 40 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_41_value + Option 25 Cost 41 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_41_multiplier + Option 25 Cost 41 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_42_value + Option 25 Cost 42 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_42_multiplier + Option 25 Cost 42 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_43_value + Option 25 Cost 43 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_43_multiplier + Option 25 Cost 43 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_44_value + Option 25 Cost 44 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_44_multiplier + Option 25 Cost 44 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_45_value + Option 25 Cost 45 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_45_multiplier + Option 25 Cost 45 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_46_value + Option 25 Cost 46 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_46_multiplier + Option 25 Cost 46 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_47_value + Option 25 Cost 47 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_47_multiplier + Option 25 Cost 47 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_48_value + Option 25 Cost 48 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_48_multiplier + Option 25 Cost 48 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_49_value + Option 25 Cost 49 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_49_multiplier + Option 25 Cost 49 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_50_value + Option 25 Cost 50 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_50_multiplier + Option 25 Cost 50 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_51_value + Option 25 Cost 51 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_51_multiplier + Option 25 Cost 51 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_52_value + Option 25 Cost 52 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_52_multiplier + Option 25 Cost 52 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_53_value + Option 25 Cost 53 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_53_multiplier + Option 25 Cost 53 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_54_value + Option 25 Cost 54 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_54_multiplier + Option 25 Cost 54 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_55_value + Option 25 Cost 55 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_55_multiplier + Option 25 Cost 55 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_56_value + Option 25 Cost 56 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_56_multiplier + Option 25 Cost 56 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_57_value + Option 25 Cost 57 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_57_multiplier + Option 25 Cost 57 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_58_value + Option 25 Cost 58 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_58_multiplier + Option 25 Cost 58 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_59_value + Option 25 Cost 59 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_59_multiplier + Option 25 Cost 59 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_cost_60_value + Option 25 Cost 60 Value + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_25_cost_60_multiplier + Option 25 Cost 60 Multiplier + Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_25_lifetime + Option 25 Lifetime + The option lifetime. + Double + years + false + false + + + option_26 + Option 26 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_26_apply_logic + Option 26 Apply Logic + Logic that specifies if the Option 26 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_26_cost_1_value + Option 26 Cost 1 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_1_multiplier + Option 26 Cost 1 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_2_value + Option 26 Cost 2 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_2_multiplier + Option 26 Cost 2 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_3_value + Option 26 Cost 3 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_3_multiplier + Option 26 Cost 3 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_4_value + Option 26 Cost 4 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_4_multiplier + Option 26 Cost 4 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_5_value + Option 26 Cost 5 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_5_multiplier + Option 26 Cost 5 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_6_value + Option 26 Cost 6 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_6_multiplier + Option 26 Cost 6 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_7_value + Option 26 Cost 7 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_7_multiplier + Option 26 Cost 7 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_8_value + Option 26 Cost 8 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_8_multiplier + Option 26 Cost 8 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_9_value + Option 26 Cost 9 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_9_multiplier + Option 26 Cost 9 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_10_value + Option 26 Cost 10 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_10_multiplier + Option 26 Cost 10 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_11_value + Option 26 Cost 11 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_11_multiplier + Option 26 Cost 11 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_12_value + Option 26 Cost 12 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_12_multiplier + Option 26 Cost 12 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_13_value + Option 26 Cost 13 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_13_multiplier + Option 26 Cost 13 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_14_value + Option 26 Cost 14 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_14_multiplier + Option 26 Cost 14 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_15_value + Option 26 Cost 15 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_15_multiplier + Option 26 Cost 15 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_16_value + Option 26 Cost 16 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_16_multiplier + Option 26 Cost 16 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_17_value + Option 26 Cost 17 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_17_multiplier + Option 26 Cost 17 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_18_value + Option 26 Cost 18 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_18_multiplier + Option 26 Cost 18 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_19_value + Option 26 Cost 19 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_19_multiplier + Option 26 Cost 19 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_20_value + Option 26 Cost 20 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_20_multiplier + Option 26 Cost 20 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_21_value + Option 26 Cost 21 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_21_multiplier + Option 26 Cost 21 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_22_value + Option 26 Cost 22 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_22_multiplier + Option 26 Cost 22 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_23_value + Option 26 Cost 23 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_23_multiplier + Option 26 Cost 23 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_24_value + Option 26 Cost 24 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_24_multiplier + Option 26 Cost 24 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_25_value + Option 26 Cost 25 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_25_multiplier + Option 26 Cost 25 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_26_value + Option 26 Cost 26 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_26_multiplier + Option 26 Cost 26 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_27_value + Option 26 Cost 27 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_27_multiplier + Option 26 Cost 27 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_28_value + Option 26 Cost 28 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_28_multiplier + Option 26 Cost 28 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_29_value + Option 26 Cost 29 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_29_multiplier + Option 26 Cost 29 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_30_value + Option 26 Cost 30 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_30_multiplier + Option 26 Cost 30 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_31_value + Option 26 Cost 31 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_31_multiplier + Option 26 Cost 31 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_32_value + Option 26 Cost 32 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_32_multiplier + Option 26 Cost 32 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_33_value + Option 26 Cost 33 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_33_multiplier + Option 26 Cost 33 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_34_value + Option 26 Cost 34 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_34_multiplier + Option 26 Cost 34 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_35_value + Option 26 Cost 35 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_35_multiplier + Option 26 Cost 35 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_36_value + Option 26 Cost 36 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_36_multiplier + Option 26 Cost 36 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_37_value + Option 26 Cost 37 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_37_multiplier + Option 26 Cost 37 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_38_value + Option 26 Cost 38 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_38_multiplier + Option 26 Cost 38 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_39_value + Option 26 Cost 39 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_39_multiplier + Option 26 Cost 39 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_40_value + Option 26 Cost 40 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_40_multiplier + Option 26 Cost 40 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_41_value + Option 26 Cost 41 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_41_multiplier + Option 26 Cost 41 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_42_value + Option 26 Cost 42 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_42_multiplier + Option 26 Cost 42 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_43_value + Option 26 Cost 43 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_43_multiplier + Option 26 Cost 43 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_44_value + Option 26 Cost 44 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_44_multiplier + Option 26 Cost 44 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_45_value + Option 26 Cost 45 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_45_multiplier + Option 26 Cost 45 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_46_value + Option 26 Cost 46 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_46_multiplier + Option 26 Cost 46 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_47_value + Option 26 Cost 47 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_47_multiplier + Option 26 Cost 47 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_48_value + Option 26 Cost 48 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_48_multiplier + Option 26 Cost 48 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_49_value + Option 26 Cost 49 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_49_multiplier + Option 26 Cost 49 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_50_value + Option 26 Cost 50 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_50_multiplier + Option 26 Cost 50 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_51_value + Option 26 Cost 51 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_51_multiplier + Option 26 Cost 51 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_52_value + Option 26 Cost 52 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_52_multiplier + Option 26 Cost 52 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_53_value + Option 26 Cost 53 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_53_multiplier + Option 26 Cost 53 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_54_value + Option 26 Cost 54 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_54_multiplier + Option 26 Cost 54 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_55_value + Option 26 Cost 55 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_55_multiplier + Option 26 Cost 55 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_56_value + Option 26 Cost 56 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_56_multiplier + Option 26 Cost 56 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_57_value + Option 26 Cost 57 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_57_multiplier + Option 26 Cost 57 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_58_value + Option 26 Cost 58 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_58_multiplier + Option 26 Cost 58 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_59_value + Option 26 Cost 59 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_59_multiplier + Option 26 Cost 59 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_cost_60_value + Option 26 Cost 60 Value + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_26_cost_60_multiplier + Option 26 Cost 60 Multiplier + Total option 26 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_26_lifetime + Option 26 Lifetime + The option lifetime. + Double + years + false + false + + + option_27 + Option 27 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_27_apply_logic + Option 27 Apply Logic + Logic that specifies if the Option 27 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_27_cost_1_value + Option 27 Cost 1 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_1_multiplier + Option 27 Cost 1 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_2_value + Option 27 Cost 2 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_2_multiplier + Option 27 Cost 2 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_3_value + Option 27 Cost 3 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_3_multiplier + Option 27 Cost 3 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_4_value + Option 27 Cost 4 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_4_multiplier + Option 27 Cost 4 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_5_value + Option 27 Cost 5 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_5_multiplier + Option 27 Cost 5 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_6_value + Option 27 Cost 6 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_6_multiplier + Option 27 Cost 6 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_7_value + Option 27 Cost 7 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_7_multiplier + Option 27 Cost 7 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_8_value + Option 27 Cost 8 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_8_multiplier + Option 27 Cost 8 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_9_value + Option 27 Cost 9 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_9_multiplier + Option 27 Cost 9 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_10_value + Option 27 Cost 10 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_10_multiplier + Option 27 Cost 10 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_11_value + Option 27 Cost 11 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_11_multiplier + Option 27 Cost 11 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_12_value + Option 27 Cost 12 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_12_multiplier + Option 27 Cost 12 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_13_value + Option 27 Cost 13 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_13_multiplier + Option 27 Cost 13 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_14_value + Option 27 Cost 14 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_14_multiplier + Option 27 Cost 14 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_15_value + Option 27 Cost 15 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_15_multiplier + Option 27 Cost 15 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_16_value + Option 27 Cost 16 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_16_multiplier + Option 27 Cost 16 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_17_value + Option 27 Cost 17 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_17_multiplier + Option 27 Cost 17 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_18_value + Option 27 Cost 18 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_18_multiplier + Option 27 Cost 18 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_19_value + Option 27 Cost 19 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_19_multiplier + Option 27 Cost 19 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_20_value + Option 27 Cost 20 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_20_multiplier + Option 27 Cost 20 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_21_value + Option 27 Cost 21 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_21_multiplier + Option 27 Cost 21 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_22_value + Option 27 Cost 22 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_22_multiplier + Option 27 Cost 22 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_23_value + Option 27 Cost 23 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_23_multiplier + Option 27 Cost 23 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_24_value + Option 27 Cost 24 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_24_multiplier + Option 27 Cost 24 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_25_value + Option 27 Cost 25 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_25_multiplier + Option 27 Cost 25 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_26_value + Option 27 Cost 26 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_26_multiplier + Option 27 Cost 26 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_27_value + Option 27 Cost 27 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_27_multiplier + Option 27 Cost 27 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_28_value + Option 27 Cost 28 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_28_multiplier + Option 27 Cost 28 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_29_value + Option 27 Cost 29 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_29_multiplier + Option 27 Cost 29 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_30_value + Option 27 Cost 30 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_30_multiplier + Option 27 Cost 30 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_31_value + Option 27 Cost 31 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_31_multiplier + Option 27 Cost 31 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_32_value + Option 27 Cost 32 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_32_multiplier + Option 27 Cost 32 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_33_value + Option 27 Cost 33 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_33_multiplier + Option 27 Cost 33 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_34_value + Option 27 Cost 34 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_34_multiplier + Option 27 Cost 34 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_35_value + Option 27 Cost 35 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_35_multiplier + Option 27 Cost 35 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_36_value + Option 27 Cost 36 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_36_multiplier + Option 27 Cost 36 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_37_value + Option 27 Cost 37 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_37_multiplier + Option 27 Cost 37 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_38_value + Option 27 Cost 38 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_38_multiplier + Option 27 Cost 38 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_39_value + Option 27 Cost 39 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_39_multiplier + Option 27 Cost 39 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_40_value + Option 27 Cost 40 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_40_multiplier + Option 27 Cost 40 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_41_value + Option 27 Cost 41 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_41_multiplier + Option 27 Cost 41 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_42_value + Option 27 Cost 42 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_42_multiplier + Option 27 Cost 42 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_43_value + Option 27 Cost 43 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_43_multiplier + Option 27 Cost 43 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_44_value + Option 27 Cost 44 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_44_multiplier + Option 27 Cost 44 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_45_value + Option 27 Cost 45 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_45_multiplier + Option 27 Cost 45 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_46_value + Option 27 Cost 46 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_46_multiplier + Option 27 Cost 46 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_47_value + Option 27 Cost 47 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_47_multiplier + Option 27 Cost 47 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_48_value + Option 27 Cost 48 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_48_multiplier + Option 27 Cost 48 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_49_value + Option 27 Cost 49 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_49_multiplier + Option 27 Cost 49 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_50_value + Option 27 Cost 50 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_50_multiplier + Option 27 Cost 50 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_51_value + Option 27 Cost 51 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_51_multiplier + Option 27 Cost 51 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_52_value + Option 27 Cost 52 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_52_multiplier + Option 27 Cost 52 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_53_value + Option 27 Cost 53 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_53_multiplier + Option 27 Cost 53 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_54_value + Option 27 Cost 54 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_54_multiplier + Option 27 Cost 54 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_55_value + Option 27 Cost 55 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_55_multiplier + Option 27 Cost 55 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_56_value + Option 27 Cost 56 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_56_multiplier + Option 27 Cost 56 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_57_value + Option 27 Cost 57 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_57_multiplier + Option 27 Cost 57 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_58_value + Option 27 Cost 58 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_58_multiplier + Option 27 Cost 58 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_59_value + Option 27 Cost 59 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_59_multiplier + Option 27 Cost 59 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_cost_60_value + Option 27 Cost 60 Value + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_27_cost_60_multiplier + Option 27 Cost 60 Multiplier + Total option 27 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_27_lifetime + Option 27 Lifetime + The option lifetime. + Double + years + false + false + + + option_28 + Option 28 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_28_apply_logic + Option 28 Apply Logic + Logic that specifies if the Option 28 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_28_cost_1_value + Option 28 Cost 1 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_1_multiplier + Option 28 Cost 1 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_2_value + Option 28 Cost 2 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_2_multiplier + Option 28 Cost 2 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_3_value + Option 28 Cost 3 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_3_multiplier + Option 28 Cost 3 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_4_value + Option 28 Cost 4 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_4_multiplier + Option 28 Cost 4 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_5_value + Option 28 Cost 5 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_5_multiplier + Option 28 Cost 5 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_6_value + Option 28 Cost 6 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_6_multiplier + Option 28 Cost 6 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_7_value + Option 28 Cost 7 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_7_multiplier + Option 28 Cost 7 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_8_value + Option 28 Cost 8 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_8_multiplier + Option 28 Cost 8 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_9_value + Option 28 Cost 9 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_9_multiplier + Option 28 Cost 9 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_10_value + Option 28 Cost 10 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_10_multiplier + Option 28 Cost 10 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_11_value + Option 28 Cost 11 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_11_multiplier + Option 28 Cost 11 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_12_value + Option 28 Cost 12 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_12_multiplier + Option 28 Cost 12 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_13_value + Option 28 Cost 13 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_13_multiplier + Option 28 Cost 13 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_14_value + Option 28 Cost 14 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_14_multiplier + Option 28 Cost 14 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_15_value + Option 28 Cost 15 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_15_multiplier + Option 28 Cost 15 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_16_value + Option 28 Cost 16 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_16_multiplier + Option 28 Cost 16 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_17_value + Option 28 Cost 17 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_17_multiplier + Option 28 Cost 17 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_18_value + Option 28 Cost 18 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_18_multiplier + Option 28 Cost 18 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_19_value + Option 28 Cost 19 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_19_multiplier + Option 28 Cost 19 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_20_value + Option 28 Cost 20 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_20_multiplier + Option 28 Cost 20 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_21_value + Option 28 Cost 21 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_21_multiplier + Option 28 Cost 21 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_22_value + Option 28 Cost 22 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_22_multiplier + Option 28 Cost 22 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_23_value + Option 28 Cost 23 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_23_multiplier + Option 28 Cost 23 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_24_value + Option 28 Cost 24 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_24_multiplier + Option 28 Cost 24 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_25_value + Option 28 Cost 25 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_25_multiplier + Option 28 Cost 25 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_26_value + Option 28 Cost 26 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_26_multiplier + Option 28 Cost 26 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_27_value + Option 28 Cost 27 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_27_multiplier + Option 28 Cost 27 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_28_value + Option 28 Cost 28 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_28_multiplier + Option 28 Cost 28 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_29_value + Option 28 Cost 29 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_29_multiplier + Option 28 Cost 29 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_30_value + Option 28 Cost 30 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_30_multiplier + Option 28 Cost 30 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_31_value + Option 28 Cost 31 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_31_multiplier + Option 28 Cost 31 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_32_value + Option 28 Cost 32 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_32_multiplier + Option 28 Cost 32 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_33_value + Option 28 Cost 33 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_33_multiplier + Option 28 Cost 33 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_34_value + Option 28 Cost 34 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_34_multiplier + Option 28 Cost 34 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_35_value + Option 28 Cost 35 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_35_multiplier + Option 28 Cost 35 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_36_value + Option 28 Cost 36 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_36_multiplier + Option 28 Cost 36 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_37_value + Option 28 Cost 37 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_37_multiplier + Option 28 Cost 37 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_38_value + Option 28 Cost 38 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_38_multiplier + Option 28 Cost 38 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_39_value + Option 28 Cost 39 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_39_multiplier + Option 28 Cost 39 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_40_value + Option 28 Cost 40 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_40_multiplier + Option 28 Cost 40 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_41_value + Option 28 Cost 41 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_41_multiplier + Option 28 Cost 41 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_42_value + Option 28 Cost 42 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_42_multiplier + Option 28 Cost 42 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_43_value + Option 28 Cost 43 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_43_multiplier + Option 28 Cost 43 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_44_value + Option 28 Cost 44 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_44_multiplier + Option 28 Cost 44 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_45_value + Option 28 Cost 45 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_45_multiplier + Option 28 Cost 45 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_46_value + Option 28 Cost 46 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_46_multiplier + Option 28 Cost 46 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_47_value + Option 28 Cost 47 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_47_multiplier + Option 28 Cost 47 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_48_value + Option 28 Cost 48 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_48_multiplier + Option 28 Cost 48 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_49_value + Option 28 Cost 49 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_49_multiplier + Option 28 Cost 49 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_50_value + Option 28 Cost 50 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_50_multiplier + Option 28 Cost 50 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_51_value + Option 28 Cost 51 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_51_multiplier + Option 28 Cost 51 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_52_value + Option 28 Cost 52 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_52_multiplier + Option 28 Cost 52 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_53_value + Option 28 Cost 53 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_53_multiplier + Option 28 Cost 53 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_54_value + Option 28 Cost 54 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_54_multiplier + Option 28 Cost 54 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_55_value + Option 28 Cost 55 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_55_multiplier + Option 28 Cost 55 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_56_value + Option 28 Cost 56 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_56_multiplier + Option 28 Cost 56 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_57_value + Option 28 Cost 57 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_57_multiplier + Option 28 Cost 57 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_58_value + Option 28 Cost 58 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_58_multiplier + Option 28 Cost 58 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_59_value + Option 28 Cost 59 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_59_multiplier + Option 28 Cost 59 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_cost_60_value + Option 28 Cost 60 Value + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_28_cost_60_multiplier + Option 28 Cost 60 Multiplier + Total option 28 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_28_lifetime + Option 28 Lifetime + The option lifetime. + Double + years + false + false + + + option_29 + Option 29 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_29_apply_logic + Option 29 Apply Logic + Logic that specifies if the Option 29 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_29_cost_1_value + Option 29 Cost 1 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_1_multiplier + Option 29 Cost 1 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_2_value + Option 29 Cost 2 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_2_multiplier + Option 29 Cost 2 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_3_value + Option 29 Cost 3 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_3_multiplier + Option 29 Cost 3 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_4_value + Option 29 Cost 4 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_4_multiplier + Option 29 Cost 4 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_5_value + Option 29 Cost 5 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_5_multiplier + Option 29 Cost 5 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_6_value + Option 29 Cost 6 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_6_multiplier + Option 29 Cost 6 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_7_value + Option 29 Cost 7 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_7_multiplier + Option 29 Cost 7 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_8_value + Option 29 Cost 8 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_8_multiplier + Option 29 Cost 8 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_9_value + Option 29 Cost 9 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_9_multiplier + Option 29 Cost 9 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_10_value + Option 29 Cost 10 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_10_multiplier + Option 29 Cost 10 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_11_value + Option 29 Cost 11 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_11_multiplier + Option 29 Cost 11 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_12_value + Option 29 Cost 12 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_12_multiplier + Option 29 Cost 12 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_13_value + Option 29 Cost 13 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_13_multiplier + Option 29 Cost 13 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_14_value + Option 29 Cost 14 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_14_multiplier + Option 29 Cost 14 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_15_value + Option 29 Cost 15 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_15_multiplier + Option 29 Cost 15 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_16_value + Option 29 Cost 16 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_16_multiplier + Option 29 Cost 16 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_17_value + Option 29 Cost 17 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_17_multiplier + Option 29 Cost 17 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_18_value + Option 29 Cost 18 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_18_multiplier + Option 29 Cost 18 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_19_value + Option 29 Cost 19 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_19_multiplier + Option 29 Cost 19 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_20_value + Option 29 Cost 20 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_20_multiplier + Option 29 Cost 20 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_21_value + Option 29 Cost 21 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_21_multiplier + Option 29 Cost 21 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_22_value + Option 29 Cost 22 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_22_multiplier + Option 29 Cost 22 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_23_value + Option 29 Cost 23 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_23_multiplier + Option 29 Cost 23 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_24_value + Option 29 Cost 24 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_24_multiplier + Option 29 Cost 24 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_25_value + Option 29 Cost 25 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_25_multiplier + Option 29 Cost 25 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_26_value + Option 29 Cost 26 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_26_multiplier + Option 29 Cost 26 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_27_value + Option 29 Cost 27 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_27_multiplier + Option 29 Cost 27 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_28_value + Option 29 Cost 28 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_28_multiplier + Option 29 Cost 28 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_29_value + Option 29 Cost 29 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_29_multiplier + Option 29 Cost 29 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_30_value + Option 29 Cost 30 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_30_multiplier + Option 29 Cost 30 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_31_value + Option 29 Cost 31 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_31_multiplier + Option 29 Cost 31 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_32_value + Option 29 Cost 32 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_32_multiplier + Option 29 Cost 32 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_33_value + Option 29 Cost 33 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_33_multiplier + Option 29 Cost 33 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_34_value + Option 29 Cost 34 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_34_multiplier + Option 29 Cost 34 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_35_value + Option 29 Cost 35 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_35_multiplier + Option 29 Cost 35 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_36_value + Option 29 Cost 36 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_36_multiplier + Option 29 Cost 36 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_37_value + Option 29 Cost 37 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_37_multiplier + Option 29 Cost 37 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_38_value + Option 29 Cost 38 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_38_multiplier + Option 29 Cost 38 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_39_value + Option 29 Cost 39 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_39_multiplier + Option 29 Cost 39 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_40_value + Option 29 Cost 40 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_40_multiplier + Option 29 Cost 40 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_41_value + Option 29 Cost 41 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_41_multiplier + Option 29 Cost 41 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_42_value + Option 29 Cost 42 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_42_multiplier + Option 29 Cost 42 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_43_value + Option 29 Cost 43 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_43_multiplier + Option 29 Cost 43 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_44_value + Option 29 Cost 44 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_44_multiplier + Option 29 Cost 44 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_45_value + Option 29 Cost 45 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_45_multiplier + Option 29 Cost 45 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_46_value + Option 29 Cost 46 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_46_multiplier + Option 29 Cost 46 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_47_value + Option 29 Cost 47 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_47_multiplier + Option 29 Cost 47 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_48_value + Option 29 Cost 48 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_48_multiplier + Option 29 Cost 48 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_49_value + Option 29 Cost 49 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_49_multiplier + Option 29 Cost 49 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_50_value + Option 29 Cost 50 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_50_multiplier + Option 29 Cost 50 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_51_value + Option 29 Cost 51 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_51_multiplier + Option 29 Cost 51 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_52_value + Option 29 Cost 52 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_52_multiplier + Option 29 Cost 52 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_53_value + Option 29 Cost 53 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_53_multiplier + Option 29 Cost 53 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_54_value + Option 29 Cost 54 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_54_multiplier + Option 29 Cost 54 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_55_value + Option 29 Cost 55 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_55_multiplier + Option 29 Cost 55 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_56_value + Option 29 Cost 56 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_56_multiplier + Option 29 Cost 56 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_57_value + Option 29 Cost 57 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_57_multiplier + Option 29 Cost 57 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_58_value + Option 29 Cost 58 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_58_multiplier + Option 29 Cost 58 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_59_value + Option 29 Cost 59 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_59_multiplier + Option 29 Cost 59 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_cost_60_value + Option 29 Cost 60 Value + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_29_cost_60_multiplier + Option 29 Cost 60 Multiplier + Total option 29 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_29_lifetime + Option 29 Lifetime + The option lifetime. + Double + years + false + false + + + option_30 + Option 30 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_30_apply_logic + Option 30 Apply Logic + Logic that specifies if the Option 30 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_30_cost_1_value + Option 30 Cost 1 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_1_multiplier + Option 30 Cost 1 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_2_value + Option 30 Cost 2 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_2_multiplier + Option 30 Cost 2 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_3_value + Option 30 Cost 3 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_3_multiplier + Option 30 Cost 3 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_4_value + Option 30 Cost 4 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_4_multiplier + Option 30 Cost 4 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_5_value + Option 30 Cost 5 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_5_multiplier + Option 30 Cost 5 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_6_value + Option 30 Cost 6 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_6_multiplier + Option 30 Cost 6 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_7_value + Option 30 Cost 7 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_7_multiplier + Option 30 Cost 7 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_8_value + Option 30 Cost 8 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_8_multiplier + Option 30 Cost 8 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_9_value + Option 30 Cost 9 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_9_multiplier + Option 30 Cost 9 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_10_value + Option 30 Cost 10 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_10_multiplier + Option 30 Cost 10 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_11_value + Option 30 Cost 11 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_11_multiplier + Option 30 Cost 11 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_12_value + Option 30 Cost 12 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_12_multiplier + Option 30 Cost 12 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_13_value + Option 30 Cost 13 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_13_multiplier + Option 30 Cost 13 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_14_value + Option 30 Cost 14 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_14_multiplier + Option 30 Cost 14 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_15_value + Option 30 Cost 15 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_15_multiplier + Option 30 Cost 15 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_16_value + Option 30 Cost 16 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_16_multiplier + Option 30 Cost 16 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_17_value + Option 30 Cost 17 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_17_multiplier + Option 30 Cost 17 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_18_value + Option 30 Cost 18 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_18_multiplier + Option 30 Cost 18 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_19_value + Option 30 Cost 19 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_19_multiplier + Option 30 Cost 19 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_20_value + Option 30 Cost 20 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_20_multiplier + Option 30 Cost 20 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_21_value + Option 30 Cost 21 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_21_multiplier + Option 30 Cost 21 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_22_value + Option 30 Cost 22 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_22_multiplier + Option 30 Cost 22 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_23_value + Option 30 Cost 23 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_23_multiplier + Option 30 Cost 23 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_24_value + Option 30 Cost 24 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_24_multiplier + Option 30 Cost 24 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_25_value + Option 30 Cost 25 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_25_multiplier + Option 30 Cost 25 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_26_value + Option 30 Cost 26 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_26_multiplier + Option 30 Cost 26 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_27_value + Option 30 Cost 27 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_27_multiplier + Option 30 Cost 27 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_28_value + Option 30 Cost 28 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_28_multiplier + Option 30 Cost 28 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_29_value + Option 30 Cost 29 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_29_multiplier + Option 30 Cost 29 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_30_value + Option 30 Cost 30 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_30_multiplier + Option 30 Cost 30 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_31_value + Option 30 Cost 31 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_31_multiplier + Option 30 Cost 31 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_32_value + Option 30 Cost 32 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_32_multiplier + Option 30 Cost 32 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_33_value + Option 30 Cost 33 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_33_multiplier + Option 30 Cost 33 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_34_value + Option 30 Cost 34 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_34_multiplier + Option 30 Cost 34 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_35_value + Option 30 Cost 35 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_35_multiplier + Option 30 Cost 35 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_36_value + Option 30 Cost 36 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_36_multiplier + Option 30 Cost 36 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_37_value + Option 30 Cost 37 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_37_multiplier + Option 30 Cost 37 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_38_value + Option 30 Cost 38 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_38_multiplier + Option 30 Cost 38 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_39_value + Option 30 Cost 39 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_39_multiplier + Option 30 Cost 39 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_40_value + Option 30 Cost 40 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_40_multiplier + Option 30 Cost 40 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_41_value + Option 30 Cost 41 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_41_multiplier + Option 30 Cost 41 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_42_value + Option 30 Cost 42 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_42_multiplier + Option 30 Cost 42 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_43_value + Option 30 Cost 43 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_43_multiplier + Option 30 Cost 43 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_44_value + Option 30 Cost 44 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_44_multiplier + Option 30 Cost 44 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_45_value + Option 30 Cost 45 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_45_multiplier + Option 30 Cost 45 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_46_value + Option 30 Cost 46 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_46_multiplier + Option 30 Cost 46 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_47_value + Option 30 Cost 47 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_47_multiplier + Option 30 Cost 47 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_48_value + Option 30 Cost 48 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_48_multiplier + Option 30 Cost 48 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_49_value + Option 30 Cost 49 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_49_multiplier + Option 30 Cost 49 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_50_value + Option 30 Cost 50 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_50_multiplier + Option 30 Cost 50 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_51_value + Option 30 Cost 51 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_51_multiplier + Option 30 Cost 51 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_52_value + Option 30 Cost 52 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_52_multiplier + Option 30 Cost 52 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_53_value + Option 30 Cost 53 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_53_multiplier + Option 30 Cost 53 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_54_value + Option 30 Cost 54 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_54_multiplier + Option 30 Cost 54 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_55_value + Option 30 Cost 55 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_55_multiplier + Option 30 Cost 55 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_56_value + Option 30 Cost 56 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_56_multiplier + Option 30 Cost 56 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_57_value + Option 30 Cost 57 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_57_multiplier + Option 30 Cost 57 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_58_value + Option 30 Cost 58 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_58_multiplier + Option 30 Cost 58 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_59_value + Option 30 Cost 59 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_59_multiplier + Option 30 Cost 59 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_cost_60_value + Option 30 Cost 60 Value + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_30_cost_60_multiplier + Option 30 Cost 60 Multiplier + Total option 30 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_30_lifetime + Option 30 Lifetime + The option lifetime. + Double + years + false + false + + + option_31 + Option 31 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_31_apply_logic + Option 31 Apply Logic + Logic that specifies if the Option 31 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_31_cost_1_value + Option 31 Cost 1 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_1_multiplier + Option 31 Cost 1 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_2_value + Option 31 Cost 2 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_2_multiplier + Option 31 Cost 2 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_3_value + Option 31 Cost 3 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_3_multiplier + Option 31 Cost 3 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_4_value + Option 31 Cost 4 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_4_multiplier + Option 31 Cost 4 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_5_value + Option 31 Cost 5 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_5_multiplier + Option 31 Cost 5 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_6_value + Option 31 Cost 6 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_6_multiplier + Option 31 Cost 6 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_7_value + Option 31 Cost 7 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_7_multiplier + Option 31 Cost 7 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_8_value + Option 31 Cost 8 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_8_multiplier + Option 31 Cost 8 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_9_value + Option 31 Cost 9 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_9_multiplier + Option 31 Cost 9 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_10_value + Option 31 Cost 10 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_10_multiplier + Option 31 Cost 10 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_11_value + Option 31 Cost 11 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_11_multiplier + Option 31 Cost 11 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_12_value + Option 31 Cost 12 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_12_multiplier + Option 31 Cost 12 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_13_value + Option 31 Cost 13 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_13_multiplier + Option 31 Cost 13 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_14_value + Option 31 Cost 14 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_14_multiplier + Option 31 Cost 14 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_15_value + Option 31 Cost 15 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_15_multiplier + Option 31 Cost 15 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_16_value + Option 31 Cost 16 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_16_multiplier + Option 31 Cost 16 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_17_value + Option 31 Cost 17 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_17_multiplier + Option 31 Cost 17 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_18_value + Option 31 Cost 18 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_18_multiplier + Option 31 Cost 18 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_19_value + Option 31 Cost 19 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_19_multiplier + Option 31 Cost 19 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_20_value + Option 31 Cost 20 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_20_multiplier + Option 31 Cost 20 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_21_value + Option 31 Cost 21 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_21_multiplier + Option 31 Cost 21 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_22_value + Option 31 Cost 22 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_22_multiplier + Option 31 Cost 22 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_23_value + Option 31 Cost 23 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_23_multiplier + Option 31 Cost 23 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_24_value + Option 31 Cost 24 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_24_multiplier + Option 31 Cost 24 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_25_value + Option 31 Cost 25 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_25_multiplier + Option 31 Cost 25 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_26_value + Option 31 Cost 26 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_26_multiplier + Option 31 Cost 26 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_27_value + Option 31 Cost 27 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_27_multiplier + Option 31 Cost 27 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_28_value + Option 31 Cost 28 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_28_multiplier + Option 31 Cost 28 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_29_value + Option 31 Cost 29 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_29_multiplier + Option 31 Cost 29 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_30_value + Option 31 Cost 30 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_30_multiplier + Option 31 Cost 30 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_31_value + Option 31 Cost 31 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_31_multiplier + Option 31 Cost 31 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_32_value + Option 31 Cost 32 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_32_multiplier + Option 31 Cost 32 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_33_value + Option 31 Cost 33 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_33_multiplier + Option 31 Cost 33 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_34_value + Option 31 Cost 34 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_34_multiplier + Option 31 Cost 34 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_35_value + Option 31 Cost 35 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_35_multiplier + Option 31 Cost 35 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_36_value + Option 31 Cost 36 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_36_multiplier + Option 31 Cost 36 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_37_value + Option 31 Cost 37 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_37_multiplier + Option 31 Cost 37 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_38_value + Option 31 Cost 38 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_38_multiplier + Option 31 Cost 38 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_39_value + Option 31 Cost 39 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_39_multiplier + Option 31 Cost 39 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_40_value + Option 31 Cost 40 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_40_multiplier + Option 31 Cost 40 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_41_value + Option 31 Cost 41 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_41_multiplier + Option 31 Cost 41 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_42_value + Option 31 Cost 42 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_42_multiplier + Option 31 Cost 42 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_43_value + Option 31 Cost 43 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_43_multiplier + Option 31 Cost 43 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_44_value + Option 31 Cost 44 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_44_multiplier + Option 31 Cost 44 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_45_value + Option 31 Cost 45 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_45_multiplier + Option 31 Cost 45 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_46_value + Option 31 Cost 46 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_46_multiplier + Option 31 Cost 46 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_47_value + Option 31 Cost 47 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_47_multiplier + Option 31 Cost 47 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_48_value + Option 31 Cost 48 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_48_multiplier + Option 31 Cost 48 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_49_value + Option 31 Cost 49 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_49_multiplier + Option 31 Cost 49 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_50_value + Option 31 Cost 50 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_50_multiplier + Option 31 Cost 50 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_51_value + Option 31 Cost 51 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_51_multiplier + Option 31 Cost 51 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_52_value + Option 31 Cost 52 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_52_multiplier + Option 31 Cost 52 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_53_value + Option 31 Cost 53 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_53_multiplier + Option 31 Cost 53 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_54_value + Option 31 Cost 54 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_54_multiplier + Option 31 Cost 54 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_55_value + Option 31 Cost 55 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_55_multiplier + Option 31 Cost 55 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_56_value + Option 31 Cost 56 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_56_multiplier + Option 31 Cost 56 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_57_value + Option 31 Cost 57 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_57_multiplier + Option 31 Cost 57 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_58_value + Option 31 Cost 58 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_58_multiplier + Option 31 Cost 58 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_59_value + Option 31 Cost 59 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_59_multiplier + Option 31 Cost 59 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_cost_60_value + Option 31 Cost 60 Value + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_31_cost_60_multiplier + Option 31 Cost 60 Multiplier + Total option 31 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_31_lifetime + Option 31 Lifetime + The option lifetime. + Double + years + false + false + + + option_32 + Option 32 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_32_apply_logic + Option 32 Apply Logic + Logic that specifies if the Option 32 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_32_cost_1_value + Option 32 Cost 1 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_1_multiplier + Option 32 Cost 1 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_2_value + Option 32 Cost 2 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_2_multiplier + Option 32 Cost 2 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_3_value + Option 32 Cost 3 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_3_multiplier + Option 32 Cost 3 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_4_value + Option 32 Cost 4 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_4_multiplier + Option 32 Cost 4 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_5_value + Option 32 Cost 5 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_5_multiplier + Option 32 Cost 5 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_6_value + Option 32 Cost 6 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_6_multiplier + Option 32 Cost 6 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_7_value + Option 32 Cost 7 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_7_multiplier + Option 32 Cost 7 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_8_value + Option 32 Cost 8 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_8_multiplier + Option 32 Cost 8 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_9_value + Option 32 Cost 9 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_9_multiplier + Option 32 Cost 9 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_10_value + Option 32 Cost 10 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_10_multiplier + Option 32 Cost 10 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_11_value + Option 32 Cost 11 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_11_multiplier + Option 32 Cost 11 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_12_value + Option 32 Cost 12 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_12_multiplier + Option 32 Cost 12 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_13_value + Option 32 Cost 13 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_13_multiplier + Option 32 Cost 13 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_14_value + Option 32 Cost 14 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_14_multiplier + Option 32 Cost 14 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_15_value + Option 32 Cost 15 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_15_multiplier + Option 32 Cost 15 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_16_value + Option 32 Cost 16 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_16_multiplier + Option 32 Cost 16 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_17_value + Option 32 Cost 17 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_17_multiplier + Option 32 Cost 17 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_18_value + Option 32 Cost 18 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_18_multiplier + Option 32 Cost 18 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_19_value + Option 32 Cost 19 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_19_multiplier + Option 32 Cost 19 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_20_value + Option 32 Cost 20 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_20_multiplier + Option 32 Cost 20 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_21_value + Option 32 Cost 21 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_21_multiplier + Option 32 Cost 21 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_22_value + Option 32 Cost 22 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_22_multiplier + Option 32 Cost 22 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_23_value + Option 32 Cost 23 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_23_multiplier + Option 32 Cost 23 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_24_value + Option 32 Cost 24 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_24_multiplier + Option 32 Cost 24 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_25_value + Option 32 Cost 25 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_25_multiplier + Option 32 Cost 25 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_26_value + Option 32 Cost 26 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_26_multiplier + Option 32 Cost 26 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_27_value + Option 32 Cost 27 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_27_multiplier + Option 32 Cost 27 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_28_value + Option 32 Cost 28 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_28_multiplier + Option 32 Cost 28 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_29_value + Option 32 Cost 29 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_29_multiplier + Option 32 Cost 29 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_30_value + Option 32 Cost 30 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_30_multiplier + Option 32 Cost 30 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_31_value + Option 32 Cost 31 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_31_multiplier + Option 32 Cost 31 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_32_value + Option 32 Cost 32 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_32_multiplier + Option 32 Cost 32 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_33_value + Option 32 Cost 33 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_33_multiplier + Option 32 Cost 33 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_34_value + Option 32 Cost 34 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_34_multiplier + Option 32 Cost 34 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_35_value + Option 32 Cost 35 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_35_multiplier + Option 32 Cost 35 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_36_value + Option 32 Cost 36 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_36_multiplier + Option 32 Cost 36 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_37_value + Option 32 Cost 37 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_37_multiplier + Option 32 Cost 37 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_38_value + Option 32 Cost 38 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_38_multiplier + Option 32 Cost 38 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_39_value + Option 32 Cost 39 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_39_multiplier + Option 32 Cost 39 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_40_value + Option 32 Cost 40 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_40_multiplier + Option 32 Cost 40 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_41_value + Option 32 Cost 41 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_41_multiplier + Option 32 Cost 41 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_42_value + Option 32 Cost 42 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_42_multiplier + Option 32 Cost 42 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_43_value + Option 32 Cost 43 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_43_multiplier + Option 32 Cost 43 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_44_value + Option 32 Cost 44 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_44_multiplier + Option 32 Cost 44 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_45_value + Option 32 Cost 45 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_45_multiplier + Option 32 Cost 45 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_46_value + Option 32 Cost 46 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_46_multiplier + Option 32 Cost 46 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_47_value + Option 32 Cost 47 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_47_multiplier + Option 32 Cost 47 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_48_value + Option 32 Cost 48 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_48_multiplier + Option 32 Cost 48 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_49_value + Option 32 Cost 49 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_49_multiplier + Option 32 Cost 49 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_50_value + Option 32 Cost 50 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_50_multiplier + Option 32 Cost 50 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_51_value + Option 32 Cost 51 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_51_multiplier + Option 32 Cost 51 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_52_value + Option 32 Cost 52 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_52_multiplier + Option 32 Cost 52 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_53_value + Option 32 Cost 53 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_53_multiplier + Option 32 Cost 53 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_54_value + Option 32 Cost 54 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_54_multiplier + Option 32 Cost 54 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_55_value + Option 32 Cost 55 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_55_multiplier + Option 32 Cost 55 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_56_value + Option 32 Cost 56 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_56_multiplier + Option 32 Cost 56 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_57_value + Option 32 Cost 57 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_57_multiplier + Option 32 Cost 57 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_58_value + Option 32 Cost 58 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_58_multiplier + Option 32 Cost 58 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_59_value + Option 32 Cost 59 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_59_multiplier + Option 32 Cost 59 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_cost_60_value + Option 32 Cost 60 Value + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_32_cost_60_multiplier + Option 32 Cost 60 Multiplier + Total option 32 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_32_lifetime + Option 32 Lifetime + The option lifetime. + Double + years + false + false + + + option_33 + Option 33 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_33_apply_logic + Option 33 Apply Logic + Logic that specifies if the Option 33 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_33_cost_1_value + Option 33 Cost 1 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_1_multiplier + Option 33 Cost 1 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_2_value + Option 33 Cost 2 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_2_multiplier + Option 33 Cost 2 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_3_value + Option 33 Cost 3 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_3_multiplier + Option 33 Cost 3 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_4_value + Option 33 Cost 4 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_4_multiplier + Option 33 Cost 4 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_5_value + Option 33 Cost 5 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_5_multiplier + Option 33 Cost 5 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_6_value + Option 33 Cost 6 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_6_multiplier + Option 33 Cost 6 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_7_value + Option 33 Cost 7 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_7_multiplier + Option 33 Cost 7 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_8_value + Option 33 Cost 8 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_8_multiplier + Option 33 Cost 8 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_9_value + Option 33 Cost 9 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_9_multiplier + Option 33 Cost 9 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_10_value + Option 33 Cost 10 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_10_multiplier + Option 33 Cost 10 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_11_value + Option 33 Cost 11 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_11_multiplier + Option 33 Cost 11 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_12_value + Option 33 Cost 12 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_12_multiplier + Option 33 Cost 12 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_13_value + Option 33 Cost 13 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_13_multiplier + Option 33 Cost 13 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_14_value + Option 33 Cost 14 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_14_multiplier + Option 33 Cost 14 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_15_value + Option 33 Cost 15 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_15_multiplier + Option 33 Cost 15 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_16_value + Option 33 Cost 16 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_16_multiplier + Option 33 Cost 16 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_17_value + Option 33 Cost 17 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_17_multiplier + Option 33 Cost 17 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_18_value + Option 33 Cost 18 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_18_multiplier + Option 33 Cost 18 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_19_value + Option 33 Cost 19 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_19_multiplier + Option 33 Cost 19 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_20_value + Option 33 Cost 20 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_20_multiplier + Option 33 Cost 20 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_21_value + Option 33 Cost 21 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_21_multiplier + Option 33 Cost 21 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_22_value + Option 33 Cost 22 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_22_multiplier + Option 33 Cost 22 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_23_value + Option 33 Cost 23 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_23_multiplier + Option 33 Cost 23 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_24_value + Option 33 Cost 24 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_24_multiplier + Option 33 Cost 24 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_25_value + Option 33 Cost 25 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_25_multiplier + Option 33 Cost 25 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_26_value + Option 33 Cost 26 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_26_multiplier + Option 33 Cost 26 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_27_value + Option 33 Cost 27 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_27_multiplier + Option 33 Cost 27 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_28_value + Option 33 Cost 28 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_28_multiplier + Option 33 Cost 28 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_29_value + Option 33 Cost 29 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_29_multiplier + Option 33 Cost 29 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_30_value + Option 33 Cost 30 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_30_multiplier + Option 33 Cost 30 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_31_value + Option 33 Cost 31 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_31_multiplier + Option 33 Cost 31 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_32_value + Option 33 Cost 32 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_32_multiplier + Option 33 Cost 32 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_33_value + Option 33 Cost 33 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_33_multiplier + Option 33 Cost 33 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_34_value + Option 33 Cost 34 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_34_multiplier + Option 33 Cost 34 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_35_value + Option 33 Cost 35 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_35_multiplier + Option 33 Cost 35 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_36_value + Option 33 Cost 36 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_36_multiplier + Option 33 Cost 36 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_37_value + Option 33 Cost 37 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_37_multiplier + Option 33 Cost 37 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_38_value + Option 33 Cost 38 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_38_multiplier + Option 33 Cost 38 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_39_value + Option 33 Cost 39 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_39_multiplier + Option 33 Cost 39 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_40_value + Option 33 Cost 40 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_40_multiplier + Option 33 Cost 40 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_41_value + Option 33 Cost 41 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_41_multiplier + Option 33 Cost 41 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_42_value + Option 33 Cost 42 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_42_multiplier + Option 33 Cost 42 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_43_value + Option 33 Cost 43 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_43_multiplier + Option 33 Cost 43 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_44_value + Option 33 Cost 44 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_44_multiplier + Option 33 Cost 44 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_45_value + Option 33 Cost 45 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_45_multiplier + Option 33 Cost 45 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_46_value + Option 33 Cost 46 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_46_multiplier + Option 33 Cost 46 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_47_value + Option 33 Cost 47 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_47_multiplier + Option 33 Cost 47 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_48_value + Option 33 Cost 48 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_48_multiplier + Option 33 Cost 48 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_49_value + Option 33 Cost 49 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_49_multiplier + Option 33 Cost 49 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_50_value + Option 33 Cost 50 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_50_multiplier + Option 33 Cost 50 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_51_value + Option 33 Cost 51 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_51_multiplier + Option 33 Cost 51 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_52_value + Option 33 Cost 52 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_52_multiplier + Option 33 Cost 52 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_53_value + Option 33 Cost 53 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_53_multiplier + Option 33 Cost 53 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_54_value + Option 33 Cost 54 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_54_multiplier + Option 33 Cost 54 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_55_value + Option 33 Cost 55 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_55_multiplier + Option 33 Cost 55 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_56_value + Option 33 Cost 56 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_56_multiplier + Option 33 Cost 56 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_57_value + Option 33 Cost 57 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_57_multiplier + Option 33 Cost 57 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_58_value + Option 33 Cost 58 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_58_multiplier + Option 33 Cost 58 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_59_value + Option 33 Cost 59 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_59_multiplier + Option 33 Cost 59 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_cost_60_value + Option 33 Cost 60 Value + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_33_cost_60_multiplier + Option 33 Cost 60 Multiplier + Total option 33 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_33_lifetime + Option 33 Lifetime + The option lifetime. + Double + years + false + false + + + option_34 + Option 34 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_34_apply_logic + Option 34 Apply Logic + Logic that specifies if the Option 34 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_34_cost_1_value + Option 34 Cost 1 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_1_multiplier + Option 34 Cost 1 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_2_value + Option 34 Cost 2 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_2_multiplier + Option 34 Cost 2 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_3_value + Option 34 Cost 3 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_3_multiplier + Option 34 Cost 3 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_4_value + Option 34 Cost 4 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_4_multiplier + Option 34 Cost 4 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_5_value + Option 34 Cost 5 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_5_multiplier + Option 34 Cost 5 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_6_value + Option 34 Cost 6 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_6_multiplier + Option 34 Cost 6 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_7_value + Option 34 Cost 7 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_7_multiplier + Option 34 Cost 7 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_8_value + Option 34 Cost 8 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_8_multiplier + Option 34 Cost 8 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_9_value + Option 34 Cost 9 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_9_multiplier + Option 34 Cost 9 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_10_value + Option 34 Cost 10 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_10_multiplier + Option 34 Cost 10 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_11_value + Option 34 Cost 11 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_11_multiplier + Option 34 Cost 11 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_12_value + Option 34 Cost 12 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_12_multiplier + Option 34 Cost 12 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_13_value + Option 34 Cost 13 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_13_multiplier + Option 34 Cost 13 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_14_value + Option 34 Cost 14 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_14_multiplier + Option 34 Cost 14 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_15_value + Option 34 Cost 15 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_15_multiplier + Option 34 Cost 15 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_16_value + Option 34 Cost 16 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_16_multiplier + Option 34 Cost 16 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_17_value + Option 34 Cost 17 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_17_multiplier + Option 34 Cost 17 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_18_value + Option 34 Cost 18 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_18_multiplier + Option 34 Cost 18 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_19_value + Option 34 Cost 19 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_19_multiplier + Option 34 Cost 19 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_20_value + Option 34 Cost 20 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_20_multiplier + Option 34 Cost 20 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_21_value + Option 34 Cost 21 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_21_multiplier + Option 34 Cost 21 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_22_value + Option 34 Cost 22 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_22_multiplier + Option 34 Cost 22 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_23_value + Option 34 Cost 23 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_23_multiplier + Option 34 Cost 23 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_24_value + Option 34 Cost 24 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_24_multiplier + Option 34 Cost 24 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_25_value + Option 34 Cost 25 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_25_multiplier + Option 34 Cost 25 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_26_value + Option 34 Cost 26 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_26_multiplier + Option 34 Cost 26 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_27_value + Option 34 Cost 27 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_27_multiplier + Option 34 Cost 27 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_28_value + Option 34 Cost 28 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_28_multiplier + Option 34 Cost 28 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_29_value + Option 34 Cost 29 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_29_multiplier + Option 34 Cost 29 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_30_value + Option 34 Cost 30 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_30_multiplier + Option 34 Cost 30 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_31_value + Option 34 Cost 31 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_31_multiplier + Option 34 Cost 31 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_32_value + Option 34 Cost 32 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_32_multiplier + Option 34 Cost 32 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_33_value + Option 34 Cost 33 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_33_multiplier + Option 34 Cost 33 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_34_value + Option 34 Cost 34 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_34_multiplier + Option 34 Cost 34 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_35_value + Option 34 Cost 35 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_35_multiplier + Option 34 Cost 35 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_36_value + Option 34 Cost 36 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_36_multiplier + Option 34 Cost 36 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_37_value + Option 34 Cost 37 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_37_multiplier + Option 34 Cost 37 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_38_value + Option 34 Cost 38 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_38_multiplier + Option 34 Cost 38 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_39_value + Option 34 Cost 39 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_39_multiplier + Option 34 Cost 39 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_40_value + Option 34 Cost 40 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_40_multiplier + Option 34 Cost 40 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_41_value + Option 34 Cost 41 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_41_multiplier + Option 34 Cost 41 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_42_value + Option 34 Cost 42 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_42_multiplier + Option 34 Cost 42 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_43_value + Option 34 Cost 43 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_43_multiplier + Option 34 Cost 43 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_44_value + Option 34 Cost 44 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_44_multiplier + Option 34 Cost 44 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_45_value + Option 34 Cost 45 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_45_multiplier + Option 34 Cost 45 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_46_value + Option 34 Cost 46 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_46_multiplier + Option 34 Cost 46 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_47_value + Option 34 Cost 47 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_47_multiplier + Option 34 Cost 47 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_48_value + Option 34 Cost 48 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_48_multiplier + Option 34 Cost 48 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_49_value + Option 34 Cost 49 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_49_multiplier + Option 34 Cost 49 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_50_value + Option 34 Cost 50 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_50_multiplier + Option 34 Cost 50 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_51_value + Option 34 Cost 51 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_51_multiplier + Option 34 Cost 51 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_52_value + Option 34 Cost 52 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_52_multiplier + Option 34 Cost 52 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_53_value + Option 34 Cost 53 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_53_multiplier + Option 34 Cost 53 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_54_value + Option 34 Cost 54 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_54_multiplier + Option 34 Cost 54 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_55_value + Option 34 Cost 55 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_55_multiplier + Option 34 Cost 55 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_56_value + Option 34 Cost 56 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_56_multiplier + Option 34 Cost 56 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_57_value + Option 34 Cost 57 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_57_multiplier + Option 34 Cost 57 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_58_value + Option 34 Cost 58 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_58_multiplier + Option 34 Cost 58 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_59_value + Option 34 Cost 59 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_59_multiplier + Option 34 Cost 59 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_cost_60_value + Option 34 Cost 60 Value + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_34_cost_60_multiplier + Option 34 Cost 60 Multiplier + Total option 34 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_34_lifetime + Option 34 Lifetime + The option lifetime. + Double + years + false + false + + + option_35 + Option 35 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_35_apply_logic + Option 35 Apply Logic + Logic that specifies if the Option 35 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_35_cost_1_value + Option 35 Cost 1 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_1_multiplier + Option 35 Cost 1 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_2_value + Option 35 Cost 2 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_2_multiplier + Option 35 Cost 2 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_3_value + Option 35 Cost 3 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_3_multiplier + Option 35 Cost 3 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_4_value + Option 35 Cost 4 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_4_multiplier + Option 35 Cost 4 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_5_value + Option 35 Cost 5 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_5_multiplier + Option 35 Cost 5 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_6_value + Option 35 Cost 6 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_6_multiplier + Option 35 Cost 6 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_7_value + Option 35 Cost 7 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_7_multiplier + Option 35 Cost 7 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_8_value + Option 35 Cost 8 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_8_multiplier + Option 35 Cost 8 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_9_value + Option 35 Cost 9 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_9_multiplier + Option 35 Cost 9 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_10_value + Option 35 Cost 10 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_10_multiplier + Option 35 Cost 10 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_11_value + Option 35 Cost 11 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_11_multiplier + Option 35 Cost 11 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_12_value + Option 35 Cost 12 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_12_multiplier + Option 35 Cost 12 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_13_value + Option 35 Cost 13 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_13_multiplier + Option 35 Cost 13 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_14_value + Option 35 Cost 14 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_14_multiplier + Option 35 Cost 14 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_15_value + Option 35 Cost 15 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_15_multiplier + Option 35 Cost 15 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_16_value + Option 35 Cost 16 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_16_multiplier + Option 35 Cost 16 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_17_value + Option 35 Cost 17 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_17_multiplier + Option 35 Cost 17 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_18_value + Option 35 Cost 18 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_18_multiplier + Option 35 Cost 18 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_19_value + Option 35 Cost 19 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_19_multiplier + Option 35 Cost 19 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_20_value + Option 35 Cost 20 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_20_multiplier + Option 35 Cost 20 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_21_value + Option 35 Cost 21 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_21_multiplier + Option 35 Cost 21 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_22_value + Option 35 Cost 22 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_22_multiplier + Option 35 Cost 22 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_23_value + Option 35 Cost 23 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_23_multiplier + Option 35 Cost 23 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_24_value + Option 35 Cost 24 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_24_multiplier + Option 35 Cost 24 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_25_value + Option 35 Cost 25 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_25_multiplier + Option 35 Cost 25 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_26_value + Option 35 Cost 26 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_26_multiplier + Option 35 Cost 26 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_27_value + Option 35 Cost 27 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_27_multiplier + Option 35 Cost 27 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_28_value + Option 35 Cost 28 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_28_multiplier + Option 35 Cost 28 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_29_value + Option 35 Cost 29 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_29_multiplier + Option 35 Cost 29 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_30_value + Option 35 Cost 30 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_30_multiplier + Option 35 Cost 30 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_31_value + Option 35 Cost 31 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_31_multiplier + Option 35 Cost 31 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_32_value + Option 35 Cost 32 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_32_multiplier + Option 35 Cost 32 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_33_value + Option 35 Cost 33 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_33_multiplier + Option 35 Cost 33 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_34_value + Option 35 Cost 34 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_34_multiplier + Option 35 Cost 34 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_35_value + Option 35 Cost 35 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_35_multiplier + Option 35 Cost 35 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_36_value + Option 35 Cost 36 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_36_multiplier + Option 35 Cost 36 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_37_value + Option 35 Cost 37 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_37_multiplier + Option 35 Cost 37 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_38_value + Option 35 Cost 38 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_38_multiplier + Option 35 Cost 38 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_39_value + Option 35 Cost 39 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_39_multiplier + Option 35 Cost 39 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_40_value + Option 35 Cost 40 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_40_multiplier + Option 35 Cost 40 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_41_value + Option 35 Cost 41 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_41_multiplier + Option 35 Cost 41 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_42_value + Option 35 Cost 42 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_42_multiplier + Option 35 Cost 42 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_43_value + Option 35 Cost 43 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_43_multiplier + Option 35 Cost 43 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_44_value + Option 35 Cost 44 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_44_multiplier + Option 35 Cost 44 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_45_value + Option 35 Cost 45 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_45_multiplier + Option 35 Cost 45 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_46_value + Option 35 Cost 46 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_46_multiplier + Option 35 Cost 46 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_47_value + Option 35 Cost 47 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_47_multiplier + Option 35 Cost 47 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_48_value + Option 35 Cost 48 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_48_multiplier + Option 35 Cost 48 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_49_value + Option 35 Cost 49 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_49_multiplier + Option 35 Cost 49 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_50_value + Option 35 Cost 50 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_50_multiplier + Option 35 Cost 50 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_51_value + Option 35 Cost 51 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_51_multiplier + Option 35 Cost 51 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_52_value + Option 35 Cost 52 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_52_multiplier + Option 35 Cost 52 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_53_value + Option 35 Cost 53 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_53_multiplier + Option 35 Cost 53 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_54_value + Option 35 Cost 54 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_54_multiplier + Option 35 Cost 54 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_55_value + Option 35 Cost 55 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_55_multiplier + Option 35 Cost 55 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_56_value + Option 35 Cost 56 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_56_multiplier + Option 35 Cost 56 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_57_value + Option 35 Cost 57 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_57_multiplier + Option 35 Cost 57 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_58_value + Option 35 Cost 58 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_58_multiplier + Option 35 Cost 58 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_59_value + Option 35 Cost 59 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_59_multiplier + Option 35 Cost 59 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_cost_60_value + Option 35 Cost 60 Value + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_35_cost_60_multiplier + Option 35 Cost 60 Multiplier + Total option 35 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_35_lifetime + Option 35 Lifetime + The option lifetime. + Double + years + false + false + + + option_36 + Option 36 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_36_apply_logic + Option 36 Apply Logic + Logic that specifies if the Option 36 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_36_cost_1_value + Option 36 Cost 1 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_1_multiplier + Option 36 Cost 1 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_2_value + Option 36 Cost 2 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_2_multiplier + Option 36 Cost 2 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_3_value + Option 36 Cost 3 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_3_multiplier + Option 36 Cost 3 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_4_value + Option 36 Cost 4 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_4_multiplier + Option 36 Cost 4 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_5_value + Option 36 Cost 5 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_5_multiplier + Option 36 Cost 5 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_6_value + Option 36 Cost 6 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_6_multiplier + Option 36 Cost 6 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_7_value + Option 36 Cost 7 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_7_multiplier + Option 36 Cost 7 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_8_value + Option 36 Cost 8 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_8_multiplier + Option 36 Cost 8 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_9_value + Option 36 Cost 9 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_9_multiplier + Option 36 Cost 9 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_10_value + Option 36 Cost 10 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_10_multiplier + Option 36 Cost 10 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_11_value + Option 36 Cost 11 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_11_multiplier + Option 36 Cost 11 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_12_value + Option 36 Cost 12 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_12_multiplier + Option 36 Cost 12 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_13_value + Option 36 Cost 13 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_13_multiplier + Option 36 Cost 13 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_14_value + Option 36 Cost 14 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_14_multiplier + Option 36 Cost 14 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_15_value + Option 36 Cost 15 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_15_multiplier + Option 36 Cost 15 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_16_value + Option 36 Cost 16 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_16_multiplier + Option 36 Cost 16 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_17_value + Option 36 Cost 17 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_17_multiplier + Option 36 Cost 17 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_18_value + Option 36 Cost 18 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_18_multiplier + Option 36 Cost 18 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_19_value + Option 36 Cost 19 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_19_multiplier + Option 36 Cost 19 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_20_value + Option 36 Cost 20 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_20_multiplier + Option 36 Cost 20 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_21_value + Option 36 Cost 21 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_21_multiplier + Option 36 Cost 21 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_22_value + Option 36 Cost 22 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_22_multiplier + Option 36 Cost 22 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_23_value + Option 36 Cost 23 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_23_multiplier + Option 36 Cost 23 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_24_value + Option 36 Cost 24 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_24_multiplier + Option 36 Cost 24 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_25_value + Option 36 Cost 25 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_25_multiplier + Option 36 Cost 25 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_26_value + Option 36 Cost 26 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_26_multiplier + Option 36 Cost 26 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_27_value + Option 36 Cost 27 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_27_multiplier + Option 36 Cost 27 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_28_value + Option 36 Cost 28 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_28_multiplier + Option 36 Cost 28 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_29_value + Option 36 Cost 29 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_29_multiplier + Option 36 Cost 29 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_30_value + Option 36 Cost 30 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_30_multiplier + Option 36 Cost 30 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_31_value + Option 36 Cost 31 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_31_multiplier + Option 36 Cost 31 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_32_value + Option 36 Cost 32 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_32_multiplier + Option 36 Cost 32 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_33_value + Option 36 Cost 33 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_33_multiplier + Option 36 Cost 33 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_34_value + Option 36 Cost 34 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_34_multiplier + Option 36 Cost 34 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_35_value + Option 36 Cost 35 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_35_multiplier + Option 36 Cost 35 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_36_value + Option 36 Cost 36 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_36_multiplier + Option 36 Cost 36 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_37_value + Option 36 Cost 37 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_37_multiplier + Option 36 Cost 37 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_38_value + Option 36 Cost 38 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_38_multiplier + Option 36 Cost 38 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_39_value + Option 36 Cost 39 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_39_multiplier + Option 36 Cost 39 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_40_value + Option 36 Cost 40 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_40_multiplier + Option 36 Cost 40 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_41_value + Option 36 Cost 41 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_41_multiplier + Option 36 Cost 41 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_42_value + Option 36 Cost 42 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_42_multiplier + Option 36 Cost 42 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_43_value + Option 36 Cost 43 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_43_multiplier + Option 36 Cost 43 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_44_value + Option 36 Cost 44 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_44_multiplier + Option 36 Cost 44 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_45_value + Option 36 Cost 45 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_45_multiplier + Option 36 Cost 45 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_46_value + Option 36 Cost 46 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_46_multiplier + Option 36 Cost 46 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_47_value + Option 36 Cost 47 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_47_multiplier + Option 36 Cost 47 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_48_value + Option 36 Cost 48 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_48_multiplier + Option 36 Cost 48 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_49_value + Option 36 Cost 49 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_49_multiplier + Option 36 Cost 49 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_50_value + Option 36 Cost 50 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_50_multiplier + Option 36 Cost 50 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_51_value + Option 36 Cost 51 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_51_multiplier + Option 36 Cost 51 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_52_value + Option 36 Cost 52 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_52_multiplier + Option 36 Cost 52 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_53_value + Option 36 Cost 53 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_53_multiplier + Option 36 Cost 53 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_54_value + Option 36 Cost 54 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_54_multiplier + Option 36 Cost 54 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_55_value + Option 36 Cost 55 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_55_multiplier + Option 36 Cost 55 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_56_value + Option 36 Cost 56 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_56_multiplier + Option 36 Cost 56 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_57_value + Option 36 Cost 57 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_57_multiplier + Option 36 Cost 57 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_58_value + Option 36 Cost 58 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_58_multiplier + Option 36 Cost 58 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_59_value + Option 36 Cost 59 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_59_multiplier + Option 36 Cost 59 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_cost_60_value + Option 36 Cost 60 Value + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_36_cost_60_multiplier + Option 36 Cost 60 Multiplier + Total option 36 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_36_lifetime + Option 36 Lifetime + The option lifetime. + Double + years + false + false + + + option_37 + Option 37 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_37_apply_logic + Option 37 Apply Logic + Logic that specifies if the Option 37 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_37_cost_1_value + Option 37 Cost 1 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_1_multiplier + Option 37 Cost 1 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_2_value + Option 37 Cost 2 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_2_multiplier + Option 37 Cost 2 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_3_value + Option 37 Cost 3 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_3_multiplier + Option 37 Cost 3 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_4_value + Option 37 Cost 4 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_4_multiplier + Option 37 Cost 4 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_5_value + Option 37 Cost 5 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_5_multiplier + Option 37 Cost 5 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_6_value + Option 37 Cost 6 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_6_multiplier + Option 37 Cost 6 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_7_value + Option 37 Cost 7 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_7_multiplier + Option 37 Cost 7 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_8_value + Option 37 Cost 8 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_8_multiplier + Option 37 Cost 8 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_9_value + Option 37 Cost 9 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_9_multiplier + Option 37 Cost 9 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_10_value + Option 37 Cost 10 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_10_multiplier + Option 37 Cost 10 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_11_value + Option 37 Cost 11 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_11_multiplier + Option 37 Cost 11 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_12_value + Option 37 Cost 12 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_12_multiplier + Option 37 Cost 12 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_13_value + Option 37 Cost 13 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_13_multiplier + Option 37 Cost 13 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_14_value + Option 37 Cost 14 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_14_multiplier + Option 37 Cost 14 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_15_value + Option 37 Cost 15 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_15_multiplier + Option 37 Cost 15 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_16_value + Option 37 Cost 16 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_16_multiplier + Option 37 Cost 16 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_17_value + Option 37 Cost 17 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_17_multiplier + Option 37 Cost 17 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_18_value + Option 37 Cost 18 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_18_multiplier + Option 37 Cost 18 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_19_value + Option 37 Cost 19 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_19_multiplier + Option 37 Cost 19 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_20_value + Option 37 Cost 20 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_20_multiplier + Option 37 Cost 20 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_21_value + Option 37 Cost 21 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_21_multiplier + Option 37 Cost 21 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_22_value + Option 37 Cost 22 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_22_multiplier + Option 37 Cost 22 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_23_value + Option 37 Cost 23 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_23_multiplier + Option 37 Cost 23 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_24_value + Option 37 Cost 24 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_24_multiplier + Option 37 Cost 24 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_25_value + Option 37 Cost 25 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_25_multiplier + Option 37 Cost 25 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_26_value + Option 37 Cost 26 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_26_multiplier + Option 37 Cost 26 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_27_value + Option 37 Cost 27 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_27_multiplier + Option 37 Cost 27 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_28_value + Option 37 Cost 28 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_28_multiplier + Option 37 Cost 28 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_29_value + Option 37 Cost 29 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_29_multiplier + Option 37 Cost 29 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_30_value + Option 37 Cost 30 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_30_multiplier + Option 37 Cost 30 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_31_value + Option 37 Cost 31 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_31_multiplier + Option 37 Cost 31 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_32_value + Option 37 Cost 32 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_32_multiplier + Option 37 Cost 32 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_33_value + Option 37 Cost 33 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_33_multiplier + Option 37 Cost 33 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_34_value + Option 37 Cost 34 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_34_multiplier + Option 37 Cost 34 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_35_value + Option 37 Cost 35 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_35_multiplier + Option 37 Cost 35 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_36_value + Option 37 Cost 36 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_36_multiplier + Option 37 Cost 36 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_37_value + Option 37 Cost 37 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_37_multiplier + Option 37 Cost 37 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_38_value + Option 37 Cost 38 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_38_multiplier + Option 37 Cost 38 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_39_value + Option 37 Cost 39 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_39_multiplier + Option 37 Cost 39 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_40_value + Option 37 Cost 40 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_40_multiplier + Option 37 Cost 40 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_41_value + Option 37 Cost 41 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_41_multiplier + Option 37 Cost 41 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_42_value + Option 37 Cost 42 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_42_multiplier + Option 37 Cost 42 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_43_value + Option 37 Cost 43 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_43_multiplier + Option 37 Cost 43 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_44_value + Option 37 Cost 44 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_44_multiplier + Option 37 Cost 44 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_45_value + Option 37 Cost 45 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_45_multiplier + Option 37 Cost 45 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_46_value + Option 37 Cost 46 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_46_multiplier + Option 37 Cost 46 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_47_value + Option 37 Cost 47 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_47_multiplier + Option 37 Cost 47 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_48_value + Option 37 Cost 48 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_48_multiplier + Option 37 Cost 48 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_49_value + Option 37 Cost 49 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_49_multiplier + Option 37 Cost 49 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_50_value + Option 37 Cost 50 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_50_multiplier + Option 37 Cost 50 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_51_value + Option 37 Cost 51 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_51_multiplier + Option 37 Cost 51 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_52_value + Option 37 Cost 52 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_52_multiplier + Option 37 Cost 52 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_53_value + Option 37 Cost 53 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_53_multiplier + Option 37 Cost 53 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_54_value + Option 37 Cost 54 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_54_multiplier + Option 37 Cost 54 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_55_value + Option 37 Cost 55 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_55_multiplier + Option 37 Cost 55 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_56_value + Option 37 Cost 56 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_56_multiplier + Option 37 Cost 56 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_57_value + Option 37 Cost 57 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_57_multiplier + Option 37 Cost 57 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_58_value + Option 37 Cost 58 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_58_multiplier + Option 37 Cost 58 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_59_value + Option 37 Cost 59 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_59_multiplier + Option 37 Cost 59 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_cost_60_value + Option 37 Cost 60 Value + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_37_cost_60_multiplier + Option 37 Cost 60 Multiplier + Total option 37 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_37_lifetime + Option 37 Lifetime + The option lifetime. + Double + years + false + false + + + option_38 + Option 38 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_38_apply_logic + Option 38 Apply Logic + Logic that specifies if the Option 38 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_38_cost_1_value + Option 38 Cost 1 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_1_multiplier + Option 38 Cost 1 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_2_value + Option 38 Cost 2 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_2_multiplier + Option 38 Cost 2 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_3_value + Option 38 Cost 3 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_3_multiplier + Option 38 Cost 3 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_4_value + Option 38 Cost 4 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_4_multiplier + Option 38 Cost 4 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_5_value + Option 38 Cost 5 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_5_multiplier + Option 38 Cost 5 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_6_value + Option 38 Cost 6 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_6_multiplier + Option 38 Cost 6 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_7_value + Option 38 Cost 7 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_7_multiplier + Option 38 Cost 7 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_8_value + Option 38 Cost 8 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_8_multiplier + Option 38 Cost 8 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_9_value + Option 38 Cost 9 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_9_multiplier + Option 38 Cost 9 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_10_value + Option 38 Cost 10 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_10_multiplier + Option 38 Cost 10 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_11_value + Option 38 Cost 11 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_11_multiplier + Option 38 Cost 11 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_12_value + Option 38 Cost 12 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_12_multiplier + Option 38 Cost 12 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_13_value + Option 38 Cost 13 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_13_multiplier + Option 38 Cost 13 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_14_value + Option 38 Cost 14 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_14_multiplier + Option 38 Cost 14 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_15_value + Option 38 Cost 15 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_15_multiplier + Option 38 Cost 15 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_16_value + Option 38 Cost 16 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_16_multiplier + Option 38 Cost 16 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_17_value + Option 38 Cost 17 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_17_multiplier + Option 38 Cost 17 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_18_value + Option 38 Cost 18 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_18_multiplier + Option 38 Cost 18 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_19_value + Option 38 Cost 19 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_19_multiplier + Option 38 Cost 19 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_20_value + Option 38 Cost 20 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_20_multiplier + Option 38 Cost 20 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_21_value + Option 38 Cost 21 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_21_multiplier + Option 38 Cost 21 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_22_value + Option 38 Cost 22 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_22_multiplier + Option 38 Cost 22 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_23_value + Option 38 Cost 23 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_23_multiplier + Option 38 Cost 23 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_24_value + Option 38 Cost 24 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_24_multiplier + Option 38 Cost 24 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_25_value + Option 38 Cost 25 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_25_multiplier + Option 38 Cost 25 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_26_value + Option 38 Cost 26 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_26_multiplier + Option 38 Cost 26 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_27_value + Option 38 Cost 27 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_27_multiplier + Option 38 Cost 27 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_28_value + Option 38 Cost 28 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_28_multiplier + Option 38 Cost 28 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_29_value + Option 38 Cost 29 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_29_multiplier + Option 38 Cost 29 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_30_value + Option 38 Cost 30 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_30_multiplier + Option 38 Cost 30 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_31_value + Option 38 Cost 31 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_31_multiplier + Option 38 Cost 31 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_32_value + Option 38 Cost 32 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_32_multiplier + Option 38 Cost 32 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_33_value + Option 38 Cost 33 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_33_multiplier + Option 38 Cost 33 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_34_value + Option 38 Cost 34 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_34_multiplier + Option 38 Cost 34 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_35_value + Option 38 Cost 35 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_35_multiplier + Option 38 Cost 35 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_36_value + Option 38 Cost 36 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_36_multiplier + Option 38 Cost 36 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_37_value + Option 38 Cost 37 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_37_multiplier + Option 38 Cost 37 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_38_value + Option 38 Cost 38 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_38_multiplier + Option 38 Cost 38 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_39_value + Option 38 Cost 39 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_39_multiplier + Option 38 Cost 39 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_40_value + Option 38 Cost 40 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_40_multiplier + Option 38 Cost 40 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_41_value + Option 38 Cost 41 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_41_multiplier + Option 38 Cost 41 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_42_value + Option 38 Cost 42 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_42_multiplier + Option 38 Cost 42 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_43_value + Option 38 Cost 43 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_43_multiplier + Option 38 Cost 43 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_44_value + Option 38 Cost 44 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_44_multiplier + Option 38 Cost 44 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_45_value + Option 38 Cost 45 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_45_multiplier + Option 38 Cost 45 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_46_value + Option 38 Cost 46 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_46_multiplier + Option 38 Cost 46 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_47_value + Option 38 Cost 47 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_47_multiplier + Option 38 Cost 47 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_48_value + Option 38 Cost 48 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_48_multiplier + Option 38 Cost 48 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_49_value + Option 38 Cost 49 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_49_multiplier + Option 38 Cost 49 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_50_value + Option 38 Cost 50 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_50_multiplier + Option 38 Cost 50 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_51_value + Option 38 Cost 51 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_51_multiplier + Option 38 Cost 51 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_52_value + Option 38 Cost 52 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_52_multiplier + Option 38 Cost 52 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_53_value + Option 38 Cost 53 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_53_multiplier + Option 38 Cost 53 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_54_value + Option 38 Cost 54 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_54_multiplier + Option 38 Cost 54 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_55_value + Option 38 Cost 55 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_55_multiplier + Option 38 Cost 55 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_56_value + Option 38 Cost 56 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_56_multiplier + Option 38 Cost 56 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_57_value + Option 38 Cost 57 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_57_multiplier + Option 38 Cost 57 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_58_value + Option 38 Cost 58 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_58_multiplier + Option 38 Cost 58 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_59_value + Option 38 Cost 59 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_59_multiplier + Option 38 Cost 59 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_cost_60_value + Option 38 Cost 60 Value + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_38_cost_60_multiplier + Option 38 Cost 60 Multiplier + Total option 38 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_38_lifetime + Option 38 Lifetime + The option lifetime. + Double + years + false + false + + + option_39 + Option 39 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_39_apply_logic + Option 39 Apply Logic + Logic that specifies if the Option 39 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_39_cost_1_value + Option 39 Cost 1 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_1_multiplier + Option 39 Cost 1 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_2_value + Option 39 Cost 2 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_2_multiplier + Option 39 Cost 2 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_3_value + Option 39 Cost 3 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_3_multiplier + Option 39 Cost 3 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_4_value + Option 39 Cost 4 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_4_multiplier + Option 39 Cost 4 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_5_value + Option 39 Cost 5 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_5_multiplier + Option 39 Cost 5 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_6_value + Option 39 Cost 6 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_6_multiplier + Option 39 Cost 6 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_7_value + Option 39 Cost 7 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_7_multiplier + Option 39 Cost 7 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_8_value + Option 39 Cost 8 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_8_multiplier + Option 39 Cost 8 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_9_value + Option 39 Cost 9 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_9_multiplier + Option 39 Cost 9 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_10_value + Option 39 Cost 10 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_10_multiplier + Option 39 Cost 10 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_11_value + Option 39 Cost 11 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_11_multiplier + Option 39 Cost 11 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_12_value + Option 39 Cost 12 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_12_multiplier + Option 39 Cost 12 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_13_value + Option 39 Cost 13 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_13_multiplier + Option 39 Cost 13 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_14_value + Option 39 Cost 14 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_14_multiplier + Option 39 Cost 14 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_15_value + Option 39 Cost 15 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_15_multiplier + Option 39 Cost 15 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_16_value + Option 39 Cost 16 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_16_multiplier + Option 39 Cost 16 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_17_value + Option 39 Cost 17 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_17_multiplier + Option 39 Cost 17 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_18_value + Option 39 Cost 18 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_18_multiplier + Option 39 Cost 18 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_19_value + Option 39 Cost 19 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_19_multiplier + Option 39 Cost 19 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_20_value + Option 39 Cost 20 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_20_multiplier + Option 39 Cost 20 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_21_value + Option 39 Cost 21 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_21_multiplier + Option 39 Cost 21 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_22_value + Option 39 Cost 22 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_22_multiplier + Option 39 Cost 22 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_23_value + Option 39 Cost 23 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_23_multiplier + Option 39 Cost 23 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_24_value + Option 39 Cost 24 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_24_multiplier + Option 39 Cost 24 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_25_value + Option 39 Cost 25 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_25_multiplier + Option 39 Cost 25 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_26_value + Option 39 Cost 26 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_26_multiplier + Option 39 Cost 26 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_27_value + Option 39 Cost 27 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_27_multiplier + Option 39 Cost 27 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_28_value + Option 39 Cost 28 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_28_multiplier + Option 39 Cost 28 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_29_value + Option 39 Cost 29 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_29_multiplier + Option 39 Cost 29 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_30_value + Option 39 Cost 30 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_30_multiplier + Option 39 Cost 30 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_31_value + Option 39 Cost 31 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_31_multiplier + Option 39 Cost 31 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_32_value + Option 39 Cost 32 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_32_multiplier + Option 39 Cost 32 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_33_value + Option 39 Cost 33 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_33_multiplier + Option 39 Cost 33 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_34_value + Option 39 Cost 34 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_34_multiplier + Option 39 Cost 34 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_35_value + Option 39 Cost 35 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_35_multiplier + Option 39 Cost 35 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_36_value + Option 39 Cost 36 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_36_multiplier + Option 39 Cost 36 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_37_value + Option 39 Cost 37 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_37_multiplier + Option 39 Cost 37 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_38_value + Option 39 Cost 38 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_38_multiplier + Option 39 Cost 38 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_39_value + Option 39 Cost 39 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_39_multiplier + Option 39 Cost 39 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_40_value + Option 39 Cost 40 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_40_multiplier + Option 39 Cost 40 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_41_value + Option 39 Cost 41 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_41_multiplier + Option 39 Cost 41 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_42_value + Option 39 Cost 42 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_42_multiplier + Option 39 Cost 42 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_43_value + Option 39 Cost 43 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_43_multiplier + Option 39 Cost 43 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_44_value + Option 39 Cost 44 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_44_multiplier + Option 39 Cost 44 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_45_value + Option 39 Cost 45 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_45_multiplier + Option 39 Cost 45 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_46_value + Option 39 Cost 46 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_46_multiplier + Option 39 Cost 46 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_47_value + Option 39 Cost 47 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_47_multiplier + Option 39 Cost 47 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_48_value + Option 39 Cost 48 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_48_multiplier + Option 39 Cost 48 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_49_value + Option 39 Cost 49 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_49_multiplier + Option 39 Cost 49 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_50_value + Option 39 Cost 50 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_50_multiplier + Option 39 Cost 50 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_51_value + Option 39 Cost 51 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_51_multiplier + Option 39 Cost 51 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_52_value + Option 39 Cost 52 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_52_multiplier + Option 39 Cost 52 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_53_value + Option 39 Cost 53 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_53_multiplier + Option 39 Cost 53 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_54_value + Option 39 Cost 54 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_54_multiplier + Option 39 Cost 54 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_55_value + Option 39 Cost 55 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_55_multiplier + Option 39 Cost 55 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_56_value + Option 39 Cost 56 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_56_multiplier + Option 39 Cost 56 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_57_value + Option 39 Cost 57 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_57_multiplier + Option 39 Cost 57 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_58_value + Option 39 Cost 58 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_58_multiplier + Option 39 Cost 58 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_59_value + Option 39 Cost 59 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_59_multiplier + Option 39 Cost 59 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_cost_60_value + Option 39 Cost 60 Value + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_39_cost_60_multiplier + Option 39 Cost 60 Multiplier + Total option 39 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_39_lifetime + Option 39 Lifetime + The option lifetime. + Double + years + false + false + + + option_40 + Option 40 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_40_apply_logic + Option 40 Apply Logic + Logic that specifies if the Option 40 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_40_cost_1_value + Option 40 Cost 1 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_1_multiplier + Option 40 Cost 1 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_2_value + Option 40 Cost 2 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_2_multiplier + Option 40 Cost 2 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_3_value + Option 40 Cost 3 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_3_multiplier + Option 40 Cost 3 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_4_value + Option 40 Cost 4 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_4_multiplier + Option 40 Cost 4 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_5_value + Option 40 Cost 5 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_5_multiplier + Option 40 Cost 5 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_6_value + Option 40 Cost 6 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_6_multiplier + Option 40 Cost 6 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_7_value + Option 40 Cost 7 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_7_multiplier + Option 40 Cost 7 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_8_value + Option 40 Cost 8 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_8_multiplier + Option 40 Cost 8 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_9_value + Option 40 Cost 9 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_9_multiplier + Option 40 Cost 9 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_10_value + Option 40 Cost 10 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_10_multiplier + Option 40 Cost 10 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_11_value + Option 40 Cost 11 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_11_multiplier + Option 40 Cost 11 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_12_value + Option 40 Cost 12 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_12_multiplier + Option 40 Cost 12 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_13_value + Option 40 Cost 13 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_13_multiplier + Option 40 Cost 13 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_14_value + Option 40 Cost 14 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_14_multiplier + Option 40 Cost 14 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_15_value + Option 40 Cost 15 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_15_multiplier + Option 40 Cost 15 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_16_value + Option 40 Cost 16 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_16_multiplier + Option 40 Cost 16 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_17_value + Option 40 Cost 17 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_17_multiplier + Option 40 Cost 17 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_18_value + Option 40 Cost 18 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_18_multiplier + Option 40 Cost 18 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_19_value + Option 40 Cost 19 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_19_multiplier + Option 40 Cost 19 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_20_value + Option 40 Cost 20 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_20_multiplier + Option 40 Cost 20 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_21_value + Option 40 Cost 21 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_21_multiplier + Option 40 Cost 21 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_22_value + Option 40 Cost 22 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_22_multiplier + Option 40 Cost 22 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_23_value + Option 40 Cost 23 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_23_multiplier + Option 40 Cost 23 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_24_value + Option 40 Cost 24 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_24_multiplier + Option 40 Cost 24 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_25_value + Option 40 Cost 25 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_25_multiplier + Option 40 Cost 25 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_26_value + Option 40 Cost 26 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_26_multiplier + Option 40 Cost 26 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_27_value + Option 40 Cost 27 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_27_multiplier + Option 40 Cost 27 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_28_value + Option 40 Cost 28 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_28_multiplier + Option 40 Cost 28 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_29_value + Option 40 Cost 29 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_29_multiplier + Option 40 Cost 29 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_30_value + Option 40 Cost 30 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_30_multiplier + Option 40 Cost 30 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_31_value + Option 40 Cost 31 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_31_multiplier + Option 40 Cost 31 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_32_value + Option 40 Cost 32 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_32_multiplier + Option 40 Cost 32 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_33_value + Option 40 Cost 33 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_33_multiplier + Option 40 Cost 33 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_34_value + Option 40 Cost 34 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_34_multiplier + Option 40 Cost 34 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_35_value + Option 40 Cost 35 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_35_multiplier + Option 40 Cost 35 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_36_value + Option 40 Cost 36 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_36_multiplier + Option 40 Cost 36 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_37_value + Option 40 Cost 37 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_37_multiplier + Option 40 Cost 37 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_38_value + Option 40 Cost 38 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_38_multiplier + Option 40 Cost 38 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_39_value + Option 40 Cost 39 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_39_multiplier + Option 40 Cost 39 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_40_value + Option 40 Cost 40 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_40_multiplier + Option 40 Cost 40 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_41_value + Option 40 Cost 41 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_41_multiplier + Option 40 Cost 41 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_42_value + Option 40 Cost 42 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_42_multiplier + Option 40 Cost 42 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_43_value + Option 40 Cost 43 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_43_multiplier + Option 40 Cost 43 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_44_value + Option 40 Cost 44 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_44_multiplier + Option 40 Cost 44 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_45_value + Option 40 Cost 45 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_45_multiplier + Option 40 Cost 45 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_46_value + Option 40 Cost 46 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_46_multiplier + Option 40 Cost 46 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_47_value + Option 40 Cost 47 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_47_multiplier + Option 40 Cost 47 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_48_value + Option 40 Cost 48 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_48_multiplier + Option 40 Cost 48 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_49_value + Option 40 Cost 49 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_49_multiplier + Option 40 Cost 49 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_50_value + Option 40 Cost 50 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_50_multiplier + Option 40 Cost 50 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_51_value + Option 40 Cost 51 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_51_multiplier + Option 40 Cost 51 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_52_value + Option 40 Cost 52 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_52_multiplier + Option 40 Cost 52 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_53_value + Option 40 Cost 53 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_53_multiplier + Option 40 Cost 53 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_54_value + Option 40 Cost 54 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_54_multiplier + Option 40 Cost 54 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_55_value + Option 40 Cost 55 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_55_multiplier + Option 40 Cost 55 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_56_value + Option 40 Cost 56 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_56_multiplier + Option 40 Cost 56 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_57_value + Option 40 Cost 57 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_57_multiplier + Option 40 Cost 57 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_58_value + Option 40 Cost 58 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_58_multiplier + Option 40 Cost 58 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_59_value + Option 40 Cost 59 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_59_multiplier + Option 40 Cost 59 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_cost_60_value + Option 40 Cost 60 Value + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_40_cost_60_multiplier + Option 40 Cost 60 Multiplier + Total option 40 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_40_lifetime + Option 40 Lifetime + The option lifetime. + Double + years + false + false + + + option_41 + Option 41 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_41_apply_logic + Option 41 Apply Logic + Logic that specifies if the Option 41 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_41_cost_1_value + Option 41 Cost 1 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_1_multiplier + Option 41 Cost 1 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_2_value + Option 41 Cost 2 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_2_multiplier + Option 41 Cost 2 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_3_value + Option 41 Cost 3 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_3_multiplier + Option 41 Cost 3 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_4_value + Option 41 Cost 4 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_4_multiplier + Option 41 Cost 4 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_5_value + Option 41 Cost 5 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_5_multiplier + Option 41 Cost 5 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_6_value + Option 41 Cost 6 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_6_multiplier + Option 41 Cost 6 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_7_value + Option 41 Cost 7 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_7_multiplier + Option 41 Cost 7 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_8_value + Option 41 Cost 8 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_8_multiplier + Option 41 Cost 8 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_9_value + Option 41 Cost 9 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_9_multiplier + Option 41 Cost 9 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_10_value + Option 41 Cost 10 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_10_multiplier + Option 41 Cost 10 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_11_value + Option 41 Cost 11 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_11_multiplier + Option 41 Cost 11 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_12_value + Option 41 Cost 12 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_12_multiplier + Option 41 Cost 12 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_13_value + Option 41 Cost 13 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_13_multiplier + Option 41 Cost 13 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_14_value + Option 41 Cost 14 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_14_multiplier + Option 41 Cost 14 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_15_value + Option 41 Cost 15 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_15_multiplier + Option 41 Cost 15 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_16_value + Option 41 Cost 16 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_16_multiplier + Option 41 Cost 16 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_17_value + Option 41 Cost 17 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_17_multiplier + Option 41 Cost 17 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_18_value + Option 41 Cost 18 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_18_multiplier + Option 41 Cost 18 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_19_value + Option 41 Cost 19 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_19_multiplier + Option 41 Cost 19 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_20_value + Option 41 Cost 20 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_20_multiplier + Option 41 Cost 20 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_21_value + Option 41 Cost 21 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_21_multiplier + Option 41 Cost 21 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_22_value + Option 41 Cost 22 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_22_multiplier + Option 41 Cost 22 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_23_value + Option 41 Cost 23 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_23_multiplier + Option 41 Cost 23 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_24_value + Option 41 Cost 24 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_24_multiplier + Option 41 Cost 24 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_25_value + Option 41 Cost 25 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_25_multiplier + Option 41 Cost 25 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_26_value + Option 41 Cost 26 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_26_multiplier + Option 41 Cost 26 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_27_value + Option 41 Cost 27 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_27_multiplier + Option 41 Cost 27 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_28_value + Option 41 Cost 28 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_28_multiplier + Option 41 Cost 28 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_29_value + Option 41 Cost 29 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_29_multiplier + Option 41 Cost 29 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_30_value + Option 41 Cost 30 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_30_multiplier + Option 41 Cost 30 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_31_value + Option 41 Cost 31 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_31_multiplier + Option 41 Cost 31 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_32_value + Option 41 Cost 32 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_32_multiplier + Option 41 Cost 32 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_33_value + Option 41 Cost 33 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_33_multiplier + Option 41 Cost 33 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_34_value + Option 41 Cost 34 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_34_multiplier + Option 41 Cost 34 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_35_value + Option 41 Cost 35 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_35_multiplier + Option 41 Cost 35 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_36_value + Option 41 Cost 36 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_36_multiplier + Option 41 Cost 36 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_37_value + Option 41 Cost 37 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_37_multiplier + Option 41 Cost 37 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_38_value + Option 41 Cost 38 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_38_multiplier + Option 41 Cost 38 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_39_value + Option 41 Cost 39 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_39_multiplier + Option 41 Cost 39 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_40_value + Option 41 Cost 40 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_40_multiplier + Option 41 Cost 40 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_41_value + Option 41 Cost 41 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_41_multiplier + Option 41 Cost 41 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_42_value + Option 41 Cost 42 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_42_multiplier + Option 41 Cost 42 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_43_value + Option 41 Cost 43 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_43_multiplier + Option 41 Cost 43 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_44_value + Option 41 Cost 44 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_44_multiplier + Option 41 Cost 44 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_45_value + Option 41 Cost 45 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_45_multiplier + Option 41 Cost 45 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_46_value + Option 41 Cost 46 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_46_multiplier + Option 41 Cost 46 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_47_value + Option 41 Cost 47 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_47_multiplier + Option 41 Cost 47 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_48_value + Option 41 Cost 48 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_48_multiplier + Option 41 Cost 48 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_49_value + Option 41 Cost 49 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_49_multiplier + Option 41 Cost 49 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_50_value + Option 41 Cost 50 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_50_multiplier + Option 41 Cost 50 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_51_value + Option 41 Cost 51 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_51_multiplier + Option 41 Cost 51 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_52_value + Option 41 Cost 52 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_52_multiplier + Option 41 Cost 52 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_53_value + Option 41 Cost 53 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_53_multiplier + Option 41 Cost 53 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_54_value + Option 41 Cost 54 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_54_multiplier + Option 41 Cost 54 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_55_value + Option 41 Cost 55 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_55_multiplier + Option 41 Cost 55 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_56_value + Option 41 Cost 56 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_56_multiplier + Option 41 Cost 56 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_57_value + Option 41 Cost 57 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_57_multiplier + Option 41 Cost 57 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_58_value + Option 41 Cost 58 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_58_multiplier + Option 41 Cost 58 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_59_value + Option 41 Cost 59 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_59_multiplier + Option 41 Cost 59 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_cost_60_value + Option 41 Cost 60 Value + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_41_cost_60_multiplier + Option 41 Cost 60 Multiplier + Total option 41 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_41_lifetime + Option 41 Lifetime + The option lifetime. + Double + years + false + false + + + option_42 + Option 42 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_42_apply_logic + Option 42 Apply Logic + Logic that specifies if the Option 42 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_42_cost_1_value + Option 42 Cost 1 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_1_multiplier + Option 42 Cost 1 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_2_value + Option 42 Cost 2 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_2_multiplier + Option 42 Cost 2 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_3_value + Option 42 Cost 3 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_3_multiplier + Option 42 Cost 3 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_4_value + Option 42 Cost 4 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_4_multiplier + Option 42 Cost 4 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_5_value + Option 42 Cost 5 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_5_multiplier + Option 42 Cost 5 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_6_value + Option 42 Cost 6 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_6_multiplier + Option 42 Cost 6 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_7_value + Option 42 Cost 7 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_7_multiplier + Option 42 Cost 7 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_8_value + Option 42 Cost 8 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_8_multiplier + Option 42 Cost 8 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_9_value + Option 42 Cost 9 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_9_multiplier + Option 42 Cost 9 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_10_value + Option 42 Cost 10 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_10_multiplier + Option 42 Cost 10 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_11_value + Option 42 Cost 11 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_11_multiplier + Option 42 Cost 11 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_12_value + Option 42 Cost 12 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_12_multiplier + Option 42 Cost 12 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_13_value + Option 42 Cost 13 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_13_multiplier + Option 42 Cost 13 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_14_value + Option 42 Cost 14 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_14_multiplier + Option 42 Cost 14 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_15_value + Option 42 Cost 15 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_15_multiplier + Option 42 Cost 15 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_16_value + Option 42 Cost 16 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_16_multiplier + Option 42 Cost 16 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_17_value + Option 42 Cost 17 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_17_multiplier + Option 42 Cost 17 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_18_value + Option 42 Cost 18 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_18_multiplier + Option 42 Cost 18 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_19_value + Option 42 Cost 19 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_19_multiplier + Option 42 Cost 19 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_20_value + Option 42 Cost 20 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_20_multiplier + Option 42 Cost 20 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_21_value + Option 42 Cost 21 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_21_multiplier + Option 42 Cost 21 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_22_value + Option 42 Cost 22 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_22_multiplier + Option 42 Cost 22 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_23_value + Option 42 Cost 23 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_23_multiplier + Option 42 Cost 23 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_24_value + Option 42 Cost 24 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_24_multiplier + Option 42 Cost 24 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_25_value + Option 42 Cost 25 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_25_multiplier + Option 42 Cost 25 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_26_value + Option 42 Cost 26 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_26_multiplier + Option 42 Cost 26 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_27_value + Option 42 Cost 27 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_27_multiplier + Option 42 Cost 27 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_28_value + Option 42 Cost 28 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_28_multiplier + Option 42 Cost 28 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_29_value + Option 42 Cost 29 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_29_multiplier + Option 42 Cost 29 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_30_value + Option 42 Cost 30 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_30_multiplier + Option 42 Cost 30 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_31_value + Option 42 Cost 31 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_31_multiplier + Option 42 Cost 31 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_32_value + Option 42 Cost 32 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_32_multiplier + Option 42 Cost 32 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_33_value + Option 42 Cost 33 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_33_multiplier + Option 42 Cost 33 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_34_value + Option 42 Cost 34 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_34_multiplier + Option 42 Cost 34 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_35_value + Option 42 Cost 35 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_35_multiplier + Option 42 Cost 35 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_36_value + Option 42 Cost 36 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_36_multiplier + Option 42 Cost 36 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_37_value + Option 42 Cost 37 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_37_multiplier + Option 42 Cost 37 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_38_value + Option 42 Cost 38 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_38_multiplier + Option 42 Cost 38 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_39_value + Option 42 Cost 39 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_39_multiplier + Option 42 Cost 39 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_40_value + Option 42 Cost 40 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_40_multiplier + Option 42 Cost 40 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_41_value + Option 42 Cost 41 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_41_multiplier + Option 42 Cost 41 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_42_value + Option 42 Cost 42 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_42_multiplier + Option 42 Cost 42 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_43_value + Option 42 Cost 43 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_43_multiplier + Option 42 Cost 43 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_44_value + Option 42 Cost 44 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_44_multiplier + Option 42 Cost 44 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_45_value + Option 42 Cost 45 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_45_multiplier + Option 42 Cost 45 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_46_value + Option 42 Cost 46 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_46_multiplier + Option 42 Cost 46 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_47_value + Option 42 Cost 47 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_47_multiplier + Option 42 Cost 47 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_48_value + Option 42 Cost 48 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_48_multiplier + Option 42 Cost 48 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_49_value + Option 42 Cost 49 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_49_multiplier + Option 42 Cost 49 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_50_value + Option 42 Cost 50 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_50_multiplier + Option 42 Cost 50 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_51_value + Option 42 Cost 51 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_51_multiplier + Option 42 Cost 51 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_52_value + Option 42 Cost 52 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_52_multiplier + Option 42 Cost 52 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_53_value + Option 42 Cost 53 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_53_multiplier + Option 42 Cost 53 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_54_value + Option 42 Cost 54 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_54_multiplier + Option 42 Cost 54 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_55_value + Option 42 Cost 55 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_55_multiplier + Option 42 Cost 55 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_56_value + Option 42 Cost 56 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_56_multiplier + Option 42 Cost 56 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_57_value + Option 42 Cost 57 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_57_multiplier + Option 42 Cost 57 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_58_value + Option 42 Cost 58 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_58_multiplier + Option 42 Cost 58 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_59_value + Option 42 Cost 59 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_59_multiplier + Option 42 Cost 59 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_cost_60_value + Option 42 Cost 60 Value + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_42_cost_60_multiplier + Option 42 Cost 60 Multiplier + Total option 42 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_42_lifetime + Option 42 Lifetime + The option lifetime. + Double + years + false + false + + + option_43 + Option 43 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_43_apply_logic + Option 43 Apply Logic + Logic that specifies if the Option 43 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_43_cost_1_value + Option 43 Cost 1 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_1_multiplier + Option 43 Cost 1 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_2_value + Option 43 Cost 2 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_2_multiplier + Option 43 Cost 2 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_3_value + Option 43 Cost 3 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_3_multiplier + Option 43 Cost 3 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_4_value + Option 43 Cost 4 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_4_multiplier + Option 43 Cost 4 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_5_value + Option 43 Cost 5 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_5_multiplier + Option 43 Cost 5 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_6_value + Option 43 Cost 6 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_6_multiplier + Option 43 Cost 6 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_7_value + Option 43 Cost 7 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_7_multiplier + Option 43 Cost 7 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_8_value + Option 43 Cost 8 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_8_multiplier + Option 43 Cost 8 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_9_value + Option 43 Cost 9 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_9_multiplier + Option 43 Cost 9 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_10_value + Option 43 Cost 10 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_10_multiplier + Option 43 Cost 10 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_11_value + Option 43 Cost 11 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_11_multiplier + Option 43 Cost 11 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_12_value + Option 43 Cost 12 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_12_multiplier + Option 43 Cost 12 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_13_value + Option 43 Cost 13 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_13_multiplier + Option 43 Cost 13 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_14_value + Option 43 Cost 14 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_14_multiplier + Option 43 Cost 14 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_15_value + Option 43 Cost 15 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_15_multiplier + Option 43 Cost 15 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_16_value + Option 43 Cost 16 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_16_multiplier + Option 43 Cost 16 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_17_value + Option 43 Cost 17 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_17_multiplier + Option 43 Cost 17 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_18_value + Option 43 Cost 18 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_18_multiplier + Option 43 Cost 18 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_19_value + Option 43 Cost 19 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_19_multiplier + Option 43 Cost 19 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_20_value + Option 43 Cost 20 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_20_multiplier + Option 43 Cost 20 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_21_value + Option 43 Cost 21 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_21_multiplier + Option 43 Cost 21 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_22_value + Option 43 Cost 22 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_22_multiplier + Option 43 Cost 22 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_23_value + Option 43 Cost 23 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_23_multiplier + Option 43 Cost 23 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_24_value + Option 43 Cost 24 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_24_multiplier + Option 43 Cost 24 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_25_value + Option 43 Cost 25 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_25_multiplier + Option 43 Cost 25 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_26_value + Option 43 Cost 26 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_26_multiplier + Option 43 Cost 26 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_27_value + Option 43 Cost 27 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_27_multiplier + Option 43 Cost 27 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_28_value + Option 43 Cost 28 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_28_multiplier + Option 43 Cost 28 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_29_value + Option 43 Cost 29 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_29_multiplier + Option 43 Cost 29 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_30_value + Option 43 Cost 30 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_30_multiplier + Option 43 Cost 30 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_31_value + Option 43 Cost 31 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_31_multiplier + Option 43 Cost 31 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_32_value + Option 43 Cost 32 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_32_multiplier + Option 43 Cost 32 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_33_value + Option 43 Cost 33 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_33_multiplier + Option 43 Cost 33 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_34_value + Option 43 Cost 34 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_34_multiplier + Option 43 Cost 34 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_35_value + Option 43 Cost 35 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_35_multiplier + Option 43 Cost 35 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_36_value + Option 43 Cost 36 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_36_multiplier + Option 43 Cost 36 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_37_value + Option 43 Cost 37 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_37_multiplier + Option 43 Cost 37 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_38_value + Option 43 Cost 38 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_38_multiplier + Option 43 Cost 38 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_39_value + Option 43 Cost 39 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_39_multiplier + Option 43 Cost 39 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_40_value + Option 43 Cost 40 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_40_multiplier + Option 43 Cost 40 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_41_value + Option 43 Cost 41 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_41_multiplier + Option 43 Cost 41 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_42_value + Option 43 Cost 42 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_42_multiplier + Option 43 Cost 42 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_43_value + Option 43 Cost 43 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_43_multiplier + Option 43 Cost 43 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_44_value + Option 43 Cost 44 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_44_multiplier + Option 43 Cost 44 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_45_value + Option 43 Cost 45 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_45_multiplier + Option 43 Cost 45 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_46_value + Option 43 Cost 46 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_46_multiplier + Option 43 Cost 46 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_47_value + Option 43 Cost 47 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_47_multiplier + Option 43 Cost 47 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_48_value + Option 43 Cost 48 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_48_multiplier + Option 43 Cost 48 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_49_value + Option 43 Cost 49 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_49_multiplier + Option 43 Cost 49 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_50_value + Option 43 Cost 50 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_50_multiplier + Option 43 Cost 50 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_51_value + Option 43 Cost 51 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_51_multiplier + Option 43 Cost 51 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_52_value + Option 43 Cost 52 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_52_multiplier + Option 43 Cost 52 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_53_value + Option 43 Cost 53 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_53_multiplier + Option 43 Cost 53 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_54_value + Option 43 Cost 54 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_54_multiplier + Option 43 Cost 54 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_55_value + Option 43 Cost 55 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_55_multiplier + Option 43 Cost 55 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_56_value + Option 43 Cost 56 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_56_multiplier + Option 43 Cost 56 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_57_value + Option 43 Cost 57 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_57_multiplier + Option 43 Cost 57 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_58_value + Option 43 Cost 58 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_58_multiplier + Option 43 Cost 58 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_59_value + Option 43 Cost 59 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_59_multiplier + Option 43 Cost 59 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_cost_60_value + Option 43 Cost 60 Value + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_43_cost_60_multiplier + Option 43 Cost 60 Multiplier + Total option 43 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_43_lifetime + Option 43 Lifetime + The option lifetime. + Double + years + false + false + + + option_44 + Option 44 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_44_apply_logic + Option 44 Apply Logic + Logic that specifies if the Option 44 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_44_cost_1_value + Option 44 Cost 1 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_1_multiplier + Option 44 Cost 1 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_2_value + Option 44 Cost 2 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_2_multiplier + Option 44 Cost 2 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_3_value + Option 44 Cost 3 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_3_multiplier + Option 44 Cost 3 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_4_value + Option 44 Cost 4 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_4_multiplier + Option 44 Cost 4 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_5_value + Option 44 Cost 5 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_5_multiplier + Option 44 Cost 5 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_6_value + Option 44 Cost 6 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_6_multiplier + Option 44 Cost 6 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_7_value + Option 44 Cost 7 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_7_multiplier + Option 44 Cost 7 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_8_value + Option 44 Cost 8 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_8_multiplier + Option 44 Cost 8 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_9_value + Option 44 Cost 9 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_9_multiplier + Option 44 Cost 9 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_10_value + Option 44 Cost 10 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_10_multiplier + Option 44 Cost 10 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_11_value + Option 44 Cost 11 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_11_multiplier + Option 44 Cost 11 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_12_value + Option 44 Cost 12 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_12_multiplier + Option 44 Cost 12 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_13_value + Option 44 Cost 13 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_13_multiplier + Option 44 Cost 13 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_14_value + Option 44 Cost 14 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_14_multiplier + Option 44 Cost 14 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_15_value + Option 44 Cost 15 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_15_multiplier + Option 44 Cost 15 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_16_value + Option 44 Cost 16 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_16_multiplier + Option 44 Cost 16 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_17_value + Option 44 Cost 17 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_17_multiplier + Option 44 Cost 17 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_18_value + Option 44 Cost 18 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_18_multiplier + Option 44 Cost 18 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_19_value + Option 44 Cost 19 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_19_multiplier + Option 44 Cost 19 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_20_value + Option 44 Cost 20 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_20_multiplier + Option 44 Cost 20 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_21_value + Option 44 Cost 21 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_21_multiplier + Option 44 Cost 21 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_22_value + Option 44 Cost 22 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_22_multiplier + Option 44 Cost 22 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_23_value + Option 44 Cost 23 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_23_multiplier + Option 44 Cost 23 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_24_value + Option 44 Cost 24 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_24_multiplier + Option 44 Cost 24 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_25_value + Option 44 Cost 25 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_25_multiplier + Option 44 Cost 25 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_26_value + Option 44 Cost 26 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_26_multiplier + Option 44 Cost 26 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_27_value + Option 44 Cost 27 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_27_multiplier + Option 44 Cost 27 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_28_value + Option 44 Cost 28 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_28_multiplier + Option 44 Cost 28 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_29_value + Option 44 Cost 29 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_29_multiplier + Option 44 Cost 29 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_30_value + Option 44 Cost 30 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_30_multiplier + Option 44 Cost 30 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_31_value + Option 44 Cost 31 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_31_multiplier + Option 44 Cost 31 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_32_value + Option 44 Cost 32 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_32_multiplier + Option 44 Cost 32 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_33_value + Option 44 Cost 33 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_33_multiplier + Option 44 Cost 33 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_34_value + Option 44 Cost 34 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_34_multiplier + Option 44 Cost 34 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_35_value + Option 44 Cost 35 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_35_multiplier + Option 44 Cost 35 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_36_value + Option 44 Cost 36 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_36_multiplier + Option 44 Cost 36 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_37_value + Option 44 Cost 37 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_37_multiplier + Option 44 Cost 37 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_38_value + Option 44 Cost 38 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_38_multiplier + Option 44 Cost 38 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_39_value + Option 44 Cost 39 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_39_multiplier + Option 44 Cost 39 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_40_value + Option 44 Cost 40 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_40_multiplier + Option 44 Cost 40 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_41_value + Option 44 Cost 41 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_41_multiplier + Option 44 Cost 41 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_42_value + Option 44 Cost 42 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_42_multiplier + Option 44 Cost 42 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_43_value + Option 44 Cost 43 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_43_multiplier + Option 44 Cost 43 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_44_value + Option 44 Cost 44 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_44_multiplier + Option 44 Cost 44 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_45_value + Option 44 Cost 45 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_45_multiplier + Option 44 Cost 45 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_46_value + Option 44 Cost 46 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_46_multiplier + Option 44 Cost 46 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_47_value + Option 44 Cost 47 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_47_multiplier + Option 44 Cost 47 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_48_value + Option 44 Cost 48 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_48_multiplier + Option 44 Cost 48 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_49_value + Option 44 Cost 49 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_49_multiplier + Option 44 Cost 49 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_50_value + Option 44 Cost 50 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_50_multiplier + Option 44 Cost 50 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_51_value + Option 44 Cost 51 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_51_multiplier + Option 44 Cost 51 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_52_value + Option 44 Cost 52 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_52_multiplier + Option 44 Cost 52 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_53_value + Option 44 Cost 53 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_53_multiplier + Option 44 Cost 53 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_54_value + Option 44 Cost 54 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_54_multiplier + Option 44 Cost 54 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_55_value + Option 44 Cost 55 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_55_multiplier + Option 44 Cost 55 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_56_value + Option 44 Cost 56 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_56_multiplier + Option 44 Cost 56 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_57_value + Option 44 Cost 57 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_57_multiplier + Option 44 Cost 57 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_58_value + Option 44 Cost 58 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_58_multiplier + Option 44 Cost 58 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_59_value + Option 44 Cost 59 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_59_multiplier + Option 44 Cost 59 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_cost_60_value + Option 44 Cost 60 Value + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_44_cost_60_multiplier + Option 44 Cost 60 Multiplier + Total option 44 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_44_lifetime + Option 44 Lifetime + The option lifetime. + Double + years + false + false + + + option_45 + Option 45 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_45_apply_logic + Option 45 Apply Logic + Logic that specifies if the Option 45 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_45_cost_1_value + Option 45 Cost 1 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_1_multiplier + Option 45 Cost 1 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_2_value + Option 45 Cost 2 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_2_multiplier + Option 45 Cost 2 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_3_value + Option 45 Cost 3 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_3_multiplier + Option 45 Cost 3 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_4_value + Option 45 Cost 4 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_4_multiplier + Option 45 Cost 4 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_5_value + Option 45 Cost 5 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_5_multiplier + Option 45 Cost 5 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_6_value + Option 45 Cost 6 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_6_multiplier + Option 45 Cost 6 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_7_value + Option 45 Cost 7 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_7_multiplier + Option 45 Cost 7 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_8_value + Option 45 Cost 8 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_8_multiplier + Option 45 Cost 8 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_9_value + Option 45 Cost 9 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_9_multiplier + Option 45 Cost 9 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_10_value + Option 45 Cost 10 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_10_multiplier + Option 45 Cost 10 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_11_value + Option 45 Cost 11 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_11_multiplier + Option 45 Cost 11 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_12_value + Option 45 Cost 12 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_12_multiplier + Option 45 Cost 12 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_13_value + Option 45 Cost 13 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_13_multiplier + Option 45 Cost 13 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_14_value + Option 45 Cost 14 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_14_multiplier + Option 45 Cost 14 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_15_value + Option 45 Cost 15 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_15_multiplier + Option 45 Cost 15 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_16_value + Option 45 Cost 16 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_16_multiplier + Option 45 Cost 16 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_17_value + Option 45 Cost 17 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_17_multiplier + Option 45 Cost 17 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_18_value + Option 45 Cost 18 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_18_multiplier + Option 45 Cost 18 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_19_value + Option 45 Cost 19 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_19_multiplier + Option 45 Cost 19 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_20_value + Option 45 Cost 20 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_20_multiplier + Option 45 Cost 20 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_21_value + Option 45 Cost 21 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_21_multiplier + Option 45 Cost 21 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_22_value + Option 45 Cost 22 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_22_multiplier + Option 45 Cost 22 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_23_value + Option 45 Cost 23 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_23_multiplier + Option 45 Cost 23 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_24_value + Option 45 Cost 24 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_24_multiplier + Option 45 Cost 24 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_25_value + Option 45 Cost 25 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_25_multiplier + Option 45 Cost 25 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_26_value + Option 45 Cost 26 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_26_multiplier + Option 45 Cost 26 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_27_value + Option 45 Cost 27 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_27_multiplier + Option 45 Cost 27 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_28_value + Option 45 Cost 28 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_28_multiplier + Option 45 Cost 28 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_29_value + Option 45 Cost 29 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_29_multiplier + Option 45 Cost 29 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_30_value + Option 45 Cost 30 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_30_multiplier + Option 45 Cost 30 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_31_value + Option 45 Cost 31 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_31_multiplier + Option 45 Cost 31 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_32_value + Option 45 Cost 32 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_32_multiplier + Option 45 Cost 32 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_33_value + Option 45 Cost 33 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_33_multiplier + Option 45 Cost 33 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_34_value + Option 45 Cost 34 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_34_multiplier + Option 45 Cost 34 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_35_value + Option 45 Cost 35 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_35_multiplier + Option 45 Cost 35 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_36_value + Option 45 Cost 36 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_36_multiplier + Option 45 Cost 36 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_37_value + Option 45 Cost 37 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_37_multiplier + Option 45 Cost 37 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_38_value + Option 45 Cost 38 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_38_multiplier + Option 45 Cost 38 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_39_value + Option 45 Cost 39 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_39_multiplier + Option 45 Cost 39 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_40_value + Option 45 Cost 40 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_40_multiplier + Option 45 Cost 40 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_41_value + Option 45 Cost 41 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_41_multiplier + Option 45 Cost 41 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_42_value + Option 45 Cost 42 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_42_multiplier + Option 45 Cost 42 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_43_value + Option 45 Cost 43 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_43_multiplier + Option 45 Cost 43 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_44_value + Option 45 Cost 44 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_44_multiplier + Option 45 Cost 44 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_45_value + Option 45 Cost 45 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_45_multiplier + Option 45 Cost 45 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_46_value + Option 45 Cost 46 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_46_multiplier + Option 45 Cost 46 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_47_value + Option 45 Cost 47 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_47_multiplier + Option 45 Cost 47 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_48_value + Option 45 Cost 48 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_48_multiplier + Option 45 Cost 48 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_49_value + Option 45 Cost 49 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_49_multiplier + Option 45 Cost 49 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_50_value + Option 45 Cost 50 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_50_multiplier + Option 45 Cost 50 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_51_value + Option 45 Cost 51 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_51_multiplier + Option 45 Cost 51 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_52_value + Option 45 Cost 52 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_52_multiplier + Option 45 Cost 52 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_53_value + Option 45 Cost 53 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_53_multiplier + Option 45 Cost 53 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_54_value + Option 45 Cost 54 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_54_multiplier + Option 45 Cost 54 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_55_value + Option 45 Cost 55 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_55_multiplier + Option 45 Cost 55 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_56_value + Option 45 Cost 56 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_56_multiplier + Option 45 Cost 56 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_57_value + Option 45 Cost 57 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_57_multiplier + Option 45 Cost 57 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_58_value + Option 45 Cost 58 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_58_multiplier + Option 45 Cost 58 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_59_value + Option 45 Cost 59 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_59_multiplier + Option 45 Cost 59 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_cost_60_value + Option 45 Cost 60 Value + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_45_cost_60_multiplier + Option 45 Cost 60 Multiplier + Total option 45 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_45_lifetime + Option 45 Lifetime + The option lifetime. + Double + years + false + false + + + option_46 + Option 46 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_46_apply_logic + Option 46 Apply Logic + Logic that specifies if the Option 46 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_46_cost_1_value + Option 46 Cost 1 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_1_multiplier + Option 46 Cost 1 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_2_value + Option 46 Cost 2 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_2_multiplier + Option 46 Cost 2 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_3_value + Option 46 Cost 3 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_3_multiplier + Option 46 Cost 3 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_4_value + Option 46 Cost 4 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_4_multiplier + Option 46 Cost 4 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_5_value + Option 46 Cost 5 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_5_multiplier + Option 46 Cost 5 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_6_value + Option 46 Cost 6 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_6_multiplier + Option 46 Cost 6 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_7_value + Option 46 Cost 7 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_7_multiplier + Option 46 Cost 7 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_8_value + Option 46 Cost 8 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_8_multiplier + Option 46 Cost 8 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_9_value + Option 46 Cost 9 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_9_multiplier + Option 46 Cost 9 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_10_value + Option 46 Cost 10 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_10_multiplier + Option 46 Cost 10 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_11_value + Option 46 Cost 11 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_11_multiplier + Option 46 Cost 11 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_12_value + Option 46 Cost 12 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_12_multiplier + Option 46 Cost 12 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_13_value + Option 46 Cost 13 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_13_multiplier + Option 46 Cost 13 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_14_value + Option 46 Cost 14 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_14_multiplier + Option 46 Cost 14 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_15_value + Option 46 Cost 15 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_15_multiplier + Option 46 Cost 15 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_16_value + Option 46 Cost 16 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_16_multiplier + Option 46 Cost 16 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_17_value + Option 46 Cost 17 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_17_multiplier + Option 46 Cost 17 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_18_value + Option 46 Cost 18 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_18_multiplier + Option 46 Cost 18 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_19_value + Option 46 Cost 19 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_19_multiplier + Option 46 Cost 19 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_20_value + Option 46 Cost 20 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_20_multiplier + Option 46 Cost 20 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_21_value + Option 46 Cost 21 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_21_multiplier + Option 46 Cost 21 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_22_value + Option 46 Cost 22 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_22_multiplier + Option 46 Cost 22 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_23_value + Option 46 Cost 23 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_23_multiplier + Option 46 Cost 23 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_24_value + Option 46 Cost 24 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_24_multiplier + Option 46 Cost 24 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_25_value + Option 46 Cost 25 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_25_multiplier + Option 46 Cost 25 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_26_value + Option 46 Cost 26 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_26_multiplier + Option 46 Cost 26 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_27_value + Option 46 Cost 27 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_27_multiplier + Option 46 Cost 27 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_28_value + Option 46 Cost 28 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_28_multiplier + Option 46 Cost 28 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_29_value + Option 46 Cost 29 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_29_multiplier + Option 46 Cost 29 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_30_value + Option 46 Cost 30 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_30_multiplier + Option 46 Cost 30 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_31_value + Option 46 Cost 31 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_31_multiplier + Option 46 Cost 31 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_32_value + Option 46 Cost 32 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_32_multiplier + Option 46 Cost 32 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_33_value + Option 46 Cost 33 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_33_multiplier + Option 46 Cost 33 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_34_value + Option 46 Cost 34 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_34_multiplier + Option 46 Cost 34 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_35_value + Option 46 Cost 35 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_35_multiplier + Option 46 Cost 35 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_36_value + Option 46 Cost 36 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_36_multiplier + Option 46 Cost 36 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_37_value + Option 46 Cost 37 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_37_multiplier + Option 46 Cost 37 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_38_value + Option 46 Cost 38 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_38_multiplier + Option 46 Cost 38 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_39_value + Option 46 Cost 39 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_39_multiplier + Option 46 Cost 39 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_40_value + Option 46 Cost 40 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_40_multiplier + Option 46 Cost 40 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_41_value + Option 46 Cost 41 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_41_multiplier + Option 46 Cost 41 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_42_value + Option 46 Cost 42 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_42_multiplier + Option 46 Cost 42 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_43_value + Option 46 Cost 43 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_43_multiplier + Option 46 Cost 43 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_44_value + Option 46 Cost 44 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_44_multiplier + Option 46 Cost 44 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_45_value + Option 46 Cost 45 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_45_multiplier + Option 46 Cost 45 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_46_value + Option 46 Cost 46 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_46_multiplier + Option 46 Cost 46 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_47_value + Option 46 Cost 47 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_47_multiplier + Option 46 Cost 47 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_48_value + Option 46 Cost 48 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_48_multiplier + Option 46 Cost 48 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_49_value + Option 46 Cost 49 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_49_multiplier + Option 46 Cost 49 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_50_value + Option 46 Cost 50 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_50_multiplier + Option 46 Cost 50 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_51_value + Option 46 Cost 51 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_51_multiplier + Option 46 Cost 51 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_52_value + Option 46 Cost 52 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_52_multiplier + Option 46 Cost 52 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_53_value + Option 46 Cost 53 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_53_multiplier + Option 46 Cost 53 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_54_value + Option 46 Cost 54 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_54_multiplier + Option 46 Cost 54 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_55_value + Option 46 Cost 55 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_55_multiplier + Option 46 Cost 55 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_56_value + Option 46 Cost 56 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_56_multiplier + Option 46 Cost 56 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_57_value + Option 46 Cost 57 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_57_multiplier + Option 46 Cost 57 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_58_value + Option 46 Cost 58 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_58_multiplier + Option 46 Cost 58 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_59_value + Option 46 Cost 59 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_59_multiplier + Option 46 Cost 59 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_cost_60_value + Option 46 Cost 60 Value + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_46_cost_60_multiplier + Option 46 Cost 60 Multiplier + Total option 46 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_46_lifetime + Option 46 Lifetime + The option lifetime. + Double + years + false + false + + + option_47 + Option 47 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_47_apply_logic + Option 47 Apply Logic + Logic that specifies if the Option 47 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_47_cost_1_value + Option 47 Cost 1 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_1_multiplier + Option 47 Cost 1 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_2_value + Option 47 Cost 2 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_2_multiplier + Option 47 Cost 2 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_3_value + Option 47 Cost 3 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_3_multiplier + Option 47 Cost 3 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_4_value + Option 47 Cost 4 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_4_multiplier + Option 47 Cost 4 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_5_value + Option 47 Cost 5 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_5_multiplier + Option 47 Cost 5 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_6_value + Option 47 Cost 6 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_6_multiplier + Option 47 Cost 6 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_7_value + Option 47 Cost 7 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_7_multiplier + Option 47 Cost 7 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_8_value + Option 47 Cost 8 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_8_multiplier + Option 47 Cost 8 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_9_value + Option 47 Cost 9 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_9_multiplier + Option 47 Cost 9 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_10_value + Option 47 Cost 10 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_10_multiplier + Option 47 Cost 10 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_11_value + Option 47 Cost 11 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_11_multiplier + Option 47 Cost 11 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_12_value + Option 47 Cost 12 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_12_multiplier + Option 47 Cost 12 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_13_value + Option 47 Cost 13 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_13_multiplier + Option 47 Cost 13 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_14_value + Option 47 Cost 14 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_14_multiplier + Option 47 Cost 14 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_15_value + Option 47 Cost 15 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_15_multiplier + Option 47 Cost 15 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_16_value + Option 47 Cost 16 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_16_multiplier + Option 47 Cost 16 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_17_value + Option 47 Cost 17 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_17_multiplier + Option 47 Cost 17 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_18_value + Option 47 Cost 18 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_18_multiplier + Option 47 Cost 18 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_19_value + Option 47 Cost 19 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_19_multiplier + Option 47 Cost 19 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_20_value + Option 47 Cost 20 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_20_multiplier + Option 47 Cost 20 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_21_value + Option 47 Cost 21 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_21_multiplier + Option 47 Cost 21 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_22_value + Option 47 Cost 22 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_22_multiplier + Option 47 Cost 22 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_23_value + Option 47 Cost 23 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_23_multiplier + Option 47 Cost 23 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_24_value + Option 47 Cost 24 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_24_multiplier + Option 47 Cost 24 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_25_value + Option 47 Cost 25 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_25_multiplier + Option 47 Cost 25 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_26_value + Option 47 Cost 26 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_26_multiplier + Option 47 Cost 26 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_27_value + Option 47 Cost 27 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_27_multiplier + Option 47 Cost 27 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_28_value + Option 47 Cost 28 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_28_multiplier + Option 47 Cost 28 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_29_value + Option 47 Cost 29 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_29_multiplier + Option 47 Cost 29 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_30_value + Option 47 Cost 30 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_30_multiplier + Option 47 Cost 30 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_31_value + Option 47 Cost 31 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_31_multiplier + Option 47 Cost 31 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_32_value + Option 47 Cost 32 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_32_multiplier + Option 47 Cost 32 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_33_value + Option 47 Cost 33 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_33_multiplier + Option 47 Cost 33 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_34_value + Option 47 Cost 34 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_34_multiplier + Option 47 Cost 34 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_35_value + Option 47 Cost 35 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_35_multiplier + Option 47 Cost 35 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_36_value + Option 47 Cost 36 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_36_multiplier + Option 47 Cost 36 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_37_value + Option 47 Cost 37 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_37_multiplier + Option 47 Cost 37 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_38_value + Option 47 Cost 38 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_38_multiplier + Option 47 Cost 38 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_39_value + Option 47 Cost 39 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_39_multiplier + Option 47 Cost 39 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_40_value + Option 47 Cost 40 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_40_multiplier + Option 47 Cost 40 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_41_value + Option 47 Cost 41 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_41_multiplier + Option 47 Cost 41 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_42_value + Option 47 Cost 42 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_42_multiplier + Option 47 Cost 42 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_43_value + Option 47 Cost 43 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_43_multiplier + Option 47 Cost 43 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_44_value + Option 47 Cost 44 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_44_multiplier + Option 47 Cost 44 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_45_value + Option 47 Cost 45 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_45_multiplier + Option 47 Cost 45 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_46_value + Option 47 Cost 46 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_46_multiplier + Option 47 Cost 46 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_47_value + Option 47 Cost 47 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_47_multiplier + Option 47 Cost 47 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_48_value + Option 47 Cost 48 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_48_multiplier + Option 47 Cost 48 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_49_value + Option 47 Cost 49 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_49_multiplier + Option 47 Cost 49 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_50_value + Option 47 Cost 50 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_50_multiplier + Option 47 Cost 50 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_51_value + Option 47 Cost 51 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_51_multiplier + Option 47 Cost 51 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_52_value + Option 47 Cost 52 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_52_multiplier + Option 47 Cost 52 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_53_value + Option 47 Cost 53 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_53_multiplier + Option 47 Cost 53 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_54_value + Option 47 Cost 54 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_54_multiplier + Option 47 Cost 54 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_55_value + Option 47 Cost 55 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_55_multiplier + Option 47 Cost 55 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_56_value + Option 47 Cost 56 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_56_multiplier + Option 47 Cost 56 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_57_value + Option 47 Cost 57 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_57_multiplier + Option 47 Cost 57 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_58_value + Option 47 Cost 58 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_58_multiplier + Option 47 Cost 58 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_59_value + Option 47 Cost 59 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_59_multiplier + Option 47 Cost 59 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_cost_60_value + Option 47 Cost 60 Value + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_47_cost_60_multiplier + Option 47 Cost 60 Multiplier + Total option 47 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_47_lifetime + Option 47 Lifetime + The option lifetime. + Double + years + false + false + + + option_48 + Option 48 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_48_apply_logic + Option 48 Apply Logic + Logic that specifies if the Option 48 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_48_cost_1_value + Option 48 Cost 1 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_1_multiplier + Option 48 Cost 1 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_2_value + Option 48 Cost 2 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_2_multiplier + Option 48 Cost 2 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_3_value + Option 48 Cost 3 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_3_multiplier + Option 48 Cost 3 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_4_value + Option 48 Cost 4 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_4_multiplier + Option 48 Cost 4 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_5_value + Option 48 Cost 5 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_5_multiplier + Option 48 Cost 5 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_6_value + Option 48 Cost 6 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_6_multiplier + Option 48 Cost 6 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_7_value + Option 48 Cost 7 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_7_multiplier + Option 48 Cost 7 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_8_value + Option 48 Cost 8 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_8_multiplier + Option 48 Cost 8 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_9_value + Option 48 Cost 9 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_9_multiplier + Option 48 Cost 9 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_10_value + Option 48 Cost 10 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_10_multiplier + Option 48 Cost 10 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_11_value + Option 48 Cost 11 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_11_multiplier + Option 48 Cost 11 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_12_value + Option 48 Cost 12 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_12_multiplier + Option 48 Cost 12 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_13_value + Option 48 Cost 13 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_13_multiplier + Option 48 Cost 13 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_14_value + Option 48 Cost 14 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_14_multiplier + Option 48 Cost 14 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_15_value + Option 48 Cost 15 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_15_multiplier + Option 48 Cost 15 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_16_value + Option 48 Cost 16 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_16_multiplier + Option 48 Cost 16 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_17_value + Option 48 Cost 17 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_17_multiplier + Option 48 Cost 17 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_18_value + Option 48 Cost 18 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_18_multiplier + Option 48 Cost 18 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_19_value + Option 48 Cost 19 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_19_multiplier + Option 48 Cost 19 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_20_value + Option 48 Cost 20 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_20_multiplier + Option 48 Cost 20 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_21_value + Option 48 Cost 21 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_21_multiplier + Option 48 Cost 21 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_22_value + Option 48 Cost 22 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_22_multiplier + Option 48 Cost 22 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_23_value + Option 48 Cost 23 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_23_multiplier + Option 48 Cost 23 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_24_value + Option 48 Cost 24 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_24_multiplier + Option 48 Cost 24 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_25_value + Option 48 Cost 25 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_25_multiplier + Option 48 Cost 25 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_26_value + Option 48 Cost 26 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_26_multiplier + Option 48 Cost 26 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_27_value + Option 48 Cost 27 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_27_multiplier + Option 48 Cost 27 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_28_value + Option 48 Cost 28 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_28_multiplier + Option 48 Cost 28 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_29_value + Option 48 Cost 29 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_29_multiplier + Option 48 Cost 29 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_30_value + Option 48 Cost 30 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_30_multiplier + Option 48 Cost 30 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_31_value + Option 48 Cost 31 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_31_multiplier + Option 48 Cost 31 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_32_value + Option 48 Cost 32 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_32_multiplier + Option 48 Cost 32 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_33_value + Option 48 Cost 33 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_33_multiplier + Option 48 Cost 33 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_34_value + Option 48 Cost 34 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_34_multiplier + Option 48 Cost 34 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_35_value + Option 48 Cost 35 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_35_multiplier + Option 48 Cost 35 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_36_value + Option 48 Cost 36 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_36_multiplier + Option 48 Cost 36 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_37_value + Option 48 Cost 37 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_37_multiplier + Option 48 Cost 37 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_38_value + Option 48 Cost 38 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_38_multiplier + Option 48 Cost 38 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_39_value + Option 48 Cost 39 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_39_multiplier + Option 48 Cost 39 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_40_value + Option 48 Cost 40 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_40_multiplier + Option 48 Cost 40 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_41_value + Option 48 Cost 41 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_41_multiplier + Option 48 Cost 41 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_42_value + Option 48 Cost 42 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_42_multiplier + Option 48 Cost 42 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_43_value + Option 48 Cost 43 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_43_multiplier + Option 48 Cost 43 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_44_value + Option 48 Cost 44 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_44_multiplier + Option 48 Cost 44 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_45_value + Option 48 Cost 45 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_45_multiplier + Option 48 Cost 45 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_46_value + Option 48 Cost 46 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_46_multiplier + Option 48 Cost 46 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_47_value + Option 48 Cost 47 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_47_multiplier + Option 48 Cost 47 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_48_value + Option 48 Cost 48 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_48_multiplier + Option 48 Cost 48 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_49_value + Option 48 Cost 49 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_49_multiplier + Option 48 Cost 49 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_50_value + Option 48 Cost 50 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_50_multiplier + Option 48 Cost 50 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_51_value + Option 48 Cost 51 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_51_multiplier + Option 48 Cost 51 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_52_value + Option 48 Cost 52 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_52_multiplier + Option 48 Cost 52 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_53_value + Option 48 Cost 53 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_53_multiplier + Option 48 Cost 53 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_54_value + Option 48 Cost 54 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_54_multiplier + Option 48 Cost 54 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_55_value + Option 48 Cost 55 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_55_multiplier + Option 48 Cost 55 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_56_value + Option 48 Cost 56 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_56_multiplier + Option 48 Cost 56 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_57_value + Option 48 Cost 57 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_57_multiplier + Option 48 Cost 57 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_58_value + Option 48 Cost 58 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_58_multiplier + Option 48 Cost 58 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_59_value + Option 48 Cost 59 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_59_multiplier + Option 48 Cost 59 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_cost_60_value + Option 48 Cost 60 Value + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_48_cost_60_multiplier + Option 48 Cost 60 Multiplier + Total option 48 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_48_lifetime + Option 48 Lifetime + The option lifetime. + Double + years + false + false + + + option_49 + Option 49 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_49_apply_logic + Option 49 Apply Logic + Logic that specifies if the Option 49 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_49_cost_1_value + Option 49 Cost 1 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_1_multiplier + Option 49 Cost 1 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_2_value + Option 49 Cost 2 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_2_multiplier + Option 49 Cost 2 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_3_value + Option 49 Cost 3 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_3_multiplier + Option 49 Cost 3 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_4_value + Option 49 Cost 4 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_4_multiplier + Option 49 Cost 4 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_5_value + Option 49 Cost 5 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_5_multiplier + Option 49 Cost 5 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_6_value + Option 49 Cost 6 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_6_multiplier + Option 49 Cost 6 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_7_value + Option 49 Cost 7 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_7_multiplier + Option 49 Cost 7 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_8_value + Option 49 Cost 8 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_8_multiplier + Option 49 Cost 8 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_9_value + Option 49 Cost 9 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_9_multiplier + Option 49 Cost 9 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_10_value + Option 49 Cost 10 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_10_multiplier + Option 49 Cost 10 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_11_value + Option 49 Cost 11 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_11_multiplier + Option 49 Cost 11 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_12_value + Option 49 Cost 12 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_12_multiplier + Option 49 Cost 12 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_13_value + Option 49 Cost 13 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_13_multiplier + Option 49 Cost 13 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_14_value + Option 49 Cost 14 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_14_multiplier + Option 49 Cost 14 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_15_value + Option 49 Cost 15 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_15_multiplier + Option 49 Cost 15 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_16_value + Option 49 Cost 16 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_16_multiplier + Option 49 Cost 16 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_17_value + Option 49 Cost 17 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_17_multiplier + Option 49 Cost 17 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_18_value + Option 49 Cost 18 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_18_multiplier + Option 49 Cost 18 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_19_value + Option 49 Cost 19 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_19_multiplier + Option 49 Cost 19 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_20_value + Option 49 Cost 20 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_20_multiplier + Option 49 Cost 20 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_21_value + Option 49 Cost 21 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_21_multiplier + Option 49 Cost 21 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_22_value + Option 49 Cost 22 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_22_multiplier + Option 49 Cost 22 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_23_value + Option 49 Cost 23 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_23_multiplier + Option 49 Cost 23 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_24_value + Option 49 Cost 24 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_24_multiplier + Option 49 Cost 24 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_25_value + Option 49 Cost 25 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_25_multiplier + Option 49 Cost 25 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_26_value + Option 49 Cost 26 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_26_multiplier + Option 49 Cost 26 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_27_value + Option 49 Cost 27 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_27_multiplier + Option 49 Cost 27 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_28_value + Option 49 Cost 28 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_28_multiplier + Option 49 Cost 28 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_29_value + Option 49 Cost 29 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_29_multiplier + Option 49 Cost 29 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_30_value + Option 49 Cost 30 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_30_multiplier + Option 49 Cost 30 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_31_value + Option 49 Cost 31 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_31_multiplier + Option 49 Cost 31 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_32_value + Option 49 Cost 32 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_32_multiplier + Option 49 Cost 32 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_33_value + Option 49 Cost 33 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_33_multiplier + Option 49 Cost 33 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_34_value + Option 49 Cost 34 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_34_multiplier + Option 49 Cost 34 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_35_value + Option 49 Cost 35 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_35_multiplier + Option 49 Cost 35 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_36_value + Option 49 Cost 36 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_36_multiplier + Option 49 Cost 36 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_37_value + Option 49 Cost 37 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_37_multiplier + Option 49 Cost 37 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_38_value + Option 49 Cost 38 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_38_multiplier + Option 49 Cost 38 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_39_value + Option 49 Cost 39 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_39_multiplier + Option 49 Cost 39 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_40_value + Option 49 Cost 40 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_40_multiplier + Option 49 Cost 40 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_41_value + Option 49 Cost 41 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_41_multiplier + Option 49 Cost 41 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_42_value + Option 49 Cost 42 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_42_multiplier + Option 49 Cost 42 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_43_value + Option 49 Cost 43 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_43_multiplier + Option 49 Cost 43 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_44_value + Option 49 Cost 44 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_44_multiplier + Option 49 Cost 44 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_45_value + Option 49 Cost 45 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_45_multiplier + Option 49 Cost 45 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_46_value + Option 49 Cost 46 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_46_multiplier + Option 49 Cost 46 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_47_value + Option 49 Cost 47 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_47_multiplier + Option 49 Cost 47 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_48_value + Option 49 Cost 48 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_48_multiplier + Option 49 Cost 48 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_49_value + Option 49 Cost 49 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_49_multiplier + Option 49 Cost 49 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_50_value + Option 49 Cost 50 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_50_multiplier + Option 49 Cost 50 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_51_value + Option 49 Cost 51 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_51_multiplier + Option 49 Cost 51 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_52_value + Option 49 Cost 52 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_52_multiplier + Option 49 Cost 52 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_53_value + Option 49 Cost 53 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_53_multiplier + Option 49 Cost 53 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_54_value + Option 49 Cost 54 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_54_multiplier + Option 49 Cost 54 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_55_value + Option 49 Cost 55 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_55_multiplier + Option 49 Cost 55 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_56_value + Option 49 Cost 56 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_56_multiplier + Option 49 Cost 56 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_57_value + Option 49 Cost 57 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_57_multiplier + Option 49 Cost 57 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_58_value + Option 49 Cost 58 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_58_multiplier + Option 49 Cost 58 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_59_value + Option 49 Cost 59 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_59_multiplier + Option 49 Cost 59 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_cost_60_value + Option 49 Cost 60 Value + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_49_cost_60_multiplier + Option 49 Cost 60 Multiplier + Total option 49 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_49_lifetime + Option 49 Lifetime + The option lifetime. + Double + years + false + false + + + option_50 + Option 50 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_50_apply_logic + Option 50 Apply Logic + Logic that specifies if the Option 50 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_50_cost_1_value + Option 50 Cost 1 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_1_multiplier + Option 50 Cost 1 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_2_value + Option 50 Cost 2 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_2_multiplier + Option 50 Cost 2 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_3_value + Option 50 Cost 3 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_3_multiplier + Option 50 Cost 3 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_4_value + Option 50 Cost 4 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_4_multiplier + Option 50 Cost 4 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_5_value + Option 50 Cost 5 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_5_multiplier + Option 50 Cost 5 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_6_value + Option 50 Cost 6 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_6_multiplier + Option 50 Cost 6 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_7_value + Option 50 Cost 7 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_7_multiplier + Option 50 Cost 7 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_8_value + Option 50 Cost 8 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_8_multiplier + Option 50 Cost 8 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_9_value + Option 50 Cost 9 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_9_multiplier + Option 50 Cost 9 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_10_value + Option 50 Cost 10 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_10_multiplier + Option 50 Cost 10 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_11_value + Option 50 Cost 11 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_11_multiplier + Option 50 Cost 11 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_12_value + Option 50 Cost 12 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_12_multiplier + Option 50 Cost 12 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_13_value + Option 50 Cost 13 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_13_multiplier + Option 50 Cost 13 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_14_value + Option 50 Cost 14 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_14_multiplier + Option 50 Cost 14 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_15_value + Option 50 Cost 15 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_15_multiplier + Option 50 Cost 15 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_16_value + Option 50 Cost 16 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_16_multiplier + Option 50 Cost 16 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_17_value + Option 50 Cost 17 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_17_multiplier + Option 50 Cost 17 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_18_value + Option 50 Cost 18 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_18_multiplier + Option 50 Cost 18 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_19_value + Option 50 Cost 19 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_19_multiplier + Option 50 Cost 19 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_20_value + Option 50 Cost 20 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_20_multiplier + Option 50 Cost 20 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_21_value + Option 50 Cost 21 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_21_multiplier + Option 50 Cost 21 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_22_value + Option 50 Cost 22 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_22_multiplier + Option 50 Cost 22 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_23_value + Option 50 Cost 23 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_23_multiplier + Option 50 Cost 23 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_24_value + Option 50 Cost 24 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_24_multiplier + Option 50 Cost 24 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_25_value + Option 50 Cost 25 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_25_multiplier + Option 50 Cost 25 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_26_value + Option 50 Cost 26 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_26_multiplier + Option 50 Cost 26 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_27_value + Option 50 Cost 27 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_27_multiplier + Option 50 Cost 27 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_28_value + Option 50 Cost 28 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_28_multiplier + Option 50 Cost 28 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_29_value + Option 50 Cost 29 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_29_multiplier + Option 50 Cost 29 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_30_value + Option 50 Cost 30 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_30_multiplier + Option 50 Cost 30 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_31_value + Option 50 Cost 31 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_31_multiplier + Option 50 Cost 31 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_32_value + Option 50 Cost 32 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_32_multiplier + Option 50 Cost 32 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_33_value + Option 50 Cost 33 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_33_multiplier + Option 50 Cost 33 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_34_value + Option 50 Cost 34 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_34_multiplier + Option 50 Cost 34 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_35_value + Option 50 Cost 35 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_35_multiplier + Option 50 Cost 35 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_36_value + Option 50 Cost 36 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_36_multiplier + Option 50 Cost 36 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_37_value + Option 50 Cost 37 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_37_multiplier + Option 50 Cost 37 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_38_value + Option 50 Cost 38 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_38_multiplier + Option 50 Cost 38 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_39_value + Option 50 Cost 39 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_39_multiplier + Option 50 Cost 39 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_40_value + Option 50 Cost 40 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_40_multiplier + Option 50 Cost 40 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_41_value + Option 50 Cost 41 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_41_multiplier + Option 50 Cost 41 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_42_value + Option 50 Cost 42 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_42_multiplier + Option 50 Cost 42 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_43_value + Option 50 Cost 43 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_43_multiplier + Option 50 Cost 43 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_44_value + Option 50 Cost 44 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_44_multiplier + Option 50 Cost 44 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_45_value + Option 50 Cost 45 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_45_multiplier + Option 50 Cost 45 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_46_value + Option 50 Cost 46 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_46_multiplier + Option 50 Cost 46 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_47_value + Option 50 Cost 47 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_47_multiplier + Option 50 Cost 47 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_48_value + Option 50 Cost 48 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_48_multiplier + Option 50 Cost 48 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_49_value + Option 50 Cost 49 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_49_multiplier + Option 50 Cost 49 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_50_value + Option 50 Cost 50 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_50_multiplier + Option 50 Cost 50 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_51_value + Option 50 Cost 51 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_51_multiplier + Option 50 Cost 51 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_52_value + Option 50 Cost 52 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_52_multiplier + Option 50 Cost 52 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_53_value + Option 50 Cost 53 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_53_multiplier + Option 50 Cost 53 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_54_value + Option 50 Cost 54 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_54_multiplier + Option 50 Cost 54 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_55_value + Option 50 Cost 55 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_55_multiplier + Option 50 Cost 55 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_56_value + Option 50 Cost 56 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_56_multiplier + Option 50 Cost 56 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_57_value + Option 50 Cost 57 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_57_multiplier + Option 50 Cost 57 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_58_value + Option 50 Cost 58 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_58_multiplier + Option 50 Cost 58 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_59_value + Option 50 Cost 59 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_59_multiplier + Option 50 Cost 59 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_cost_60_value + Option 50 Cost 60 Value + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_50_cost_60_multiplier + Option 50 Cost 60 Multiplier + Total option 50 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_50_lifetime + Option 50 Lifetime + The option lifetime. + Double + years + false + false + + + option_51 + Option 51 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_51_apply_logic + Option 51 Apply Logic + Logic that specifies if the Option 51 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_51_cost_1_value + Option 51 Cost 1 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_1_multiplier + Option 51 Cost 1 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_2_value + Option 51 Cost 2 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_2_multiplier + Option 51 Cost 2 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_3_value + Option 51 Cost 3 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_3_multiplier + Option 51 Cost 3 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_4_value + Option 51 Cost 4 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_4_multiplier + Option 51 Cost 4 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_5_value + Option 51 Cost 5 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_5_multiplier + Option 51 Cost 5 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_6_value + Option 51 Cost 6 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_6_multiplier + Option 51 Cost 6 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_7_value + Option 51 Cost 7 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_7_multiplier + Option 51 Cost 7 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_8_value + Option 51 Cost 8 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_8_multiplier + Option 51 Cost 8 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_9_value + Option 51 Cost 9 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_9_multiplier + Option 51 Cost 9 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_10_value + Option 51 Cost 10 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_10_multiplier + Option 51 Cost 10 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_11_value + Option 51 Cost 11 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_11_multiplier + Option 51 Cost 11 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_12_value + Option 51 Cost 12 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_12_multiplier + Option 51 Cost 12 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_13_value + Option 51 Cost 13 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_13_multiplier + Option 51 Cost 13 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_14_value + Option 51 Cost 14 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_14_multiplier + Option 51 Cost 14 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_15_value + Option 51 Cost 15 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_15_multiplier + Option 51 Cost 15 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_16_value + Option 51 Cost 16 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_16_multiplier + Option 51 Cost 16 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_17_value + Option 51 Cost 17 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_17_multiplier + Option 51 Cost 17 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_18_value + Option 51 Cost 18 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_18_multiplier + Option 51 Cost 18 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_19_value + Option 51 Cost 19 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_19_multiplier + Option 51 Cost 19 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_20_value + Option 51 Cost 20 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_20_multiplier + Option 51 Cost 20 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_21_value + Option 51 Cost 21 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_21_multiplier + Option 51 Cost 21 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_22_value + Option 51 Cost 22 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_22_multiplier + Option 51 Cost 22 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_23_value + Option 51 Cost 23 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_23_multiplier + Option 51 Cost 23 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_24_value + Option 51 Cost 24 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_24_multiplier + Option 51 Cost 24 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_25_value + Option 51 Cost 25 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_25_multiplier + Option 51 Cost 25 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_26_value + Option 51 Cost 26 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_26_multiplier + Option 51 Cost 26 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_27_value + Option 51 Cost 27 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_27_multiplier + Option 51 Cost 27 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_28_value + Option 51 Cost 28 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_28_multiplier + Option 51 Cost 28 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_29_value + Option 51 Cost 29 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_29_multiplier + Option 51 Cost 29 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_30_value + Option 51 Cost 30 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_30_multiplier + Option 51 Cost 30 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_31_value + Option 51 Cost 31 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_31_multiplier + Option 51 Cost 31 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_32_value + Option 51 Cost 32 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_32_multiplier + Option 51 Cost 32 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_33_value + Option 51 Cost 33 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_33_multiplier + Option 51 Cost 33 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_34_value + Option 51 Cost 34 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_34_multiplier + Option 51 Cost 34 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_35_value + Option 51 Cost 35 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_35_multiplier + Option 51 Cost 35 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_36_value + Option 51 Cost 36 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_36_multiplier + Option 51 Cost 36 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_37_value + Option 51 Cost 37 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_37_multiplier + Option 51 Cost 37 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_38_value + Option 51 Cost 38 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_38_multiplier + Option 51 Cost 38 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_39_value + Option 51 Cost 39 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_39_multiplier + Option 51 Cost 39 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_40_value + Option 51 Cost 40 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_40_multiplier + Option 51 Cost 40 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_41_value + Option 51 Cost 41 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_41_multiplier + Option 51 Cost 41 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_42_value + Option 51 Cost 42 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_42_multiplier + Option 51 Cost 42 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_43_value + Option 51 Cost 43 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_43_multiplier + Option 51 Cost 43 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_44_value + Option 51 Cost 44 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_44_multiplier + Option 51 Cost 44 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_45_value + Option 51 Cost 45 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_45_multiplier + Option 51 Cost 45 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_46_value + Option 51 Cost 46 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_46_multiplier + Option 51 Cost 46 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_47_value + Option 51 Cost 47 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_47_multiplier + Option 51 Cost 47 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_48_value + Option 51 Cost 48 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_48_multiplier + Option 51 Cost 48 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_49_value + Option 51 Cost 49 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_49_multiplier + Option 51 Cost 49 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_50_value + Option 51 Cost 50 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_50_multiplier + Option 51 Cost 50 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_51_value + Option 51 Cost 51 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_51_multiplier + Option 51 Cost 51 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_52_value + Option 51 Cost 52 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_52_multiplier + Option 51 Cost 52 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_53_value + Option 51 Cost 53 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_53_multiplier + Option 51 Cost 53 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_54_value + Option 51 Cost 54 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_54_multiplier + Option 51 Cost 54 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_55_value + Option 51 Cost 55 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_55_multiplier + Option 51 Cost 55 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_56_value + Option 51 Cost 56 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_56_multiplier + Option 51 Cost 56 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_57_value + Option 51 Cost 57 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_57_multiplier + Option 51 Cost 57 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_58_value + Option 51 Cost 58 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_58_multiplier + Option 51 Cost 58 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_59_value + Option 51 Cost 59 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_59_multiplier + Option 51 Cost 59 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_cost_60_value + Option 51 Cost 60 Value + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_51_cost_60_multiplier + Option 51 Cost 60 Multiplier + Total option 51 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_51_lifetime + Option 51 Lifetime + The option lifetime. + Double + years + false + false + + + option_52 + Option 52 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_52_apply_logic + Option 52 Apply Logic + Logic that specifies if the Option 52 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_52_cost_1_value + Option 52 Cost 1 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_1_multiplier + Option 52 Cost 1 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_2_value + Option 52 Cost 2 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_2_multiplier + Option 52 Cost 2 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_3_value + Option 52 Cost 3 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_3_multiplier + Option 52 Cost 3 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_4_value + Option 52 Cost 4 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_4_multiplier + Option 52 Cost 4 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_5_value + Option 52 Cost 5 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_5_multiplier + Option 52 Cost 5 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_6_value + Option 52 Cost 6 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_6_multiplier + Option 52 Cost 6 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_7_value + Option 52 Cost 7 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_7_multiplier + Option 52 Cost 7 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_8_value + Option 52 Cost 8 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_8_multiplier + Option 52 Cost 8 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_9_value + Option 52 Cost 9 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_9_multiplier + Option 52 Cost 9 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_10_value + Option 52 Cost 10 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_10_multiplier + Option 52 Cost 10 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_11_value + Option 52 Cost 11 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_11_multiplier + Option 52 Cost 11 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_12_value + Option 52 Cost 12 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_12_multiplier + Option 52 Cost 12 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_13_value + Option 52 Cost 13 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_13_multiplier + Option 52 Cost 13 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_14_value + Option 52 Cost 14 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_14_multiplier + Option 52 Cost 14 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_15_value + Option 52 Cost 15 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_15_multiplier + Option 52 Cost 15 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_16_value + Option 52 Cost 16 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_16_multiplier + Option 52 Cost 16 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_17_value + Option 52 Cost 17 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_17_multiplier + Option 52 Cost 17 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_18_value + Option 52 Cost 18 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_18_multiplier + Option 52 Cost 18 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_19_value + Option 52 Cost 19 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_19_multiplier + Option 52 Cost 19 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_20_value + Option 52 Cost 20 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_20_multiplier + Option 52 Cost 20 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_21_value + Option 52 Cost 21 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_21_multiplier + Option 52 Cost 21 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_22_value + Option 52 Cost 22 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_22_multiplier + Option 52 Cost 22 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_23_value + Option 52 Cost 23 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_23_multiplier + Option 52 Cost 23 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_24_value + Option 52 Cost 24 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_24_multiplier + Option 52 Cost 24 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_25_value + Option 52 Cost 25 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_25_multiplier + Option 52 Cost 25 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_26_value + Option 52 Cost 26 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_26_multiplier + Option 52 Cost 26 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_27_value + Option 52 Cost 27 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_27_multiplier + Option 52 Cost 27 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_28_value + Option 52 Cost 28 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_28_multiplier + Option 52 Cost 28 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_29_value + Option 52 Cost 29 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_29_multiplier + Option 52 Cost 29 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_30_value + Option 52 Cost 30 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_30_multiplier + Option 52 Cost 30 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_31_value + Option 52 Cost 31 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_31_multiplier + Option 52 Cost 31 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_32_value + Option 52 Cost 32 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_32_multiplier + Option 52 Cost 32 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_33_value + Option 52 Cost 33 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_33_multiplier + Option 52 Cost 33 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_34_value + Option 52 Cost 34 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_34_multiplier + Option 52 Cost 34 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_35_value + Option 52 Cost 35 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_35_multiplier + Option 52 Cost 35 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_36_value + Option 52 Cost 36 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_36_multiplier + Option 52 Cost 36 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_37_value + Option 52 Cost 37 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_37_multiplier + Option 52 Cost 37 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_38_value + Option 52 Cost 38 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_38_multiplier + Option 52 Cost 38 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_39_value + Option 52 Cost 39 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_39_multiplier + Option 52 Cost 39 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_40_value + Option 52 Cost 40 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_40_multiplier + Option 52 Cost 40 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_41_value + Option 52 Cost 41 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_41_multiplier + Option 52 Cost 41 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_42_value + Option 52 Cost 42 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_42_multiplier + Option 52 Cost 42 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_43_value + Option 52 Cost 43 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_43_multiplier + Option 52 Cost 43 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_44_value + Option 52 Cost 44 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_44_multiplier + Option 52 Cost 44 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_45_value + Option 52 Cost 45 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_45_multiplier + Option 52 Cost 45 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_46_value + Option 52 Cost 46 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_46_multiplier + Option 52 Cost 46 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_47_value + Option 52 Cost 47 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_47_multiplier + Option 52 Cost 47 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_48_value + Option 52 Cost 48 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_48_multiplier + Option 52 Cost 48 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_49_value + Option 52 Cost 49 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_49_multiplier + Option 52 Cost 49 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_50_value + Option 52 Cost 50 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_50_multiplier + Option 52 Cost 50 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_51_value + Option 52 Cost 51 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_51_multiplier + Option 52 Cost 51 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_52_value + Option 52 Cost 52 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_52_multiplier + Option 52 Cost 52 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_53_value + Option 52 Cost 53 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_53_multiplier + Option 52 Cost 53 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_54_value + Option 52 Cost 54 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_54_multiplier + Option 52 Cost 54 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_55_value + Option 52 Cost 55 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_55_multiplier + Option 52 Cost 55 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_56_value + Option 52 Cost 56 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_56_multiplier + Option 52 Cost 56 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_57_value + Option 52 Cost 57 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_57_multiplier + Option 52 Cost 57 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_58_value + Option 52 Cost 58 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_58_multiplier + Option 52 Cost 58 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_59_value + Option 52 Cost 59 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_59_multiplier + Option 52 Cost 59 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_cost_60_value + Option 52 Cost 60 Value + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_52_cost_60_multiplier + Option 52 Cost 60 Multiplier + Total option 52 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_52_lifetime + Option 52 Lifetime + The option lifetime. + Double + years + false + false + + + option_53 + Option 53 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_53_apply_logic + Option 53 Apply Logic + Logic that specifies if the Option 53 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_53_cost_1_value + Option 53 Cost 1 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_1_multiplier + Option 53 Cost 1 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_2_value + Option 53 Cost 2 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_2_multiplier + Option 53 Cost 2 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_3_value + Option 53 Cost 3 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_3_multiplier + Option 53 Cost 3 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_4_value + Option 53 Cost 4 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_4_multiplier + Option 53 Cost 4 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_5_value + Option 53 Cost 5 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_5_multiplier + Option 53 Cost 5 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_6_value + Option 53 Cost 6 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_6_multiplier + Option 53 Cost 6 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_7_value + Option 53 Cost 7 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_7_multiplier + Option 53 Cost 7 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_8_value + Option 53 Cost 8 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_8_multiplier + Option 53 Cost 8 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_9_value + Option 53 Cost 9 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_9_multiplier + Option 53 Cost 9 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_10_value + Option 53 Cost 10 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_10_multiplier + Option 53 Cost 10 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_11_value + Option 53 Cost 11 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_11_multiplier + Option 53 Cost 11 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_12_value + Option 53 Cost 12 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_12_multiplier + Option 53 Cost 12 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_13_value + Option 53 Cost 13 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_13_multiplier + Option 53 Cost 13 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_14_value + Option 53 Cost 14 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_14_multiplier + Option 53 Cost 14 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_15_value + Option 53 Cost 15 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_15_multiplier + Option 53 Cost 15 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_16_value + Option 53 Cost 16 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_16_multiplier + Option 53 Cost 16 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_17_value + Option 53 Cost 17 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_17_multiplier + Option 53 Cost 17 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_18_value + Option 53 Cost 18 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_18_multiplier + Option 53 Cost 18 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_19_value + Option 53 Cost 19 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_19_multiplier + Option 53 Cost 19 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_20_value + Option 53 Cost 20 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_20_multiplier + Option 53 Cost 20 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_21_value + Option 53 Cost 21 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_21_multiplier + Option 53 Cost 21 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_22_value + Option 53 Cost 22 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_22_multiplier + Option 53 Cost 22 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_23_value + Option 53 Cost 23 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_23_multiplier + Option 53 Cost 23 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_24_value + Option 53 Cost 24 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_24_multiplier + Option 53 Cost 24 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_25_value + Option 53 Cost 25 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_25_multiplier + Option 53 Cost 25 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_26_value + Option 53 Cost 26 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_26_multiplier + Option 53 Cost 26 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_27_value + Option 53 Cost 27 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_27_multiplier + Option 53 Cost 27 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_28_value + Option 53 Cost 28 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_28_multiplier + Option 53 Cost 28 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_29_value + Option 53 Cost 29 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_29_multiplier + Option 53 Cost 29 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_30_value + Option 53 Cost 30 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_30_multiplier + Option 53 Cost 30 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_31_value + Option 53 Cost 31 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_31_multiplier + Option 53 Cost 31 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_32_value + Option 53 Cost 32 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_32_multiplier + Option 53 Cost 32 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_33_value + Option 53 Cost 33 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_33_multiplier + Option 53 Cost 33 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_34_value + Option 53 Cost 34 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_34_multiplier + Option 53 Cost 34 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_35_value + Option 53 Cost 35 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_35_multiplier + Option 53 Cost 35 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_36_value + Option 53 Cost 36 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_36_multiplier + Option 53 Cost 36 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_37_value + Option 53 Cost 37 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_37_multiplier + Option 53 Cost 37 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_38_value + Option 53 Cost 38 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_38_multiplier + Option 53 Cost 38 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_39_value + Option 53 Cost 39 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_39_multiplier + Option 53 Cost 39 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_40_value + Option 53 Cost 40 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_40_multiplier + Option 53 Cost 40 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_41_value + Option 53 Cost 41 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_41_multiplier + Option 53 Cost 41 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_42_value + Option 53 Cost 42 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_42_multiplier + Option 53 Cost 42 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_43_value + Option 53 Cost 43 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_43_multiplier + Option 53 Cost 43 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_44_value + Option 53 Cost 44 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_44_multiplier + Option 53 Cost 44 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_45_value + Option 53 Cost 45 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_45_multiplier + Option 53 Cost 45 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_46_value + Option 53 Cost 46 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_46_multiplier + Option 53 Cost 46 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_47_value + Option 53 Cost 47 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_47_multiplier + Option 53 Cost 47 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_48_value + Option 53 Cost 48 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_48_multiplier + Option 53 Cost 48 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_49_value + Option 53 Cost 49 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_49_multiplier + Option 53 Cost 49 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_50_value + Option 53 Cost 50 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_50_multiplier + Option 53 Cost 50 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_51_value + Option 53 Cost 51 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_51_multiplier + Option 53 Cost 51 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_52_value + Option 53 Cost 52 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_52_multiplier + Option 53 Cost 52 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_53_value + Option 53 Cost 53 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_53_multiplier + Option 53 Cost 53 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_54_value + Option 53 Cost 54 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_54_multiplier + Option 53 Cost 54 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_55_value + Option 53 Cost 55 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_55_multiplier + Option 53 Cost 55 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_56_value + Option 53 Cost 56 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_56_multiplier + Option 53 Cost 56 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_57_value + Option 53 Cost 57 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_57_multiplier + Option 53 Cost 57 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_58_value + Option 53 Cost 58 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_58_multiplier + Option 53 Cost 58 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_59_value + Option 53 Cost 59 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_59_multiplier + Option 53 Cost 59 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_cost_60_value + Option 53 Cost 60 Value + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_53_cost_60_multiplier + Option 53 Cost 60 Multiplier + Total option 53 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_53_lifetime + Option 53 Lifetime + The option lifetime. + Double + years + false + false + + + option_54 + Option 54 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_54_apply_logic + Option 54 Apply Logic + Logic that specifies if the Option 54 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_54_cost_1_value + Option 54 Cost 1 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_1_multiplier + Option 54 Cost 1 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_2_value + Option 54 Cost 2 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_2_multiplier + Option 54 Cost 2 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_3_value + Option 54 Cost 3 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_3_multiplier + Option 54 Cost 3 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_4_value + Option 54 Cost 4 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_4_multiplier + Option 54 Cost 4 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_5_value + Option 54 Cost 5 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_5_multiplier + Option 54 Cost 5 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_6_value + Option 54 Cost 6 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_6_multiplier + Option 54 Cost 6 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_7_value + Option 54 Cost 7 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_7_multiplier + Option 54 Cost 7 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_8_value + Option 54 Cost 8 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_8_multiplier + Option 54 Cost 8 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_9_value + Option 54 Cost 9 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_9_multiplier + Option 54 Cost 9 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_10_value + Option 54 Cost 10 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_10_multiplier + Option 54 Cost 10 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_11_value + Option 54 Cost 11 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_11_multiplier + Option 54 Cost 11 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_12_value + Option 54 Cost 12 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_12_multiplier + Option 54 Cost 12 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_13_value + Option 54 Cost 13 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_13_multiplier + Option 54 Cost 13 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_14_value + Option 54 Cost 14 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_14_multiplier + Option 54 Cost 14 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_15_value + Option 54 Cost 15 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_15_multiplier + Option 54 Cost 15 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_16_value + Option 54 Cost 16 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_16_multiplier + Option 54 Cost 16 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_17_value + Option 54 Cost 17 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_17_multiplier + Option 54 Cost 17 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_18_value + Option 54 Cost 18 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_18_multiplier + Option 54 Cost 18 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_19_value + Option 54 Cost 19 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_19_multiplier + Option 54 Cost 19 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_20_value + Option 54 Cost 20 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_20_multiplier + Option 54 Cost 20 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_21_value + Option 54 Cost 21 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_21_multiplier + Option 54 Cost 21 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_22_value + Option 54 Cost 22 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_22_multiplier + Option 54 Cost 22 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_23_value + Option 54 Cost 23 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_23_multiplier + Option 54 Cost 23 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_24_value + Option 54 Cost 24 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_24_multiplier + Option 54 Cost 24 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_25_value + Option 54 Cost 25 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_25_multiplier + Option 54 Cost 25 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_26_value + Option 54 Cost 26 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_26_multiplier + Option 54 Cost 26 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_27_value + Option 54 Cost 27 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_27_multiplier + Option 54 Cost 27 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_28_value + Option 54 Cost 28 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_28_multiplier + Option 54 Cost 28 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_29_value + Option 54 Cost 29 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_29_multiplier + Option 54 Cost 29 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_30_value + Option 54 Cost 30 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_30_multiplier + Option 54 Cost 30 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_31_value + Option 54 Cost 31 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_31_multiplier + Option 54 Cost 31 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_32_value + Option 54 Cost 32 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_32_multiplier + Option 54 Cost 32 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_33_value + Option 54 Cost 33 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_33_multiplier + Option 54 Cost 33 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_34_value + Option 54 Cost 34 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_34_multiplier + Option 54 Cost 34 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_35_value + Option 54 Cost 35 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_35_multiplier + Option 54 Cost 35 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_36_value + Option 54 Cost 36 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_36_multiplier + Option 54 Cost 36 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_37_value + Option 54 Cost 37 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_37_multiplier + Option 54 Cost 37 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_38_value + Option 54 Cost 38 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_38_multiplier + Option 54 Cost 38 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_39_value + Option 54 Cost 39 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_39_multiplier + Option 54 Cost 39 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_40_value + Option 54 Cost 40 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_40_multiplier + Option 54 Cost 40 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_41_value + Option 54 Cost 41 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_41_multiplier + Option 54 Cost 41 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_42_value + Option 54 Cost 42 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_42_multiplier + Option 54 Cost 42 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_43_value + Option 54 Cost 43 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_43_multiplier + Option 54 Cost 43 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_44_value + Option 54 Cost 44 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_44_multiplier + Option 54 Cost 44 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_45_value + Option 54 Cost 45 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_45_multiplier + Option 54 Cost 45 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_46_value + Option 54 Cost 46 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_46_multiplier + Option 54 Cost 46 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_47_value + Option 54 Cost 47 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_47_multiplier + Option 54 Cost 47 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_48_value + Option 54 Cost 48 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_48_multiplier + Option 54 Cost 48 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_49_value + Option 54 Cost 49 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_49_multiplier + Option 54 Cost 49 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_50_value + Option 54 Cost 50 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_50_multiplier + Option 54 Cost 50 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_51_value + Option 54 Cost 51 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_51_multiplier + Option 54 Cost 51 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_52_value + Option 54 Cost 52 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_52_multiplier + Option 54 Cost 52 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_53_value + Option 54 Cost 53 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_53_multiplier + Option 54 Cost 53 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_54_value + Option 54 Cost 54 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_54_multiplier + Option 54 Cost 54 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_55_value + Option 54 Cost 55 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_55_multiplier + Option 54 Cost 55 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_56_value + Option 54 Cost 56 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_56_multiplier + Option 54 Cost 56 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_57_value + Option 54 Cost 57 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_57_multiplier + Option 54 Cost 57 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_58_value + Option 54 Cost 58 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_58_multiplier + Option 54 Cost 58 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_59_value + Option 54 Cost 59 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_59_multiplier + Option 54 Cost 59 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_cost_60_value + Option 54 Cost 60 Value + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_54_cost_60_multiplier + Option 54 Cost 60 Multiplier + Total option 54 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_54_lifetime + Option 54 Lifetime + The option lifetime. + Double + years + false + false + + + option_55 + Option 55 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_55_apply_logic + Option 55 Apply Logic + Logic that specifies if the Option 55 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_55_cost_1_value + Option 55 Cost 1 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_1_multiplier + Option 55 Cost 1 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_2_value + Option 55 Cost 2 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_2_multiplier + Option 55 Cost 2 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_3_value + Option 55 Cost 3 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_3_multiplier + Option 55 Cost 3 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_4_value + Option 55 Cost 4 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_4_multiplier + Option 55 Cost 4 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_5_value + Option 55 Cost 5 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_5_multiplier + Option 55 Cost 5 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_6_value + Option 55 Cost 6 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_6_multiplier + Option 55 Cost 6 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_7_value + Option 55 Cost 7 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_7_multiplier + Option 55 Cost 7 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_8_value + Option 55 Cost 8 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_8_multiplier + Option 55 Cost 8 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_9_value + Option 55 Cost 9 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_9_multiplier + Option 55 Cost 9 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_10_value + Option 55 Cost 10 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_10_multiplier + Option 55 Cost 10 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_11_value + Option 55 Cost 11 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_11_multiplier + Option 55 Cost 11 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_12_value + Option 55 Cost 12 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_12_multiplier + Option 55 Cost 12 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_13_value + Option 55 Cost 13 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_13_multiplier + Option 55 Cost 13 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_14_value + Option 55 Cost 14 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_14_multiplier + Option 55 Cost 14 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_15_value + Option 55 Cost 15 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_15_multiplier + Option 55 Cost 15 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_16_value + Option 55 Cost 16 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_16_multiplier + Option 55 Cost 16 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_17_value + Option 55 Cost 17 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_17_multiplier + Option 55 Cost 17 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_18_value + Option 55 Cost 18 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_18_multiplier + Option 55 Cost 18 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_19_value + Option 55 Cost 19 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_19_multiplier + Option 55 Cost 19 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_20_value + Option 55 Cost 20 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_20_multiplier + Option 55 Cost 20 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_21_value + Option 55 Cost 21 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_21_multiplier + Option 55 Cost 21 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_22_value + Option 55 Cost 22 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_22_multiplier + Option 55 Cost 22 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_23_value + Option 55 Cost 23 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_23_multiplier + Option 55 Cost 23 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_24_value + Option 55 Cost 24 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_24_multiplier + Option 55 Cost 24 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_25_value + Option 55 Cost 25 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_25_multiplier + Option 55 Cost 25 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_26_value + Option 55 Cost 26 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_26_multiplier + Option 55 Cost 26 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_27_value + Option 55 Cost 27 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_27_multiplier + Option 55 Cost 27 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_28_value + Option 55 Cost 28 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_28_multiplier + Option 55 Cost 28 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_29_value + Option 55 Cost 29 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_29_multiplier + Option 55 Cost 29 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_30_value + Option 55 Cost 30 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_30_multiplier + Option 55 Cost 30 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_31_value + Option 55 Cost 31 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_31_multiplier + Option 55 Cost 31 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_32_value + Option 55 Cost 32 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_32_multiplier + Option 55 Cost 32 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_33_value + Option 55 Cost 33 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_33_multiplier + Option 55 Cost 33 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_34_value + Option 55 Cost 34 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_34_multiplier + Option 55 Cost 34 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_35_value + Option 55 Cost 35 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_35_multiplier + Option 55 Cost 35 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_36_value + Option 55 Cost 36 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_36_multiplier + Option 55 Cost 36 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_37_value + Option 55 Cost 37 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_37_multiplier + Option 55 Cost 37 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_38_value + Option 55 Cost 38 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_38_multiplier + Option 55 Cost 38 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_39_value + Option 55 Cost 39 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_39_multiplier + Option 55 Cost 39 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_40_value + Option 55 Cost 40 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_40_multiplier + Option 55 Cost 40 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_41_value + Option 55 Cost 41 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_41_multiplier + Option 55 Cost 41 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_42_value + Option 55 Cost 42 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_42_multiplier + Option 55 Cost 42 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_43_value + Option 55 Cost 43 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_43_multiplier + Option 55 Cost 43 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_44_value + Option 55 Cost 44 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_44_multiplier + Option 55 Cost 44 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_45_value + Option 55 Cost 45 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_45_multiplier + Option 55 Cost 45 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_46_value + Option 55 Cost 46 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_46_multiplier + Option 55 Cost 46 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_47_value + Option 55 Cost 47 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_47_multiplier + Option 55 Cost 47 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_48_value + Option 55 Cost 48 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_48_multiplier + Option 55 Cost 48 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_49_value + Option 55 Cost 49 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_49_multiplier + Option 55 Cost 49 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_50_value + Option 55 Cost 50 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_50_multiplier + Option 55 Cost 50 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_51_value + Option 55 Cost 51 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_51_multiplier + Option 55 Cost 51 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_52_value + Option 55 Cost 52 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_52_multiplier + Option 55 Cost 52 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_53_value + Option 55 Cost 53 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_53_multiplier + Option 55 Cost 53 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_54_value + Option 55 Cost 54 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_54_multiplier + Option 55 Cost 54 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_55_value + Option 55 Cost 55 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_55_multiplier + Option 55 Cost 55 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_56_value + Option 55 Cost 56 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_56_multiplier + Option 55 Cost 56 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_57_value + Option 55 Cost 57 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_57_multiplier + Option 55 Cost 57 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_58_value + Option 55 Cost 58 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_58_multiplier + Option 55 Cost 58 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_59_value + Option 55 Cost 59 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_59_multiplier + Option 55 Cost 59 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_cost_60_value + Option 55 Cost 60 Value + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_55_cost_60_multiplier + Option 55 Cost 60 Multiplier + Total option 55 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_55_lifetime + Option 55 Lifetime + The option lifetime. + Double + years + false + false + + + option_56 + Option 56 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_56_apply_logic + Option 56 Apply Logic + Logic that specifies if the Option 56 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_56_cost_1_value + Option 56 Cost 1 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_1_multiplier + Option 56 Cost 1 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_2_value + Option 56 Cost 2 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_2_multiplier + Option 56 Cost 2 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_3_value + Option 56 Cost 3 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_3_multiplier + Option 56 Cost 3 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_4_value + Option 56 Cost 4 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_4_multiplier + Option 56 Cost 4 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_5_value + Option 56 Cost 5 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_5_multiplier + Option 56 Cost 5 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_6_value + Option 56 Cost 6 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_6_multiplier + Option 56 Cost 6 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_7_value + Option 56 Cost 7 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_7_multiplier + Option 56 Cost 7 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_8_value + Option 56 Cost 8 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_8_multiplier + Option 56 Cost 8 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_9_value + Option 56 Cost 9 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_9_multiplier + Option 56 Cost 9 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_10_value + Option 56 Cost 10 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_10_multiplier + Option 56 Cost 10 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_11_value + Option 56 Cost 11 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_11_multiplier + Option 56 Cost 11 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_12_value + Option 56 Cost 12 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_12_multiplier + Option 56 Cost 12 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_13_value + Option 56 Cost 13 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_13_multiplier + Option 56 Cost 13 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_14_value + Option 56 Cost 14 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_14_multiplier + Option 56 Cost 14 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_15_value + Option 56 Cost 15 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_15_multiplier + Option 56 Cost 15 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_16_value + Option 56 Cost 16 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_16_multiplier + Option 56 Cost 16 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_17_value + Option 56 Cost 17 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_17_multiplier + Option 56 Cost 17 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_18_value + Option 56 Cost 18 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_18_multiplier + Option 56 Cost 18 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_19_value + Option 56 Cost 19 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_19_multiplier + Option 56 Cost 19 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_20_value + Option 56 Cost 20 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_20_multiplier + Option 56 Cost 20 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_21_value + Option 56 Cost 21 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_21_multiplier + Option 56 Cost 21 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_22_value + Option 56 Cost 22 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_22_multiplier + Option 56 Cost 22 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_23_value + Option 56 Cost 23 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_23_multiplier + Option 56 Cost 23 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_24_value + Option 56 Cost 24 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_24_multiplier + Option 56 Cost 24 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_25_value + Option 56 Cost 25 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_25_multiplier + Option 56 Cost 25 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_26_value + Option 56 Cost 26 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_26_multiplier + Option 56 Cost 26 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_27_value + Option 56 Cost 27 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_27_multiplier + Option 56 Cost 27 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_28_value + Option 56 Cost 28 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_28_multiplier + Option 56 Cost 28 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_29_value + Option 56 Cost 29 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_29_multiplier + Option 56 Cost 29 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_30_value + Option 56 Cost 30 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_30_multiplier + Option 56 Cost 30 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_31_value + Option 56 Cost 31 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_31_multiplier + Option 56 Cost 31 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_32_value + Option 56 Cost 32 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_32_multiplier + Option 56 Cost 32 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_33_value + Option 56 Cost 33 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_33_multiplier + Option 56 Cost 33 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_34_value + Option 56 Cost 34 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_34_multiplier + Option 56 Cost 34 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_35_value + Option 56 Cost 35 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_35_multiplier + Option 56 Cost 35 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_36_value + Option 56 Cost 36 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_36_multiplier + Option 56 Cost 36 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_37_value + Option 56 Cost 37 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_37_multiplier + Option 56 Cost 37 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_38_value + Option 56 Cost 38 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_38_multiplier + Option 56 Cost 38 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_39_value + Option 56 Cost 39 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_39_multiplier + Option 56 Cost 39 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_40_value + Option 56 Cost 40 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_40_multiplier + Option 56 Cost 40 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_41_value + Option 56 Cost 41 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_41_multiplier + Option 56 Cost 41 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_42_value + Option 56 Cost 42 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_42_multiplier + Option 56 Cost 42 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_43_value + Option 56 Cost 43 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_43_multiplier + Option 56 Cost 43 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_44_value + Option 56 Cost 44 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_44_multiplier + Option 56 Cost 44 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_45_value + Option 56 Cost 45 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_45_multiplier + Option 56 Cost 45 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_46_value + Option 56 Cost 46 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_46_multiplier + Option 56 Cost 46 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_47_value + Option 56 Cost 47 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_47_multiplier + Option 56 Cost 47 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_48_value + Option 56 Cost 48 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_48_multiplier + Option 56 Cost 48 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_49_value + Option 56 Cost 49 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_49_multiplier + Option 56 Cost 49 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_50_value + Option 56 Cost 50 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_50_multiplier + Option 56 Cost 50 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_51_value + Option 56 Cost 51 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_51_multiplier + Option 56 Cost 51 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_52_value + Option 56 Cost 52 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_52_multiplier + Option 56 Cost 52 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_53_value + Option 56 Cost 53 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_53_multiplier + Option 56 Cost 53 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_54_value + Option 56 Cost 54 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_54_multiplier + Option 56 Cost 54 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_55_value + Option 56 Cost 55 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_55_multiplier + Option 56 Cost 55 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_56_value + Option 56 Cost 56 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_56_multiplier + Option 56 Cost 56 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_57_value + Option 56 Cost 57 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_57_multiplier + Option 56 Cost 57 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_58_value + Option 56 Cost 58 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_58_multiplier + Option 56 Cost 58 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_59_value + Option 56 Cost 59 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_59_multiplier + Option 56 Cost 59 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_cost_60_value + Option 56 Cost 60 Value + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_56_cost_60_multiplier + Option 56 Cost 60 Multiplier + Total option 56 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_56_lifetime + Option 56 Lifetime + The option lifetime. + Double + years + false + false + + + option_57 + Option 57 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_57_apply_logic + Option 57 Apply Logic + Logic that specifies if the Option 57 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_57_cost_1_value + Option 57 Cost 1 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_1_multiplier + Option 57 Cost 1 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_2_value + Option 57 Cost 2 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_2_multiplier + Option 57 Cost 2 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_3_value + Option 57 Cost 3 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_3_multiplier + Option 57 Cost 3 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_4_value + Option 57 Cost 4 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_4_multiplier + Option 57 Cost 4 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_5_value + Option 57 Cost 5 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_5_multiplier + Option 57 Cost 5 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_6_value + Option 57 Cost 6 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_6_multiplier + Option 57 Cost 6 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_7_value + Option 57 Cost 7 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_7_multiplier + Option 57 Cost 7 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_8_value + Option 57 Cost 8 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_8_multiplier + Option 57 Cost 8 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_9_value + Option 57 Cost 9 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_9_multiplier + Option 57 Cost 9 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_10_value + Option 57 Cost 10 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_10_multiplier + Option 57 Cost 10 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_11_value + Option 57 Cost 11 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_11_multiplier + Option 57 Cost 11 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_12_value + Option 57 Cost 12 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_12_multiplier + Option 57 Cost 12 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_13_value + Option 57 Cost 13 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_13_multiplier + Option 57 Cost 13 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_14_value + Option 57 Cost 14 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_14_multiplier + Option 57 Cost 14 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_15_value + Option 57 Cost 15 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_15_multiplier + Option 57 Cost 15 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_16_value + Option 57 Cost 16 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_16_multiplier + Option 57 Cost 16 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_17_value + Option 57 Cost 17 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_17_multiplier + Option 57 Cost 17 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_18_value + Option 57 Cost 18 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_18_multiplier + Option 57 Cost 18 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_19_value + Option 57 Cost 19 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_19_multiplier + Option 57 Cost 19 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_20_value + Option 57 Cost 20 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_20_multiplier + Option 57 Cost 20 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_21_value + Option 57 Cost 21 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_21_multiplier + Option 57 Cost 21 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_22_value + Option 57 Cost 22 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_22_multiplier + Option 57 Cost 22 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_23_value + Option 57 Cost 23 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_23_multiplier + Option 57 Cost 23 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_24_value + Option 57 Cost 24 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_24_multiplier + Option 57 Cost 24 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_25_value + Option 57 Cost 25 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_25_multiplier + Option 57 Cost 25 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_26_value + Option 57 Cost 26 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_26_multiplier + Option 57 Cost 26 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_27_value + Option 57 Cost 27 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_27_multiplier + Option 57 Cost 27 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_28_value + Option 57 Cost 28 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_28_multiplier + Option 57 Cost 28 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_29_value + Option 57 Cost 29 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_29_multiplier + Option 57 Cost 29 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_30_value + Option 57 Cost 30 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_30_multiplier + Option 57 Cost 30 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_31_value + Option 57 Cost 31 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_31_multiplier + Option 57 Cost 31 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_32_value + Option 57 Cost 32 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_32_multiplier + Option 57 Cost 32 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_33_value + Option 57 Cost 33 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_33_multiplier + Option 57 Cost 33 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_34_value + Option 57 Cost 34 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_34_multiplier + Option 57 Cost 34 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_35_value + Option 57 Cost 35 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_35_multiplier + Option 57 Cost 35 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_36_value + Option 57 Cost 36 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_36_multiplier + Option 57 Cost 36 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_37_value + Option 57 Cost 37 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_37_multiplier + Option 57 Cost 37 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_38_value + Option 57 Cost 38 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_38_multiplier + Option 57 Cost 38 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_39_value + Option 57 Cost 39 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_39_multiplier + Option 57 Cost 39 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_40_value + Option 57 Cost 40 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_40_multiplier + Option 57 Cost 40 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_41_value + Option 57 Cost 41 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_41_multiplier + Option 57 Cost 41 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_42_value + Option 57 Cost 42 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_42_multiplier + Option 57 Cost 42 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_43_value + Option 57 Cost 43 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_43_multiplier + Option 57 Cost 43 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_44_value + Option 57 Cost 44 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_44_multiplier + Option 57 Cost 44 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_45_value + Option 57 Cost 45 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_45_multiplier + Option 57 Cost 45 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_46_value + Option 57 Cost 46 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_46_multiplier + Option 57 Cost 46 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_47_value + Option 57 Cost 47 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_47_multiplier + Option 57 Cost 47 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_48_value + Option 57 Cost 48 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_48_multiplier + Option 57 Cost 48 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_49_value + Option 57 Cost 49 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_49_multiplier + Option 57 Cost 49 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_50_value + Option 57 Cost 50 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_50_multiplier + Option 57 Cost 50 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_51_value + Option 57 Cost 51 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_51_multiplier + Option 57 Cost 51 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_52_value + Option 57 Cost 52 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_52_multiplier + Option 57 Cost 52 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_53_value + Option 57 Cost 53 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_53_multiplier + Option 57 Cost 53 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_54_value + Option 57 Cost 54 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_54_multiplier + Option 57 Cost 54 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_55_value + Option 57 Cost 55 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_55_multiplier + Option 57 Cost 55 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_56_value + Option 57 Cost 56 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_56_multiplier + Option 57 Cost 56 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_57_value + Option 57 Cost 57 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_57_multiplier + Option 57 Cost 57 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_58_value + Option 57 Cost 58 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_58_multiplier + Option 57 Cost 58 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_59_value + Option 57 Cost 59 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_59_multiplier + Option 57 Cost 59 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_cost_60_value + Option 57 Cost 60 Value + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_57_cost_60_multiplier + Option 57 Cost 60 Multiplier + Total option 57 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_57_lifetime + Option 57 Lifetime + The option lifetime. + Double + years + false + false + + + option_58 + Option 58 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_58_apply_logic + Option 58 Apply Logic + Logic that specifies if the Option 58 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_58_cost_1_value + Option 58 Cost 1 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_1_multiplier + Option 58 Cost 1 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_2_value + Option 58 Cost 2 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_2_multiplier + Option 58 Cost 2 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_3_value + Option 58 Cost 3 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_3_multiplier + Option 58 Cost 3 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_4_value + Option 58 Cost 4 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_4_multiplier + Option 58 Cost 4 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_5_value + Option 58 Cost 5 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_5_multiplier + Option 58 Cost 5 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_6_value + Option 58 Cost 6 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_6_multiplier + Option 58 Cost 6 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_7_value + Option 58 Cost 7 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_7_multiplier + Option 58 Cost 7 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_8_value + Option 58 Cost 8 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_8_multiplier + Option 58 Cost 8 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_9_value + Option 58 Cost 9 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_9_multiplier + Option 58 Cost 9 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_10_value + Option 58 Cost 10 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_10_multiplier + Option 58 Cost 10 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_11_value + Option 58 Cost 11 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_11_multiplier + Option 58 Cost 11 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_12_value + Option 58 Cost 12 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_12_multiplier + Option 58 Cost 12 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_13_value + Option 58 Cost 13 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_13_multiplier + Option 58 Cost 13 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_14_value + Option 58 Cost 14 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_14_multiplier + Option 58 Cost 14 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_15_value + Option 58 Cost 15 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_15_multiplier + Option 58 Cost 15 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_16_value + Option 58 Cost 16 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_16_multiplier + Option 58 Cost 16 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_17_value + Option 58 Cost 17 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_17_multiplier + Option 58 Cost 17 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_18_value + Option 58 Cost 18 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_18_multiplier + Option 58 Cost 18 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_19_value + Option 58 Cost 19 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_19_multiplier + Option 58 Cost 19 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_20_value + Option 58 Cost 20 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_20_multiplier + Option 58 Cost 20 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_21_value + Option 58 Cost 21 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_21_multiplier + Option 58 Cost 21 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_22_value + Option 58 Cost 22 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_22_multiplier + Option 58 Cost 22 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_23_value + Option 58 Cost 23 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_23_multiplier + Option 58 Cost 23 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_24_value + Option 58 Cost 24 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_24_multiplier + Option 58 Cost 24 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_25_value + Option 58 Cost 25 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_25_multiplier + Option 58 Cost 25 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_26_value + Option 58 Cost 26 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_26_multiplier + Option 58 Cost 26 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_27_value + Option 58 Cost 27 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_27_multiplier + Option 58 Cost 27 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_28_value + Option 58 Cost 28 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_28_multiplier + Option 58 Cost 28 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_29_value + Option 58 Cost 29 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_29_multiplier + Option 58 Cost 29 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_30_value + Option 58 Cost 30 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_30_multiplier + Option 58 Cost 30 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_31_value + Option 58 Cost 31 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_31_multiplier + Option 58 Cost 31 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_32_value + Option 58 Cost 32 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_32_multiplier + Option 58 Cost 32 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_33_value + Option 58 Cost 33 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_33_multiplier + Option 58 Cost 33 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_34_value + Option 58 Cost 34 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_34_multiplier + Option 58 Cost 34 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_35_value + Option 58 Cost 35 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_35_multiplier + Option 58 Cost 35 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_36_value + Option 58 Cost 36 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_36_multiplier + Option 58 Cost 36 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_37_value + Option 58 Cost 37 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_37_multiplier + Option 58 Cost 37 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_38_value + Option 58 Cost 38 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_38_multiplier + Option 58 Cost 38 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_39_value + Option 58 Cost 39 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_39_multiplier + Option 58 Cost 39 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_40_value + Option 58 Cost 40 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_40_multiplier + Option 58 Cost 40 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_41_value + Option 58 Cost 41 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_41_multiplier + Option 58 Cost 41 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_42_value + Option 58 Cost 42 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_42_multiplier + Option 58 Cost 42 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_43_value + Option 58 Cost 43 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_43_multiplier + Option 58 Cost 43 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_44_value + Option 58 Cost 44 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_44_multiplier + Option 58 Cost 44 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_45_value + Option 58 Cost 45 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_45_multiplier + Option 58 Cost 45 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_46_value + Option 58 Cost 46 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_46_multiplier + Option 58 Cost 46 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_47_value + Option 58 Cost 47 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_47_multiplier + Option 58 Cost 47 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_48_value + Option 58 Cost 48 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_48_multiplier + Option 58 Cost 48 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_49_value + Option 58 Cost 49 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_49_multiplier + Option 58 Cost 49 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_50_value + Option 58 Cost 50 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_50_multiplier + Option 58 Cost 50 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_51_value + Option 58 Cost 51 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_51_multiplier + Option 58 Cost 51 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_52_value + Option 58 Cost 52 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_52_multiplier + Option 58 Cost 52 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_53_value + Option 58 Cost 53 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_53_multiplier + Option 58 Cost 53 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_54_value + Option 58 Cost 54 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_54_multiplier + Option 58 Cost 54 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_55_value + Option 58 Cost 55 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_55_multiplier + Option 58 Cost 55 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_56_value + Option 58 Cost 56 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_56_multiplier + Option 58 Cost 56 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_57_value + Option 58 Cost 57 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_57_multiplier + Option 58 Cost 57 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_58_value + Option 58 Cost 58 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_58_multiplier + Option 58 Cost 58 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_59_value + Option 58 Cost 59 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_59_multiplier + Option 58 Cost 59 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_cost_60_value + Option 58 Cost 60 Value + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_58_cost_60_multiplier + Option 58 Cost 60 Multiplier + Total option 58 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_58_lifetime + Option 58 Lifetime + The option lifetime. + Double + years + false + false + + + option_59 + Option 59 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_59_apply_logic + Option 59 Apply Logic + Logic that specifies if the Option 59 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_59_cost_1_value + Option 59 Cost 1 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_1_multiplier + Option 59 Cost 1 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_2_value + Option 59 Cost 2 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_2_multiplier + Option 59 Cost 2 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_3_value + Option 59 Cost 3 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_3_multiplier + Option 59 Cost 3 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_4_value + Option 59 Cost 4 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_4_multiplier + Option 59 Cost 4 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_5_value + Option 59 Cost 5 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_5_multiplier + Option 59 Cost 5 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_6_value + Option 59 Cost 6 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_6_multiplier + Option 59 Cost 6 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_7_value + Option 59 Cost 7 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_7_multiplier + Option 59 Cost 7 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_8_value + Option 59 Cost 8 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_8_multiplier + Option 59 Cost 8 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_9_value + Option 59 Cost 9 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_9_multiplier + Option 59 Cost 9 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_10_value + Option 59 Cost 10 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_10_multiplier + Option 59 Cost 10 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_11_value + Option 59 Cost 11 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_11_multiplier + Option 59 Cost 11 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_12_value + Option 59 Cost 12 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_12_multiplier + Option 59 Cost 12 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_13_value + Option 59 Cost 13 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_13_multiplier + Option 59 Cost 13 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_14_value + Option 59 Cost 14 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_14_multiplier + Option 59 Cost 14 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_15_value + Option 59 Cost 15 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_15_multiplier + Option 59 Cost 15 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_16_value + Option 59 Cost 16 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_16_multiplier + Option 59 Cost 16 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_17_value + Option 59 Cost 17 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_17_multiplier + Option 59 Cost 17 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_18_value + Option 59 Cost 18 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_18_multiplier + Option 59 Cost 18 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_19_value + Option 59 Cost 19 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_19_multiplier + Option 59 Cost 19 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_20_value + Option 59 Cost 20 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_20_multiplier + Option 59 Cost 20 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_21_value + Option 59 Cost 21 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_21_multiplier + Option 59 Cost 21 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_22_value + Option 59 Cost 22 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_22_multiplier + Option 59 Cost 22 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_23_value + Option 59 Cost 23 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_23_multiplier + Option 59 Cost 23 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_24_value + Option 59 Cost 24 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_24_multiplier + Option 59 Cost 24 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_25_value + Option 59 Cost 25 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_25_multiplier + Option 59 Cost 25 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_26_value + Option 59 Cost 26 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_26_multiplier + Option 59 Cost 26 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_27_value + Option 59 Cost 27 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_27_multiplier + Option 59 Cost 27 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_28_value + Option 59 Cost 28 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_28_multiplier + Option 59 Cost 28 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_29_value + Option 59 Cost 29 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_29_multiplier + Option 59 Cost 29 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_30_value + Option 59 Cost 30 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_30_multiplier + Option 59 Cost 30 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_31_value + Option 59 Cost 31 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_31_multiplier + Option 59 Cost 31 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_32_value + Option 59 Cost 32 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_32_multiplier + Option 59 Cost 32 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_33_value + Option 59 Cost 33 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_33_multiplier + Option 59 Cost 33 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_34_value + Option 59 Cost 34 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_34_multiplier + Option 59 Cost 34 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_35_value + Option 59 Cost 35 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_35_multiplier + Option 59 Cost 35 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_36_value + Option 59 Cost 36 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_36_multiplier + Option 59 Cost 36 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_37_value + Option 59 Cost 37 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_37_multiplier + Option 59 Cost 37 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_38_value + Option 59 Cost 38 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_38_multiplier + Option 59 Cost 38 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_39_value + Option 59 Cost 39 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_39_multiplier + Option 59 Cost 39 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_40_value + Option 59 Cost 40 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_40_multiplier + Option 59 Cost 40 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_41_value + Option 59 Cost 41 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_41_multiplier + Option 59 Cost 41 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_42_value + Option 59 Cost 42 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_42_multiplier + Option 59 Cost 42 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_43_value + Option 59 Cost 43 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_43_multiplier + Option 59 Cost 43 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_44_value + Option 59 Cost 44 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_44_multiplier + Option 59 Cost 44 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_45_value + Option 59 Cost 45 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_45_multiplier + Option 59 Cost 45 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_46_value + Option 59 Cost 46 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_46_multiplier + Option 59 Cost 46 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_47_value + Option 59 Cost 47 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_47_multiplier + Option 59 Cost 47 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_48_value + Option 59 Cost 48 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_48_multiplier + Option 59 Cost 48 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_49_value + Option 59 Cost 49 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_49_multiplier + Option 59 Cost 49 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_50_value + Option 59 Cost 50 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_50_multiplier + Option 59 Cost 50 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_51_value + Option 59 Cost 51 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_51_multiplier + Option 59 Cost 51 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_52_value + Option 59 Cost 52 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_52_multiplier + Option 59 Cost 52 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_53_value + Option 59 Cost 53 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_53_multiplier + Option 59 Cost 53 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_54_value + Option 59 Cost 54 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_54_multiplier + Option 59 Cost 54 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_55_value + Option 59 Cost 55 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_55_multiplier + Option 59 Cost 55 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_56_value + Option 59 Cost 56 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_56_multiplier + Option 59 Cost 56 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_57_value + Option 59 Cost 57 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_57_multiplier + Option 59 Cost 57 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_58_value + Option 59 Cost 58 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_58_multiplier + Option 59 Cost 58 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_59_value + Option 59 Cost 59 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_59_multiplier + Option 59 Cost 59 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_cost_60_value + Option 59 Cost 60 Value + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_59_cost_60_multiplier + Option 59 Cost 60 Multiplier + Total option 59 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_59_lifetime + Option 59 Lifetime + The option lifetime. + Double + years + false + false + + + option_60 + Option 60 + Specify the parameter|option as found in resources\options_lookup.tsv. + String + false + false + + + option_60_apply_logic + Option 60 Apply Logic + Logic that specifies if the Option 60 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. + String + false + false + + + option_60_cost_1_value + Option 60 Cost 1 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_1_multiplier + Option 60 Cost 1 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_2_value + Option 60 Cost 2 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ false false - option_2 - Option 2 - Specify the parameter|option as found in resources\options_lookup.tsv. - String + option_60_cost_2_multiplier + Option 60 Cost 2 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice false false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + - option_2_apply_logic - Option 2 Apply Logic - Logic that specifies if the Option 2 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String + option_60_cost_3_value + Option 60 Cost 3 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ false false - option_2_cost_1_value - Option 2 Cost 1 Value - Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_3_multiplier + Option 60 Cost 3 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_4_value + Option 60 Cost 4 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_2_cost_1_multiplier - Option 2 Cost 1 Multiplier - Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_4_multiplier + Option 60 Cost 4 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_5_value + Option 60 Cost 5 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_5_multiplier + Option 60 Cost 5 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_6_value + Option 60 Cost 6 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_6_multiplier + Option 60 Cost 6 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_7_value + Option 60 Cost 7 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_7_multiplier + Option 60 Cost 7 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_8_value + Option 60 Cost 8 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_8_multiplier + Option 60 Cost 8 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_9_value + Option 60 Cost 9 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_9_multiplier + Option 60 Cost 9 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_10_value + Option 60 Cost 10 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_10_multiplier + Option 60 Cost 10 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice + false + false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + + + + option_60_cost_11_value + Option 60 Cost 11 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Double + $ + false + false + + + option_60_cost_11_multiplier + Option 60 Cost 11 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -398,18 +399224,18 @@ - option_2_cost_2_value - Option 2 Cost 2 Value - Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_12_value + Option 60 Cost 12 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_2_cost_2_multiplier - Option 2 Cost 2 Multiplier - Total option 2 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_12_multiplier + Option 60 Cost 12 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -510,43 +399336,18 @@ - option_2_lifetime - Option 2 Lifetime - The option lifetime. - Double - years - false - false - - - option_3 - Option 3 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_3_apply_logic - Option 3 Apply Logic - Logic that specifies if the Option 3 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_3_cost_1_value - Option 3 Cost 1 Value - Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_13_value + Option 60 Cost 13 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_3_cost_1_multiplier - Option 3 Cost 1 Multiplier - Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_13_multiplier + Option 60 Cost 13 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -647,18 +399448,18 @@ - option_3_cost_2_value - Option 3 Cost 2 Value - Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_14_value + Option 60 Cost 14 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_3_cost_2_multiplier - Option 3 Cost 2 Multiplier - Total option 3 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_14_multiplier + Option 60 Cost 14 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -759,43 +399560,18 @@ - option_3_lifetime - Option 3 Lifetime - The option lifetime. - Double - years - false - false - - - option_4 - Option 4 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_4_apply_logic - Option 4 Apply Logic - Logic that specifies if the Option 4 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_4_cost_1_value - Option 4 Cost 1 Value - Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_15_value + Option 60 Cost 15 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_4_cost_1_multiplier - Option 4 Cost 1 Multiplier - Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_15_multiplier + Option 60 Cost 15 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -896,18 +399672,18 @@ - option_4_cost_2_value - Option 4 Cost 2 Value - Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_16_value + Option 60 Cost 16 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_4_cost_2_multiplier - Option 4 Cost 2 Multiplier - Total option 4 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_16_multiplier + Option 60 Cost 16 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1008,43 +399784,18 @@ - option_4_lifetime - Option 4 Lifetime - The option lifetime. - Double - years - false - false - - - option_5 - Option 5 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_5_apply_logic - Option 5 Apply Logic - Logic that specifies if the Option 5 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_5_cost_1_value - Option 5 Cost 1 Value - Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_17_value + Option 60 Cost 17 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_5_cost_1_multiplier - Option 5 Cost 1 Multiplier - Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_17_multiplier + Option 60 Cost 17 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1145,18 +399896,18 @@ - option_5_cost_2_value - Option 5 Cost 2 Value - Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_18_value + Option 60 Cost 18 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_5_cost_2_multiplier - Option 5 Cost 2 Multiplier - Total option 5 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_18_multiplier + Option 60 Cost 18 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1257,43 +400008,18 @@ - option_5_lifetime - Option 5 Lifetime - The option lifetime. - Double - years - false - false - - - option_6 - Option 6 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_6_apply_logic - Option 6 Apply Logic - Logic that specifies if the Option 6 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_6_cost_1_value - Option 6 Cost 1 Value - Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_19_value + Option 60 Cost 19 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_6_cost_1_multiplier - Option 6 Cost 1 Multiplier - Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_19_multiplier + Option 60 Cost 19 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1394,18 +400120,18 @@ - option_6_cost_2_value - Option 6 Cost 2 Value - Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_20_value + Option 60 Cost 20 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_6_cost_2_multiplier - Option 6 Cost 2 Multiplier - Total option 6 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_20_multiplier + Option 60 Cost 20 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1506,43 +400232,18 @@ - option_6_lifetime - Option 6 Lifetime - The option lifetime. - Double - years - false - false - - - option_7 - Option 7 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_7_apply_logic - Option 7 Apply Logic - Logic that specifies if the Option 7 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_7_cost_1_value - Option 7 Cost 1 Value - Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_21_value + Option 60 Cost 21 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_7_cost_1_multiplier - Option 7 Cost 1 Multiplier - Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_21_multiplier + Option 60 Cost 21 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1643,18 +400344,18 @@ - option_7_cost_2_value - Option 7 Cost 2 Value - Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_22_value + Option 60 Cost 22 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_7_cost_2_multiplier - Option 7 Cost 2 Multiplier - Total option 7 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_22_multiplier + Option 60 Cost 22 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1755,43 +400456,18 @@ - option_7_lifetime - Option 7 Lifetime - The option lifetime. - Double - years - false - false - - - option_8 - Option 8 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_8_apply_logic - Option 8 Apply Logic - Logic that specifies if the Option 8 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_8_cost_1_value - Option 8 Cost 1 Value - Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_23_value + Option 60 Cost 23 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_8_cost_1_multiplier - Option 8 Cost 1 Multiplier - Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_23_multiplier + Option 60 Cost 23 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -1892,18 +400568,18 @@ - option_8_cost_2_value - Option 8 Cost 2 Value - Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_24_value + Option 60 Cost 24 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_8_cost_2_multiplier - Option 8 Cost 2 Multiplier - Total option 8 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_24_multiplier + Option 60 Cost 24 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2004,43 +400680,18 @@ - option_8_lifetime - Option 8 Lifetime - The option lifetime. - Double - years - false - false - - - option_9 - Option 9 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_9_apply_logic - Option 9 Apply Logic - Logic that specifies if the Option 9 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_9_cost_1_value - Option 9 Cost 1 Value - Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_25_value + Option 60 Cost 25 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_9_cost_1_multiplier - Option 9 Cost 1 Multiplier - Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_25_multiplier + Option 60 Cost 25 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2141,18 +400792,18 @@ - option_9_cost_2_value - Option 9 Cost 2 Value - Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_26_value + Option 60 Cost 26 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_9_cost_2_multiplier - Option 9 Cost 2 Multiplier - Total option 9 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_26_multiplier + Option 60 Cost 26 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2253,43 +400904,18 @@ - option_9_lifetime - Option 9 Lifetime - The option lifetime. - Double - years - false - false - - - option_10 - Option 10 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_10_apply_logic - Option 10 Apply Logic - Logic that specifies if the Option 10 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_10_cost_1_value - Option 10 Cost 1 Value - Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_27_value + Option 60 Cost 27 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_10_cost_1_multiplier - Option 10 Cost 1 Multiplier - Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_27_multiplier + Option 60 Cost 27 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2390,18 +401016,18 @@ - option_10_cost_2_value - Option 10 Cost 2 Value - Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_28_value + Option 60 Cost 28 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_10_cost_2_multiplier - Option 10 Cost 2 Multiplier - Total option 10 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_28_multiplier + Option 60 Cost 28 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2502,43 +401128,18 @@ - option_10_lifetime - Option 10 Lifetime - The option lifetime. - Double - years - false - false - - - option_11 - Option 11 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_11_apply_logic - Option 11 Apply Logic - Logic that specifies if the Option 11 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_11_cost_1_value - Option 11 Cost 1 Value - Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_29_value + Option 60 Cost 29 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_11_cost_1_multiplier - Option 11 Cost 1 Multiplier - Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_29_multiplier + Option 60 Cost 29 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2639,18 +401240,18 @@ - option_11_cost_2_value - Option 11 Cost 2 Value - Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_30_value + Option 60 Cost 30 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_11_cost_2_multiplier - Option 11 Cost 2 Multiplier - Total option 11 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_30_multiplier + Option 60 Cost 30 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2751,43 +401352,18 @@ - option_11_lifetime - Option 11 Lifetime - The option lifetime. - Double - years - false - false - - - option_12 - Option 12 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_12_apply_logic - Option 12 Apply Logic - Logic that specifies if the Option 12 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_12_cost_1_value - Option 12 Cost 1 Value - Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_31_value + Option 60 Cost 31 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_12_cost_1_multiplier - Option 12 Cost 1 Multiplier - Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_31_multiplier + Option 60 Cost 31 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -2888,18 +401464,18 @@ - option_12_cost_2_value - Option 12 Cost 2 Value - Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_32_value + Option 60 Cost 32 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_12_cost_2_multiplier - Option 12 Cost 2 Multiplier - Total option 12 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_32_multiplier + Option 60 Cost 32 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3000,43 +401576,18 @@ - option_12_lifetime - Option 12 Lifetime - The option lifetime. - Double - years - false - false - - - option_13 - Option 13 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_13_apply_logic - Option 13 Apply Logic - Logic that specifies if the Option 13 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_13_cost_1_value - Option 13 Cost 1 Value - Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_33_value + Option 60 Cost 33 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_13_cost_1_multiplier - Option 13 Cost 1 Multiplier - Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_33_multiplier + Option 60 Cost 33 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3137,18 +401688,18 @@ - option_13_cost_2_value - Option 13 Cost 2 Value - Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_34_value + Option 60 Cost 34 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_13_cost_2_multiplier - Option 13 Cost 2 Multiplier - Total option 13 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_34_multiplier + Option 60 Cost 34 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3249,43 +401800,18 @@ - option_13_lifetime - Option 13 Lifetime - The option lifetime. - Double - years - false - false - - - option_14 - Option 14 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_14_apply_logic - Option 14 Apply Logic - Logic that specifies if the Option 14 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_14_cost_1_value - Option 14 Cost 1 Value - Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_35_value + Option 60 Cost 35 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_14_cost_1_multiplier - Option 14 Cost 1 Multiplier - Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_35_multiplier + Option 60 Cost 35 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3386,18 +401912,18 @@ - option_14_cost_2_value - Option 14 Cost 2 Value - Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_36_value + Option 60 Cost 36 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_14_cost_2_multiplier - Option 14 Cost 2 Multiplier - Total option 14 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_36_multiplier + Option 60 Cost 36 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3498,43 +402024,18 @@ - option_14_lifetime - Option 14 Lifetime - The option lifetime. - Double - years - false - false - - - option_15 - Option 15 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_15_apply_logic - Option 15 Apply Logic - Logic that specifies if the Option 15 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_15_cost_1_value - Option 15 Cost 1 Value - Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_37_value + Option 60 Cost 37 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_15_cost_1_multiplier - Option 15 Cost 1 Multiplier - Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_37_multiplier + Option 60 Cost 37 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3635,18 +402136,18 @@ - option_15_cost_2_value - Option 15 Cost 2 Value - Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_38_value + Option 60 Cost 38 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_15_cost_2_multiplier - Option 15 Cost 2 Multiplier - Total option 15 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_38_multiplier + Option 60 Cost 38 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3747,43 +402248,18 @@ - option_15_lifetime - Option 15 Lifetime - The option lifetime. - Double - years - false - false - - - option_16 - Option 16 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_16_apply_logic - Option 16 Apply Logic - Logic that specifies if the Option 16 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_16_cost_1_value - Option 16 Cost 1 Value - Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_39_value + Option 60 Cost 39 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_16_cost_1_multiplier - Option 16 Cost 1 Multiplier - Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_39_multiplier + Option 60 Cost 39 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3884,18 +402360,18 @@ - option_16_cost_2_value - Option 16 Cost 2 Value - Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_40_value + Option 60 Cost 40 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_16_cost_2_multiplier - Option 16 Cost 2 Multiplier - Total option 16 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_40_multiplier + Option 60 Cost 40 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -3996,43 +402472,18 @@ - option_16_lifetime - Option 16 Lifetime - The option lifetime. - Double - years - false - false - - - option_17 - Option 17 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_17_apply_logic - Option 17 Apply Logic - Logic that specifies if the Option 17 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_17_cost_1_value - Option 17 Cost 1 Value - Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_41_value + Option 60 Cost 41 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_17_cost_1_multiplier - Option 17 Cost 1 Multiplier - Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_41_multiplier + Option 60 Cost 41 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4133,18 +402584,18 @@ - option_17_cost_2_value - Option 17 Cost 2 Value - Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_42_value + Option 60 Cost 42 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_17_cost_2_multiplier - Option 17 Cost 2 Multiplier - Total option 17 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_42_multiplier + Option 60 Cost 42 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4245,43 +402696,18 @@ - option_17_lifetime - Option 17 Lifetime - The option lifetime. - Double - years - false - false - - - option_18 - Option 18 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_18_apply_logic - Option 18 Apply Logic - Logic that specifies if the Option 18 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_18_cost_1_value - Option 18 Cost 1 Value - Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_43_value + Option 60 Cost 43 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_18_cost_1_multiplier - Option 18 Cost 1 Multiplier - Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_43_multiplier + Option 60 Cost 43 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4382,18 +402808,18 @@ - option_18_cost_2_value - Option 18 Cost 2 Value - Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_44_value + Option 60 Cost 44 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_18_cost_2_multiplier - Option 18 Cost 2 Multiplier - Total option 18 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_44_multiplier + Option 60 Cost 44 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4494,43 +402920,18 @@ - option_18_lifetime - Option 18 Lifetime - The option lifetime. - Double - years - false - false - - - option_19 - Option 19 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_19_apply_logic - Option 19 Apply Logic - Logic that specifies if the Option 19 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_19_cost_1_value - Option 19 Cost 1 Value - Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_45_value + Option 60 Cost 45 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_19_cost_1_multiplier - Option 19 Cost 1 Multiplier - Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_45_multiplier + Option 60 Cost 45 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4631,18 +403032,18 @@ - option_19_cost_2_value - Option 19 Cost 2 Value - Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_46_value + Option 60 Cost 46 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_19_cost_2_multiplier - Option 19 Cost 2 Multiplier - Total option 19 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_46_multiplier + Option 60 Cost 46 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4743,43 +403144,18 @@ - option_19_lifetime - Option 19 Lifetime - The option lifetime. - Double - years - false - false - - - option_20 - Option 20 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_20_apply_logic - Option 20 Apply Logic - Logic that specifies if the Option 20 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_20_cost_1_value - Option 20 Cost 1 Value - Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_47_value + Option 60 Cost 47 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_20_cost_1_multiplier - Option 20 Cost 1 Multiplier - Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_47_multiplier + Option 60 Cost 47 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4880,18 +403256,18 @@ - option_20_cost_2_value - Option 20 Cost 2 Value - Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_48_value + Option 60 Cost 48 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_20_cost_2_multiplier - Option 20 Cost 2 Multiplier - Total option 20 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_48_multiplier + Option 60 Cost 48 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -4992,43 +403368,18 @@ - option_20_lifetime - Option 20 Lifetime - The option lifetime. - Double - years - false - false - - - option_21 - Option 21 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_21_apply_logic - Option 21 Apply Logic - Logic that specifies if the Option 21 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_21_cost_1_value - Option 21 Cost 1 Value - Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_49_value + Option 60 Cost 49 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_21_cost_1_multiplier - Option 21 Cost 1 Multiplier - Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_49_multiplier + Option 60 Cost 49 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5129,18 +403480,18 @@ - option_21_cost_2_value - Option 21 Cost 2 Value - Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_50_value + Option 60 Cost 50 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_21_cost_2_multiplier - Option 21 Cost 2 Multiplier - Total option 21 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_50_multiplier + Option 60 Cost 50 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5241,43 +403592,18 @@ - option_21_lifetime - Option 21 Lifetime - The option lifetime. - Double - years - false - false - - - option_22 - Option 22 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_22_apply_logic - Option 22 Apply Logic - Logic that specifies if the Option 22 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_22_cost_1_value - Option 22 Cost 1 Value - Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_51_value + Option 60 Cost 51 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_22_cost_1_multiplier - Option 22 Cost 1 Multiplier - Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_51_multiplier + Option 60 Cost 51 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5378,18 +403704,18 @@ - option_22_cost_2_value - Option 22 Cost 2 Value - Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_52_value + Option 60 Cost 52 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_22_cost_2_multiplier - Option 22 Cost 2 Multiplier - Total option 22 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_52_multiplier + Option 60 Cost 52 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5490,43 +403816,18 @@ - option_22_lifetime - Option 22 Lifetime - The option lifetime. - Double - years - false - false - - - option_23 - Option 23 - Specify the parameter|option as found in resources\options_lookup.tsv. - String - false - false - - - option_23_apply_logic - Option 23 Apply Logic - Logic that specifies if the Option 23 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String - false - false - - - option_23_cost_1_value - Option 23 Cost 1 Value - Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_53_value + Option 60 Cost 53 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_23_cost_1_multiplier - Option 23 Cost 1 Multiplier - Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_53_multiplier + Option 60 Cost 53 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5627,18 +403928,18 @@ - option_23_cost_2_value - Option 23 Cost 2 Value - Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_54_value + Option 60 Cost 54 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_23_cost_2_multiplier - Option 23 Cost 2 Multiplier - Total option 23 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_54_multiplier + Option 60 Cost 54 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5739,43 +404040,130 @@ - option_23_lifetime - Option 23 Lifetime - The option lifetime. + option_60_cost_55_value + Option 60 Cost 55 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double - years - false - false - - - option_24 - Option 24 - Specify the parameter|option as found in resources\options_lookup.tsv. - String + $ false false - option_24_apply_logic - Option 24 Apply Logic - Logic that specifies if the Option 24 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String + option_60_cost_55_multiplier + Option 60 Cost 55 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice false false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + - option_24_cost_1_value - Option 24 Cost 1 Value - Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_56_value + Option 60 Cost 56 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_24_cost_1_multiplier - Option 24 Cost 1 Multiplier - Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_56_multiplier + Option 60 Cost 56 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5876,18 +404264,18 @@ - option_24_cost_2_value - Option 24 Cost 2 Value - Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_57_value + Option 60 Cost 57 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_24_cost_2_multiplier - Option 24 Cost 2 Multiplier - Total option 24 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_57_multiplier + Option 60 Cost 57 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -5988,43 +404376,130 @@ - option_24_lifetime - Option 24 Lifetime - The option lifetime. + option_60_cost_58_value + Option 60 Cost 58 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double - years - false - false - - - option_25 - Option 25 - Specify the parameter|option as found in resources\options_lookup.tsv. - String + $ false false - option_25_apply_logic - Option 25 Apply Logic - Logic that specifies if the Option 25 upgrade will apply based on the existing building's options. Specify one or more parameter|option as found in resources\options_lookup.tsv. When multiple are included, they must be separated by '||' for OR and '&&' for AND, and using parentheses as appropriate. Prefix an option with '!' for not. - String + option_60_cost_58_multiplier + Option 60 Cost 58 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + Choice false false + + + + + + + + Fixed (1) + Fixed (1) + + + Wall Area, Above-Grade, Conditioned (ft^2) + Wall Area, Above-Grade, Conditioned (ft^2) + + + Wall Area, Above-Grade, Exterior (ft^2) + Wall Area, Above-Grade, Exterior (ft^2) + + + Wall Area, Below-Grade (ft^2) + Wall Area, Below-Grade (ft^2) + + + Floor Area, Conditioned (ft^2) + Floor Area, Conditioned (ft^2) + + + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + Floor Area, Conditioned * Infiltration Reduction (ft^2 * Delta ACH50) + + + Floor Area, Lighting (ft^2) + Floor Area, Lighting (ft^2) + + + Floor Area, Foundation (ft^2) + Floor Area, Foundation (ft^2) + + + Floor Area, Attic (ft^2) + Floor Area, Attic (ft^2) + + + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + Floor Area, Attic * Insulation Increase (ft^2 * Delta R-value) + + + Roof Area (ft^2) + Roof Area (ft^2) + + + Window Area (ft^2) + Window Area (ft^2) + + + Door Area (ft^2) + Door Area (ft^2) + + + Duct Unconditioned Surface Area (ft^2) + Duct Unconditioned Surface Area (ft^2) + + + Rim Joist Area, Above-Grade, Exterior (ft^2) + Rim Joist Area, Above-Grade, Exterior (ft^2) + + + Slab Perimeter, Exposed, Conditioned (ft) + Slab Perimeter, Exposed, Conditioned (ft) + + + Size, Heating System Primary (kBtu/h) + Size, Heating System Primary (kBtu/h) + + + Size, Heating System Secondary (kBtu/h) + Size, Heating System Secondary (kBtu/h) + + + Size, Cooling System Primary (kBtu/h) + Size, Cooling System Primary (kBtu/h) + + + Size, Heat Pump Backup Primary (kBtu/h) + Size, Heat Pump Backup Primary (kBtu/h) + + + Size, Water Heater (gal) + Size, Water Heater (gal) + + + Flow Rate, Mechanical Ventilation (cfm) + Flow Rate, Mechanical Ventilation (cfm) + + - option_25_cost_1_value - Option 25 Cost 1 Value - Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_59_value + Option 60 Cost 59 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_25_cost_1_multiplier - Option 25 Cost 1 Multiplier - Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_59_multiplier + Option 60 Cost 59 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -6125,18 +404600,18 @@ - option_25_cost_2_value - Option 25 Cost 2 Value - Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_60_value + Option 60 Cost 60 Value + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Double $ false false - option_25_cost_2_multiplier - Option 25 Cost 2 Multiplier - Total option 25 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). + option_60_cost_60_multiplier + Option 60 Cost 60 Multiplier + Total option 60 cost is the sum of all: (Cost N Value) x (Cost N Multiplier). Choice false false @@ -6237,8 +404712,8 @@ - option_25_lifetime - Option 25 Lifetime + option_60_lifetime + Option 60 Lifetime The option lifetime. Double years @@ -6325,7 +404800,7 @@ README.md md readme - DBE96A53 + B1C92634 README.md.erb @@ -6348,7 +404823,7 @@ constants.rb rb resource - F595D17B + 5FE2E058 apply_upgrade_test.rb diff --git a/measures/ApplyUpgrade/resources/constants.rb b/measures/ApplyUpgrade/resources/constants.rb index d430250db2..df12986a39 100644 --- a/measures/ApplyUpgrade/resources/constants.rb +++ b/measures/ApplyUpgrade/resources/constants.rb @@ -2,11 +2,11 @@ class Constants def self.NumApplyUpgradeOptions - return 25 + return 60 end def self.NumApplyUpgradesCostsPerOption - return 2 + return 60 end def self.CostMultiplierChoices diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index 60d014229a..a011b32331 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -831,7 +831,7 @@ def run(model, runner, user_arguments) dishwasher_full_load_operation_hour = (dishwasher_full_load_operation * hour_each_value).to_s dishwasher_operation_hour = (dishwasher_operation * hour_each_value).to_s dishwasher_event_num = (dishwasher_event_num).to_s - register_value(runner, 'dishwaser_full_load_operation_hour', dishwasher_full_load_operation_hour) + register_value(runner, 'dishwasher_full_load_operation_hour', dishwasher_full_load_operation_hour) register_value(runner, 'dishwasher_operation_hour', dishwasher_operation_hour) register_value(runner, 'dishwasher_event_num', dishwasher_event_num) diff --git a/project_national/national_baseline.yml b/project_national/national_baseline.yml index 7aff8d1e65..9817f7d795 100644 --- a/project_national/national_baseline.yml +++ b/project_national/national_baseline.yml @@ -3,14 +3,14 @@ os_version: 3.7.0 os_sha: d5269793f1 buildstock_directory: ../ # Relative to this file or absolute project_directory: project_national # Relative to buildstock_directory -output_directory: schedule_based_appliance -weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip -#weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_TMY3_FIPS.zip +output_directory: /kfs2/projects/panels/schedule_based_appliance/test_run20240216 +#weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip +weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_TMY3_FIPS.zip sampler: - type: precomputed + type: residential_quota args: - sample_file: failed_buildstock5.csv + n_datapoints: 4000 workflow_generator: type: residential_hpxml diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index 5d4f3c99c3..db796ee4b2 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -3,9 +3,10 @@ os_version: 3.7.0 os_sha: d5269793f1 buildstock_directory: ../ # Relative to this file or absolute project_directory: project_national # Relative to buildstock_directory -output_directory: national_upgrades -weather_files_url: https://data.nrel.gov/system/files/156/Buildstock_TMY3_FIPS-1678817889.zip -# weather_files_path: c:/OpenStudio/BuildStock_TMY3_FIPS.zip +output_directory: /kfs2/projects/panels/test_run/test_run_20240126 +#weather_files_url: https://data.nrel.gov/system/files/156/BuildStock_TMY3_FIPS.zip +weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_2018_FIPS.zip + sampler: type: residential_quota @@ -592,6 +593,12 @@ references: - or: - Clothes Dryer|Gas - Clothes Dryer|Propane + costs: + - value: 718 # Cheaper of top-ranked electric dryer on Consumer Reports, is full-size + # https://www.homedepot.com/p/GE-7-4-cu-ft-Electric-Dryer-with-Sensor-Dry-in-White-GTD58EBSVWS/324668239 + # It is $578 at big box stores as of Feb 2024, $718 = $578 * 1.07 sales tax + $100 delivery/install + multiplier: Fixed (1) + lifetime: 13 # 13 is from REMDB https://remdb.nrel.gov/measures?group_id=4&component_type_id=374&actionId=1925&bcId=5849 #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - &electric_pool_heaters @@ -915,58 +922,6 @@ upgrades: - *electric_pool_heaters - *electric_spa_heaters - - upgrade_name: 1.6. Low-voltage Electrification - options: - #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - - *heating_fuel - - *cooling_efficiency_ducted - - *cooling_efficiency_ductless - - *100_percent_conditioned - - *cooling_setpoint_offset_magnitude_0 - - *cooling_setpoint_offset_period_none - - *heating_setpoint_offset_magnitude_0 - - *heating_setpoint_offset_period_none - #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *fed_min_ashp_ducted - - *fed_min_mshp_ductless - #### 2.1 Electric Water Heating, 4 options #### ##TO DO evise it to 120V HPWH - - *water_heater_fuel_eff_premium - - *water_heater_fuel_eff_standard - - *water_heater_fuel_eff_tankless - #### 3 Electric Resistance Cooking, 1 option #### - - *electric_resistance_cooking - #### 4 Electric Clothes Dryer, 1 options #### - - *clothes_dryer_electric - #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *electric_pool_heaters - - *electric_spa_heaters - - - upgrade_name: 1.7. High Efficiency and Low-voltage Electrification - options: - #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - - *heating_fuel - - *cooling_efficiency_ducted - - *cooling_efficiency_ductless - - *100_percent_conditioned - - *cooling_setpoint_offset_magnitude_0 - - *cooling_setpoint_offset_period_none - - *heating_setpoint_offset_magnitude_0 - - *heating_setpoint_offset_period_none - #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *high_eff_ashp_ducted - - *high_eff_mshp_ductless - #### 2.2 240V HPWH, 3 options #### ## TO DO revise to 120V HPWH - - *240V_hpwh_50_gal - - *240V_hpwh_66_gal - - *240V_hpwh_80_gal - #### 3 Electric Resistance Cooking, 1 option #### - - *electric_resistance_cooking - #### 4 Electric Clothes Dryer, 1 options #### - - *clothes_dryer_electric - #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *electric_pool_heaters - - *electric_spa_heaters - - upgrade_name: 1.8 BAU Electrification with Existing Fuel Backup options: #### 1.0 Common Options For Heat Pump with existing backup, 8 options #### @@ -1174,82 +1129,6 @@ upgrades: - *ducts_category6 - *ducts_category7 - *drill_and_fill - - - upgrade_name: 2.5 Low-voltage Electrification with Envelope - options: - #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - - *heating_fuel - - *cooling_efficiency_ducted - - *cooling_efficiency_ductless - - *100_percent_conditioned - - *cooling_setpoint_offset_magnitude_0 - - *cooling_setpoint_offset_period_none - - *heating_setpoint_offset_magnitude_0 - - *heating_setpoint_offset_period_none - #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### - - *fed_min_ashp_ducted - - *fed_min_mshp_ductless - #### 2.1 Electric Water Heating, 3 options #### ##TO DO evise it to 120V HPWH - - *water_heater_fuel_eff_premium - - *water_heater_fuel_eff_standard - - *water_heater_fuel_eff_tankless - #### 3 Electric Resistance Cooking, 1 option #### - - *electric_resistance_cooking - #### 4 Electric Clothes Dryer, 1 options #### - - *clothes_dryer_electric - #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *electric_pool_heaters - - *electric_spa_heaters - #### 6 Envelope, 12 options #### - - *attic_insulation_IECC_CZ1A - - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK - - *infiltration_30pct_reduction - - *ducts_category1 - - *ducts_category3 - - *ducts_category4 - - *ducts_category5 - - *ducts_category6 - - *ducts_category7 - - *drill_and_fill - - - upgrade_name: 2.6 High Efficiency and Low-voltage Electrification with Envelope - options: - #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - - *heating_fuel - - *cooling_efficiency_ducted - - *cooling_efficiency_ductless - - *100_percent_conditioned - - *cooling_setpoint_offset_magnitude_0 - - *cooling_setpoint_offset_period_none - - *heating_setpoint_offset_magnitude_0 - - *heating_setpoint_offset_period_none - #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - - *high_eff_ashp_ducted - - *high_eff_mshp_ductless - #### 2.2 240V HPWH, 3 options #### ## TO DO revise to 120V HPWH - - *240V_hpwh_50_gal - - *240V_hpwh_66_gal - - *240V_hpwh_80_gal - #### 3 Electric Resistance Cooking, 1 option #### - - *electric_resistance_cooking - #### 4 Electric Clothes Dryer, 1 options #### - - *clothes_dryer_electric - #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - - *electric_pool_heaters - - *electric_spa_heaters - #### 6 Envelope, 12 options #### - - *attic_insulation_IECC_CZ1A - - *attic_insulation_IECC_CZ2A-2B-3A-3B-3C - - *attic_insulation_IECC_CZ4A-4B-4C-5A-5B-6A-6B-7A-7B-7AK-8AK - - *infiltration_30pct_reduction - - *ducts_category1 - - *ducts_category3 - - *ducts_category4 - - *ducts_category5 - - *ducts_category6 - - *ducts_category7 - - *drill_and_fill - upgrade_name: 2.7 BAU Electrification with Existing Fuel Backup with Envelope options: @@ -1319,12 +1198,23 @@ upgrades: - *ducts_category7 - *drill_and_fill -eagle: - n_jobs: 3 - minutes_per_sim: 5 - account: - postprocessing: - time: 20 - n_workers: 1 +kestrel: + n_jobs: 40 #240 for 550K + minutes_per_sim: 4 + account: panels sampling: - time: 10 + time: 1000 + postprocessing: + time: 2000 + n_workers: 32 + +postprocessing: + aws: + region_name: us-west-2 + s3: + bucket: resstock-panels + prefix: resstock-panels_runs + athena: + glue_service_role: service-role/AWSGlueServiceRole-default + database_name: resstock_panels + max_crawling_time: 1200 diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 9f6819e04e..1e5c8048d1 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -9641,7 +9641,7 @@ Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 -Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 +Ground Thermal Conductivity 2.0 ResStockArguments site_ground_conductivity=2.0 Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto From 886756c949abd1a8aac4b5d9ed59b098443b712f Mon Sep 17 00:00:00 2001 From: Yingli Lou Date: Mon, 26 Feb 2024 16:08:53 -0700 Subject: [PATCH 15/19] package_apply_logic for upgrades with envelope --- project_national/panel_upgrades.yml | 59 ++++++++++++++++++++++++++--- 1 file changed, 54 insertions(+), 5 deletions(-) diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index db796ee4b2..4773bd3c2d 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -574,7 +574,7 @@ references: #### 3 Electric Resistance Cooking, 1 option #### - &electric_resistance_cooking option: Cooking Range|Electric Resistance - apply_logic: + apply_logic: &logic_cooking - or: - Cooking Range|Gas - Cooking Range|Propane @@ -589,7 +589,7 @@ references: #### 4 Electric Clothes Dryer, 1 option #### - &clothes_dryer_electric option: Clothes Dryer|Electric - apply_logic: + apply_logic: &logic_dryer - or: - Clothes Dryer|Gas - Clothes Dryer|Propane @@ -603,7 +603,7 @@ references: #### 5 Electric Pool Heater And Hot Tub Spa Heater, 2 options #### - &electric_pool_heaters option: Misc Pool Heater|Electricity - apply_logic: + apply_logic: &logic_pool_heater - or: - Misc Pool Heater|Natural Gas - Misc Pool Heater|Other Fuel @@ -615,10 +615,10 @@ references: lifetime: 15 - &electric_spa_heaters option: Misc Hot Tub Spa|Electricity - apply_logic: + apply_logic: &logic_spa_heater - or: - Misc Hot Tub Spa|Natural Gas - - Misc Pool Heater|Other Fuel + - Misc Hot Tub Spa|Other Fuel costs: - value: 2760 # https://lesliespool.com/raypak-model-0018-e3t-electric-3-series-titanium-pool-spa-heater---18kw---61419-btu-hr/382735.html # installation $310 - varies on state and zip code between 228 and 400 USD @@ -795,6 +795,50 @@ references: multiplier: Wall Area, Above-Grade, Conditioned (ft^2) lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf + #### package apply logic ##### + package_apply_logic: &with_heat_pump_ele_backup + - or: + - and: + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: + - HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Heating Type And Fuel|Electricity MSHP + - not: Water Heater Fuel|Electricity + - *logic_cooking + - *logic_dryer + - *logic_pool_heater + - *logic_spa_heater + package_apply_logic: &with_heat_pump_existing_backup + - or: + - and: + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: + - HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Heating Type And Fuel|Electricity MSHP + - HVAC Has Shared System|None + - not: Water Heater Fuel|Electricity + - *logic_cooking + - *logic_dryer + - *logic_pool_heater + - *logic_spa_heater + package_apply_logic: &with_heat_pump_ele_backup_hpwh + - or: + - and: + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: + - HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Heating Type And Fuel|Electricity MSHP + - not: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF + - *logic_cooking + - *logic_dryer + - *logic_pool_heater + - *logic_spa_heater upgrades: - upgrade_name: 1.1 Inefficient Electrification @@ -979,6 +1023,7 @@ upgrades: - *electric_spa_heaters - upgrade_name: 2.1. BAU Electrification with Envelope + package_apply_logic: *with_heat_pump_ele_backup options: #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - *heating_fuel @@ -1017,6 +1062,7 @@ upgrades: - *drill_and_fill - upgrade_name: 2.2 BAU Electrification with HPWH with Envelope + package_apply_logic: *with_heat_pump_ele_backup_hpwh options: #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - *heating_fuel @@ -1055,6 +1101,7 @@ upgrades: - *drill_and_fill - upgrade_name: 2.3 High Efficiency Space Heating Electrification with Envelope + package_apply_logic: *with_heat_pump_ele_backup options: #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - *heating_fuel @@ -1093,6 +1140,7 @@ upgrades: - *drill_and_fill - upgrade_name: 2.4 High Efficiency Space Heating Electrification With HPWH with Envelope + package_apply_logic: *with_heat_pump_ele_backup_hpwh options: #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### - *heating_fuel @@ -1131,6 +1179,7 @@ upgrades: - *drill_and_fill - upgrade_name: 2.7 BAU Electrification with Existing Fuel Backup with Envelope + package_apply_logic: *with_heat_pump_existing_backup options: #### 1.0 Common Options For Heat Pump with existing backup, 8 options #### - *hp_exist_bkup_heating_fuel From fd02d25903ea639a971ad92fda4c3ddfa62d2207 Mon Sep 17 00:00:00 2001 From: Yingli Lou Date: Tue, 27 Feb 2024 15:46:24 -0700 Subject: [PATCH 16/19] emergyence backup for hp with existing backup --- project_national/panel_upgrades.yml | 59 +++++++++++++++-------------- resources/options_lookup.tsv | 39 +++++++++---------- 2 files changed, 51 insertions(+), 47 deletions(-) diff --git a/project_national/panel_upgrades.yml b/project_national/panel_upgrades.yml index 4773bd3c2d..17ef42e01c 100644 --- a/project_national/panel_upgrades.yml +++ b/project_national/panel_upgrades.yml @@ -254,7 +254,7 @@ references: #### 1.3 Federal Minimum Level Heat Pump With Existing Heating Backup, 32 options #### ##ASHP non-ducted heating## - &fed_min_ashp_exist_backup_no_shared_ducts - option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Emergency Backup Sizing apply_logic: - HVAC Has Shared System|None - HVAC Has Ducts|Yes @@ -336,28 +336,28 @@ references: ## ASHP ducted heating ## # Natural Gas as backup - &fed_min_ashp_exist_backup_shared_ducts_60_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_ng - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Natural Gas Fuel Furnace @@ -366,28 +366,28 @@ references: #Fuel Oil as backup - &fed_min_ashp_exist_backup_shared_ducts_60_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_fo - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Fuel Oil Fuel Furnace @@ -396,28 +396,28 @@ references: # Propane as backup - &fed_min_ashp_exist_backup_shared_ducts_60_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_propane - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Propane Fuel Furnace @@ -426,28 +426,28 @@ references: # Other Fuel as backup - &fed_min_ashp_exist_backup_shared_ducts_60_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 60% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_76_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 76% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_80_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 80% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace costs: *costs_ashp_ducted_8-82_HSPF lifetime: *lifetime_HP - &fed_min_ashp_exist_backup_shared_ducts_92-5_of - option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band + option: HVAC Heating Efficiency|Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band apply_logic: - HVAC Heating Efficiency|Fuel Furnace, 92.5% AFUE - HVAC Heating Type And Fuel|Other Fuel Fuel Furnace @@ -456,7 +456,7 @@ references: # Electricity as backup - &fed_min_ashp_exist_backup_shared_ducts_electricity - option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Emergency Backup Sizing apply_logic: - HVAC Heating Efficiency|Electric Furnace, 100% AFUE costs: *costs_ashp_ducted_8-82_HSPF @@ -464,7 +464,7 @@ references: ## MSHP non-ducted heating ## - &fed_min_mshp_exist_backup - option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Emergency Backup Sizing, Max Load apply_logic: - HVAC Has Shared System|None - HVAC Has Ducts|No @@ -796,44 +796,47 @@ references: lifetime: 60 # years effective useful life for opaque envelope components, from https://www.nyserda.ny.gov/-/media/Files/Programs/energy-code-training/Residential-Cost-Analysis-Report.pdf #### package apply logic ##### - package_apply_logic: &with_heat_pump_ele_backup + package_apply_logic1: &with_heat_pump_ele_backup - or: - and: - not: - Heating Fuel|None - HVAC Cooling Type|None - not: - - HVAC Heating Type And Fuel|Electricity ASHP - - HVAC Heating Type And Fuel|Electricity MSHP + - or: + - HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Heating Type And Fuel|Electricity MSHP - not: Water Heater Fuel|Electricity - *logic_cooking - *logic_dryer - *logic_pool_heater - *logic_spa_heater - package_apply_logic: &with_heat_pump_existing_backup + package_apply_logic2: &with_heat_pump_existing_backup - or: - and: - not: - Heating Fuel|None - HVAC Cooling Type|None - not: - - HVAC Heating Type And Fuel|Electricity ASHP - - HVAC Heating Type And Fuel|Electricity MSHP + - or: + - HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Heating Type And Fuel|Electricity MSHP - HVAC Has Shared System|None - not: Water Heater Fuel|Electricity - *logic_cooking - *logic_dryer - *logic_pool_heater - *logic_spa_heater - package_apply_logic: &with_heat_pump_ele_backup_hpwh + package_apply_logic3: &with_heat_pump_ele_backup_hpwh - or: - and: - not: - Heating Fuel|None - HVAC Cooling Type|None - not: - - HVAC Heating Type And Fuel|Electricity ASHP - - HVAC Heating Type And Fuel|Electricity MSHP + - or: + - HVAC Heating Type And Fuel|Electricity ASHP + - HVAC Heating Type And Fuel|Electricity MSHP - not: Water Heater Efficiency|Electric Heat Pump, 50 gal, 3.45 UEF - *logic_cooking - *logic_dryer diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 1e5c8048d1..183dae8845 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -12990,11 +12990,12 @@ Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylig Windows Void Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Emergency Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Separate Backup, Emergency Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=emergency HVAC Secondary Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.76 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.80 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=0.90 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto @@ -13002,20 +13003,20 @@ HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockAr HVAC Secondary Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=0.68 heating_system_2_heating_capacity=auto heating_system_2_fraction_heat_load_served=0 heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_2_type=Boiler heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto HVAC Secondary Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_2_type=WallFurnace heating_system_2_heating_efficiency=1 heating_system_2_heating_capacity=auto heating_system_2_has_flue_or_chimney=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Supplemental Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Supplemental Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 60% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 76% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 80% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Fuel Oil, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE NG, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Emergency Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency From 9888996772955d0f94f9ba503f61548b5796eaf7 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 28 Feb 2024 13:58:16 -0700 Subject: [PATCH 17/19] hp sizing testing --- project_national/panel_upgrades_hp_sizing.yml | 242 ++++++++++++++++++ 1 file changed, 242 insertions(+) create mode 100644 project_national/panel_upgrades_hp_sizing.yml diff --git a/project_national/panel_upgrades_hp_sizing.yml b/project_national/panel_upgrades_hp_sizing.yml new file mode 100644 index 0000000000..816106fba4 --- /dev/null +++ b/project_national/panel_upgrades_hp_sizing.yml @@ -0,0 +1,242 @@ +schema_version: '0.3' +os_version: 3.7.0 +os_sha: d5269793f1 +buildstock_directory: ../ # Relative to this file or absolute +project_directory: project_national # Relative to buildstock_directory +output_directory: /kfs2/projects/panels/test_run/test_run_20240126 +#weather_files_url: https://data.nrel.gov/system/files/156/BuildStock_TMY3_FIPS.zip +weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_2018_FIPS.zip + + +sampler: + type: precomputed + args: + sample_file: buildstock_hp_sizing.csv + +workflow_generator: + type: residential_hpxml + args: + build_existing_model: + simulation_control_timestep: 15 + simulation_control_run_period_begin_month: 1 + simulation_control_run_period_begin_day_of_month: 1 + simulation_control_run_period_end_month: 12 + simulation_control_run_period_end_day_of_month: 31 + simulation_control_run_period_calendar_year: 2007 + + simulation_output_report: + timeseries_frequency: timestep + include_timeseries_total_consumptions: true + include_timeseries_fuel_consumptions: true + include_timeseries_end_use_consumptions: true + include_timeseries_emissions: true + include_timeseries_emission_fuels: true + include_timeseries_emission_end_uses: true + include_timeseries_hot_water_uses: true + include_timeseries_total_loads: true + include_timeseries_component_loads: true + include_timeseries_unmet_hours: true + include_timeseries_zone_temperatures: true + include_timeseries_airflows: true + include_timeseries_weather: true + include_timeseries_resilience: true + + reporting_measures: + - measure_dir_name: QOIReport + + server_directory_cleanup: + retain_in_idf: false + retain_schedules_csv: false + +baseline: + n_buildings_represented: 140382740 # American Community Survey 2022 5-year, B25001, contiguous US + AK + +references: + + options: + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - &heating_fuel + option: Heating Fuel|Electricity + apply_logic: + - not: Heating Fuel|None + - not: Heating Fuel|Electricity + - &cooling_efficiency_ducted + option: HVAC Cooling Efficiency|Ducted Heat Pump + apply_logic: &logic_ducted_hvac_no_ashp + - HVAC Has Ducts|Yes + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + - &cooling_efficiency_ductless + option: HVAC Cooling Efficiency|Non-Ducted Heat Pump + apply_logic: &logic_ductless_hvac_no_mshp + - HVAC Has Ducts|No + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + - &100_percent_conditioned + option: HVAC Cooling Partial Space Conditioning|100% Conditioned + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + - &cooling_setpoint_offset_magnitude_0 + option: Cooling Setpoint Offset Magnitude|0F + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + - &cooling_setpoint_offset_period_none + option: Cooling Setpoint Offset Period|None + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + - &heating_setpoint_offset_magnitude_0 + option: Heating Setpoint Offset Magnitude|0F + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + - &heating_setpoint_offset_period_none + option: Heating Setpoint Offset Period|None + apply_logic: + - or: + - *logic_ducted_hvac_no_ashp + - *logic_ductless_hvac_no_mshp + + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - &fed_min_ashp_ducted + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing # same as base option + apply_logic: + - HVAC Has Ducts|Yes + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: &costs_ashp_ducted_8-82_HSPF + # Source: Custom regression by Brennan Less. Ducted heat pump project costs were regressed on nameplate tons and HSPF, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ducted ASHP regression n=317. Implicitly includes electrical upgrades and electric backup. + - value: 3680.19 # for HSPF 8.82 + multiplier: Fixed (1) + - value: 167.64 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: &lifetime_HP 15 + + - &fed_min_mshp_ductless + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing # federal minimum is SEER 14.3, but 14.5 is lowest SEER in baseline ResStock + apply_logic: + - HVAC Has Ducts|No + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: &costs_mshp_ductless_8-33_HSPF + # Source: Custom regression by Brennan Less. Ductless heat pump project costs were regressed on nameplate tons, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ductless MSHP n=173, HSPF median 11, range 9.3–14.2. Implicitly includes multiple zones and electrical upgrades. + # Regression results in costs that are 15–30% higher than costs from The Heat Pump Store as documented in https://redwoodenergy.net/wp-content/uploads/2021/02/Pocket-Guide-to-All-Electric-Retrofits-of-Single-Family-Homes.pdf + # LBNL data were not sufficient to include a relationship between SEER or HSPF and cost, so cost deltas for higher + # and lower HSPF were added using the relationship between HSPF and cost for ductless MSHPs in REMDB: 2.2% addition or subtraction per point + # according to how many points above or below the HSPF rating is from 10.5 (https://remdb.nrel.gov/). + - value: 2679.52 + multiplier: Fixed (1) + - value: 347.97 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: *lifetime_HP + + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - &high_eff_ashp_ducted + option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing + apply_logic: + - HVAC Has Ducts|Yes + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: &costs_ashp_ducted_SEER_20_11_HSPF + # Source: Custom regression by Brennan Less. Ducted heat pump project costs were regressed on nameplate tons and HSPF, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ducted ASHP regression n=317. Implicitly includes electrical upgrades and electric backup. + - value: 10229.58 # for HSPF 11 + multiplier: Fixed (1) + - value: 167.64 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: *lifetime_HP + + - &high_eff_mshp_ductless + option: HVAC Heating Efficiency|MSHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing + apply_logic: + - HVAC Has Ducts|No + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: &costs_mshp_ductless_SEER_20_11_HSPF + # Source: Custom regression by Brennan Less. Ductless heat pump project costs were regressed on nameplate tons, + # from data described in in Less et al. https://doi.org/10.20357/B7FP4D. January 2019 $ inflated to April 2023 $ using 1.21 factor. + # Ductless MSHP n=173, HSPF median 11, range 9.3–14.2. Implicitly includes multiple zones and electrical upgrades. + # Regression results in costs that are 15–30% higher than costs from The Heat Pump Store as documented in https://redwoodenergy.net/wp-content/uploads/2021/02/Pocket-Guide-to-All-Electric-Retrofits-of-Single-Family-Homes.pdf + # LBNL data were not sufficient to include a relationship between SEER or HSPF and cost, so cost deltas for higher + # and lower HSPF were added using the relationship between HSPF and cost for ductless MSHPs in REMDB: 2.2% addition or subtraction per point + # according to how many points above or below the HSPF rating is from 10.5 (https://remdb.nrel.gov/). + - value: 2844.81 + multiplier: Fixed (1) + - value: 369.43 + multiplier: Size, Heating System Primary (kBtu/h) + lifetime: *lifetime_HP + +upgrades: + - upgrade_name: Federal Minimum Heat Pump With Electric Backup MaxLoad Sizing + options: + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *fed_min_ashp_ducted + - *fed_min_mshp_ductless + + - upgrade_name: High-Efficiency Heat Pump With Electric Backup MaxLoad Sizing + options: + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *high_eff_ashp_ducted + - *high_eff_mshp_ductless + +kestrel: + n_jobs: 40 #240 for 550K + minutes_per_sim: 4 + account: panels + sampling: + time: 1000 + postprocessing: + time: 2000 + n_workers: 32 + +postprocessing: + aws: + region_name: us-west-2 + s3: + bucket: resstock-panels + prefix: resstock-panels_runs + athena: + glue_service_role: service-role/AWSGlueServiceRole-default + database_name: resstock_panels + max_crawling_time: 1200 From da641eb49de47572684bde65ee395feca0a54843 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 28 Feb 2024 13:58:47 -0700 Subject: [PATCH 18/19] hp sizing testing --- project_national/buildstock_hp_sizing.csv | 301 ++++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 project_national/buildstock_hp_sizing.csv diff --git a/project_national/buildstock_hp_sizing.csv b/project_national/buildstock_hp_sizing.csv new file mode 100644 index 0000000000..5aa7b42c4a --- /dev/null +++ b/project_national/buildstock_hp_sizing.csv @@ -0,0 +1,301 @@ +Building,ASHRAE IECC Climate Zone 2004,Bathroom Spot Vent Hour,County and PUMA,AIANNH Area,CEC Climate Zone,City,County,AHS Region,ASHRAE IECC Climate Zone 2004 - 2A Split,Building America Climate Zone,Dehumidifier,Door Area,Doors,Eaves,Electric Vehicle,Energystar Climate Zone 2023,Ground Thermal Conductivity,HVAC Secondary Heating Efficiency,HVAC Secondary Heating Fuel,HVAC Secondary Heating Partial Space Conditioning,HVAC System Is Faulted,Holiday Lighting,Hot Water Distribution,ISO RTO Region,Interior Shading,Lighting Interior Use,Lighting Other Use,Mechanical Ventilation,Misc Gas Fireplace,Misc Gas Grill,Misc Gas Lighting,Misc Well Pump,Natural Ventilation,Orientation,Overhangs,PUMA,Geometry Building Type ACS,Geometry Building Number Units SFA,Geometry Building Horizontal Location SFA,Geometry Building Type RECS,Cooling Setpoint Has Offset,Cooling Setpoint Offset Magnitude,Cooling Setpoint Offset Period,Corridor,Neighbors,PUMA Metro Status,REEDS Balancing Area,Generation And Emissions Assessment Region,Radiant Barrier,Range Spot Vent Hour,Solar Hot Water,State,Census Division,Census Division RECS,Census Region,Lighting,Location Region,Plug Loads,Usage Level,Clothes Dryer Usage Level,Clothes Washer Usage Level,Cooking Range Usage Level,Dishwasher Usage Level,Hot Water Fixtures,Plug Load Diversity,Refrigerator Usage Level,Vacancy Status,Ceiling Fan,Has PV,Battery,PV Orientation,PV System Size,Tenure,Vintage,Heating Fuel,HVAC Heating Type,Vintage ACS,Geometry Foundation Type,HVAC Cooling Type,Cooling Setpoint,HVAC Has Shared System,HVAC Cooling Efficiency,HVAC Has Ducts,HVAC Heating Efficiency,HVAC Has Zonal Electric Heating,HVAC Heating Type And Fuel,HVAC Shared Efficiencies,HVAC System Single Speed AC Airflow,HVAC System Single Speed AC Charge,HVAC System Single Speed ASHP Airflow,HVAC System Single Speed ASHP Charge,Heating Setpoint,Heating Setpoint Has Offset,Heating Setpoint Offset Magnitude,Heating Setpoint Offset Period,Income,Income RECS2015,Income RECS2020,Geometry Floor Area,Bedrooms,Geometry Floor Area Bin,Geometry Stories,Geometry Building Level MF,Geometry Building Number Units MF,Geometry Building Horizontal Location MF,Geometry Building Type Height,Geometry Stories Low Rise,Geometry Attic Type,Geometry Garage,Geometry Space Combination,Duct Location,Duct Leakage and Insulation,Geometry Story Bin,Geometry Wall Type,Geometry Wall Exterior Finish,HVAC Cooling Partial Space Conditioning,Infiltration,Insulation Ceiling,Insulation Floor,Insulation Foundation Wall,Insulation Rim Joist,Insulation Roof,Insulation Slab,Insulation Wall,Occupants,Area Median Income,Federal Poverty Level,Clothes Washer Presence,Clothes Dryer,Clothes Washer,Cooking Range,Dishwasher,Household Has Tribal Persons,Misc Extra Refrigerator,Misc Freezer,Misc Hot Tub Spa,Misc Pool,Misc Pool Heater,Misc Pool Pump,Refrigerator,Roof Material,Water Heater Fuel,Water Heater Efficiency,Water Heater In Unit,Water Heater Location,Window Areas,Windows +1,7A,Hour22,"G2701110, G27000800",No,None,In another census Place,"MN, Otter Tail County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MN, 00800",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour10,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,2000s,Propane,Ducted Heating,2000-09,Slab,Central AC,72F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +2h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"20% Leakage to Outside, R-8",<8,Wood Frame,"Aluminum, Light",100% Conditioned,7 ACH50,R-49,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19",2,120-150%,400%+,Yes,Electric,EnergyStar,Propane,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Metal, Dark",Electricity,Electric Standard,Yes,Garage,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +2,7A,Hour23,"G2700170, G27000300",No,None,In another census Place,"MN, Carlton County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",North,None,"MN, 00300",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +3h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour17,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Propane,Ducted Heating,2000-09,Vented Crawlspace,Central AC,60F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, R-6",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,6 ACH50,R-49,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +3,7A,Hour2,"G3800350, G38000400",No,None,"ND, Grand Forks","ND, Grand Forks County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"ND, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour14,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Heated Basement,Room AC,70F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +5h,100000-119999,100000-119999,100000-149999,2000-2499,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",20% Conditioned,10 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",4,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +4,7AK,Hour2,"G0201700, G02000200",Yes,None,In another census Place,"AK, Matanuska-Susitna Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"AK, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour7,None,AK,Pacific,Pacific,West,100% CFL,CRAK,94%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Heated Basement,None,72F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +2h,100000-119999,100000-119999,100000-149999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Brick,None,None,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Brick, 12-in, 3-wythe, R-11",2,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +5,7AK,Hour7,"G0201300, G02000300",Yes,None,In another census Place,"AK, Ketchikan Gateway Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Southwest,None,"AK, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour12,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Vacant,None,No,None,None,None,Not Available,1980s,Fuel Oil,Non-Ducted Heating,1980-99,Heated Basement,None,72F,None,None,No,"Fuel Boiler, 90% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,750-999,3,0-1499,2,None,None,None,Single-Family Detached,2,None,1 Car,"Single-Family Detached, Heated Basement, No Attic, 1 Car Garage",None,None,<8,Brick,None,None,15 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-13",None,"Brick, 12-in, 3-wythe, R-11",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,None,Not Available,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Tankless,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +6,7A,Hour6,"G3800350, G38000400",No,None,"ND, Grand Forks","ND, Grand Forks County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"ND, 00400",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +4h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour9,None,ND,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Slab,Room AC,72F,None,"Room AC, EER 9.8",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,70F,Yes,3F,Night -4h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,20 ACH50,R-49,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" +7,7AK,Hour22,"G0200200, G02000101",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",West,None,"AK, 00101",Single-Family Attached,90,Middle,Single-Family Attached,No,0F,None,Not Applicable,27,"In metro area, principal city",None,None,No,Hour23,None,AK,Pacific,Pacific,West,100% LED,CRAK,96%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Renter,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,None,72F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,2,None,None,None,Single-Family Attached,2,None,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,10 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, Uninsulated",None,"Wood Stud, R-19",4,80-100%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +8,7A,Hour4,"G2600330, G26000200",No,None,Not in a census Place,"MI, Chippewa County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MI, 00200",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback +5h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,103,RFCMc,No,Hour9,None,MI,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1990s,Propane,Ducted Heating,1980-99,Heated Basement,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,3000-3999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Brick,"Vinyl, Light",100% Conditioned,5 ACH50,R-30,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-19",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,"Metal, Dark",Propane,Propane Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +9,7B,Hour21,"G0800490, G08000400",No,None,Not in a census Place,"CO, Grand County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.5,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"CO, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,33,RMPAc,No,Hour7,None,CO,Mountain,Mountain North,West,100% LED,CR05,91%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,750-999,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",Attic,"20% Leakage to Outside, R-8",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19",0,Not Available,Not Available,Yes,Electric,EnergyStar,Gas,318 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +10,7A,Hour23,"G2700210, G27000300",No,None,Not in a census Place,"MN, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"MN, 00300",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback +3h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour9,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Propane,Ducted Heating,1980-99,Vented Crawlspace,Central AC,60F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night -1h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",100% Conditioned,10 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-19",1,150%+,400%+,Yes,Electric,Standard,Propane,318 Rated kWh,No,EF 17.6,"EF 12, National Average",Electricity,None,None,None,EF 21.9,"Asphalt Shingles, Medium",Electricity,Electric Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" +11,7A,Hour5,"G2701130, G27000100",No,None,In another census Place,"MN, Pennington County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,2,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MN, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour6,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,None,75F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Aluminum, Light",None,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-11",4,100-120%,300-400%,Yes,Gas,EnergyStar,Gas,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +12,7AK,Hour11,"G0201500, G02000400",No,None,In another census Place,"AK, Kodiak Island Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",North,None,"AK, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour8,None,AK,Pacific,Pacific,West,100% Incandescent,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1980s,Fuel Oil,Non-Ducted Heating,1980-99,Unheated Basement,None,65F,None,None,No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,1000-1499,4,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,1 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage",None,None,<8,Brick,None,None,10 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-19",0,Not Available,Not Available,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Standard,Yes,Garage,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +13,7A,Hour7,"G5500990, G55000100",No,None,Not in a census Place,"WI, Price County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",East,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour18,None,WI,East North Central,East North Central,Midwest,100% LED,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1940s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",60% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +14,7AK,Hour15,"G0200200, G02000102",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"AK, 00102",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",None,None,No,Hour19,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Slab,None,68F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2500-2999,3,2500-3999,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"10% Leakage to Outside, R-4",<8,Wood Frame,"Wood, Medium/Dark",None,15 ACH50,None,None,None,None,"Finished, R-19","2ft R5 Under, Horizontal","Wood Stud, R-19",4,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Slate,Natural Gas,Natural Gas Standard,Yes,Garage,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +15,7A,Hour18,"G2701590, G27000700",No,None,In another census Place,"MN, Wadena County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MN, 00700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour11,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,50000-59999,40000-59999,40000-59999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Unvented Attic,None,"Single-Family Detached, Heated Basement, Unvented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7",2,80-100%,300-400%,Yes,Gas,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +16,7A,Hour23,"G2701110, G27000800",No,None,Not in a census Place,"MN, Otter Tail County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MN, 00800",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour17,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,84%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Propane,Ducted Heating,2000-09,Ambient,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Aluminum, Light",100% Conditioned,6 ACH50,None,Ceiling R-30,None,None,"Finished, R-30",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,None,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Propane,Propane Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +17,7A,Hour23,"G2700070, G27000200",No,None,Not in a census Place,"MN, Beltrami County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MN, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour18,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1990s,Propane,Ducted Heating,1980-99,Vented Crawlspace,Room AC,60F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 92.5% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,65F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",20% Conditioned,7 ACH50,R-49,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",3,120-150%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +18,7A,Hour2,"G2700270, G27000100",No,None,"MN, Moorhead","MN, Clay County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MN, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour14,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Electricity,Ducted Heating,1960-79,Heated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,65F,Yes,3F,Night -1h,70000-79999,60000-79999,60000-99999,4000+,3,4000+,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,3 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,100-120%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Premium,Yes,Heated Basement,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +19,7A,Hour18,"G5500670, G55000600",No,None,Not in a census Place,"WI, Langlade County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"WI, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,75,MROEc,No,Hour6,None,WI,East North Central,East North Central,Midwest,100% CFL,CR02,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,None,72F,None,None,No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,55F,Yes,6F,Night +1h,Not Available,Not Available,Not Available,750-999,4,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",None,None,<8,Brick,None,None,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11",0,Not Available,Not Available,Yes,Gas,Standard,Gas,318 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +20,7A,Hour5,"G2701190, G27000100",No,None,In another census Place,"MN, Polk County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MN, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour17,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Slab,Central AC,72F,None,"AC, SEER 10",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,12F,Night,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,25 ACH50,None,None,None,None,"Finished, R-7",Uninsulated,"Wood Stud, R-15",1,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 21.9,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Living Space,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain" +21,7A,Hour3,"G2700050, G27000200",No,None,In another census Place,"MN, Becker County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MN, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour7,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Central AC,67F,None,"AC, SEER 10",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,70000-79999,60000-79999,60000-99999,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Aluminum, Light",100% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7",2,120-150%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +22,7A,Hour3,"G3800170, G38000500",No,None,"ND, Fargo","ND, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"ND, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",37,MROWc,No,Hour13,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night -3h,200000+,140000+,150000+,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,15 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Perimeter, Vertical","Wood Stud, R-19",1,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +23,7AK,Hour0,"G0200200, G02000102",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"AK, 00102",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",None,None,No,Hour18,None,AK,Pacific,Pacific,West,100% CFL,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Unvented Crawlspace,None,72F,None,None,Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +4h,100000-119999,100000-119999,100000-149999,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",4,100-120%,400%+,Yes,Electric,EnergyStar,Gas,290 Rated kWh,No,None,"EF 12, National Average",Electricity,None,None,None,EF 19.9,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +24,7B,Hour16,"G0801170, G08000400",No,None,Not in a census Place,"CO, Summit County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.5,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"CO, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,33,RMPAc,No,Hour10,None,CO,Mountain,Mountain North,West,100% LED,CR05,91%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Slab,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,3000-3999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,5 ACH50,R-38,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +25,7A,Hour21,"G2601530, G26000200",No,None,Not in a census Place,"MI, Schoolcraft County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MI, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,103,RFCMc,No,Hour19,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Vacant,None,No,None,None,None,Not Available,1980s,Propane,Ducted Heating,1980-99,Ambient,Central AC,78F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",Attic,"20% Leakage to Outside, R-4",<8,Brick,None,100% Conditioned,20 ACH50,R-38,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-11",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,Composition Shingles,Propane,Propane Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +26,7AK,Hour18,"G0201220, G02000200",Yes,None,In another census Place,"AK, Kenai Peninsula Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",West,None,"AK, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour16,None,AK,Pacific,Pacific,West,100% CFL,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Non-Ducted Heating,1980-99,Vented Crawlspace,None,76F,None,None,No,"Fuel Wall/Floor Furnace, 60% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,3,2500-3999,3,None,None,None,Single-Family Detached,3,None,2 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage",None,None,<8,Steel Frame,"Wood, Medium/Dark",None,10 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, R-19",4,80-100%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Garage,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +27,7A,Hour3,"G3800170, G38000500",No,None,In another census Place,"ND, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"ND, 00500",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",37,MROWc,No,Hour16,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Room AC,72F,None,"Room AC, EER 9.8",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,4000+,4,4000+,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",20% Conditioned,4 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",4,100-120%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +28,7A,Hour16,"G2300030, G23000100",No,None,Not in a census Place,"ME, Aroostook County",Non-CBSA New England,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",East,None,"ME, 00100",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +1h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,134,NEWEc,No,Hour18,None,ME,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Fuel Oil,Ducted Heating,<1940,Heated Basement,Room AC,75F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,67F,No,0F,None,80000-99999,80000-99999,60000-99999,750-999,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",60% Conditioned,30 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Electric,EnergyStar,Propane,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Metal, Air" +29,7A,Hour10,"G5501290, G55000100",No,None,Not in a census Place,"WI, Washburn County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setup +2h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour17,None,WI,East North Central,East North Central,Midwest,100% CFL,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,<1940,Propane,Ducted Heating,<1940,Unheated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,Yes,3F,Night -4h,Not Available,Not Available,Not Available,500-749,2,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,Not Available,EF 19.9,None,None,None,None,None,EF 15.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Single, Clear, Non-metal" +30,7A,Hour23,"G2700010, G27000300",No,None,Not in a census Place,"MN, Aitkin County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MN, 00300",Single-Family Detached,None,None,Single-Family Detached,Yes,9F,Night Setback,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour14,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,None,No,None,None,None,Not Available,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,Yes,6F,Night +4h,Not Available,Not Available,Not Available,750-999,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",0,Not Available,Not Available,Yes,Electric,EnergyStar,Electric Resistance,None,Not Available,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +31,7A,Hour15,"G5500850, G55000600",No,None,Not in a census Place,"WI, Oneida County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"WI, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,75,MROEc,No,Hour20,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,Yes,3F,Night +5h,Not Available,Not Available,Not Available,1500-1999,2,1500-2499,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-7",None,"Wood Stud, R-19",0,Not Available,Not Available,Yes,Electric,Standard,Gas,318 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +32,7B,Hour19,"G0801070, G08000200",No,None,In another census Place,"CO, Routt County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",East,None,"CO, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,33,RMPAc,No,Hour11,None,CO,Mountain,Mountain North,West,100% LED,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Renter,1970s,Natural Gas,Non-Ducted Heating,1960-79,Heated Basement,Room AC,70F,None,"Room AC, EER 12.0",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,68F,No,0F,None,60000-69999,60000-79999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",20% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, R-7",4,80-100%,200-300%,Yes,Electric,Standard,Electric Resistance,None,No,EF 17.6,None,None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Premium,Yes,Heated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +33,7A,Hour19,"G2700270, G27000100",No,None,"MN, Moorhead","MN, Clay County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour17,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +2h,120000-139999,120000-139999,100000-149999,2000-2499,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,5 ACH50,R-38,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 21.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Garage,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +34,7AK,Hour9,"G0201100, G02000300",No,None,In another census Place,"AK, Juneau City and Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"AK, 00300",3 or 4 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,7,Not/partially in metro area,None,None,None,Hour10,None,AK,Pacific,Pacific,West,100% CFL,CRAK,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2000s,Fuel Oil,Non-Ducted Heating,2000-09,Slab,Central AC,76F,Cooling Only,Shared Cooling,No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,Fan Coil Cooling Only,None,None,None,None,70F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,1,0-1499,2,Top,4,Right,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-38","2ft R10 Perimeter, Vertical","Wood Stud, R-19",1,80-100%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Tile, Concrete",Fuel Oil,Fuel Oil Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +35,7B,Hour6,"G0801050, G08000800",No,None,In another census Place,"CO, Rio Grande County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.5,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"CO, 00800",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,34,RMPAc,No,Hour8,None,CO,Mountain,Mountain North,West,100% CFL,CR05,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Ambient,Central AC,70F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,10000-14999,<20000,<20000,1000-1499,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Steel Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,Uninsulated,None,None,"Finished, R-38",None,"Wood Stud, R-7",3,0-30%,0-100%,Yes,Electric,Standard,Gas,None,No,None,None,None,None,None,None,EF 17.6,"Metal, Dark",Natural Gas,Natural Gas Premium,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +36,7A,Hour13,"G2600710, G26000100",No,None,Not in a census Place,"MI, Iron County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"MI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,74,MROEc,No,Hour18,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,3,2500-3999,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,60% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated",2,150%+,400%+,Yes,None,Standard,Gas,None,No,EF 15.9,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +37,7B,Hour5,"G5600230, G56000100",No,None,In another census Place,"WY, Lincoln County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"WY, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,21,NWPPc,No,Hour12,None,WY,Mountain,Mountain North,West,100% CFL,CR05,91%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Electricity,Ducted Heating,1980-99,Heated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +38,7A,Hour18,"G2600330, G26000200",No,None,In another census Place,"MI, Chippewa County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MI, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,103,RFCMc,No,Hour11,None,MI,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Propane,Ducted Heating,2000-09,Slab,Central AC,72F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"10% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,7 ACH50,R-49,None,None,None,"Unfinished, Uninsulated","2ft R5 Perimeter, Vertical","Wood Stud, R-11",2,150%+,400%+,Yes,Propane,EnergyStar,Propane,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Propane,Propane Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Metal, Air" +39,7A,Hour18,"G2300030, G23000100",No,None,Not in a census Place,"ME, Aroostook County",Non-CBSA New England,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northwest,None,"ME, 00100",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setup +5h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,134,NEWEc,No,Hour12,None,ME,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1970s,Fuel Oil,Non-Ducted Heating,1960-79,Heated Basement,Room AC,76F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,70F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",None,None,<8,Concrete,"Vinyl, Light",20% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, R-7",2,100-120%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +40,7A,Hour18,"G5501130, G55000100",No,None,Not in a census Place,"WI, Sawyer County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour9,None,WI,East North Central,East North Central,Midwest,100% LED,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Central AC,78F,None,"AC, SEER 15",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Aluminum, Light",100% Conditioned,10 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",6,100-120%,200-300%,Yes,Electric,EnergyStar,Electric Resistance,None,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Single, Clear, Non-metal" +41,7A,Hour20,"G2700950, G27000600",No,None,Not in a census Place,"MN, Mille Lacs County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour18,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1990s,Natural Gas,Ducted Heating,1980-99,Slab,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,Yes,6F,Night +1h,Not Available,Not Available,Not Available,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",60% Conditioned,15 ACH50,R-49,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,Not Available,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Metal, Air" +42,7AK,Hour21,"G0201700, G02000200",Yes,None,In another census Place,"AK, Matanuska-Susitna Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"AK, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour14,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,None,70F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,6F,Night +5h,100000-119999,100000-119999,100000-149999,3000-3999,3,2500-3999,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"10% Leakage to Outside, R-8",<8,Steel Frame,"Stucco, Light",None,5 ACH50,None,None,None,None,"Finished, R-19","2ft R10 Perimeter, Vertical","Wood Stud, R-19",2,120-150%,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +43,7B,Hour22,"G0800510, G08000900",No,None,Not in a census Place,"CO, Gunnison County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,2,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"CO, 00900",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,34,RMPAc,No,Hour11,None,CO,Mountain,Mountain North,West,100% Incandescent,CR05,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1990s,Propane,Ducted Heating,1980-99,Ambient,Room AC,70F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,10 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,Standard,Propane,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +44,7AK,Hour0,"G0200200, G02000102",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"AK, 00102",Single-Family Attached,8,Middle,Single-Family Attached,No,0F,None,Not Applicable,12,"In metro area, principal city",None,None,No,Hour12,None,AK,Pacific,Pacific,West,100% Incandescent,CRAK,96%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Heated Basement,None,72F,None,None,Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +5h,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,2,None,None,None,Single-Family Attached,2,None,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,15 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-19",None,"Wood Stud, R-19",2,100-120%,400%+,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F6 B6 L6 R6,"Double, Clear, Non-metal, Air" +45,7A,Hour16,"G5500510, G55000100",No,None,Not in a census Place,"WI, Iron County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +4h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour17,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,1960s,Natural Gas,Ducted Heating,1960-79,Heated Basement,Central AC,70F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,<10000,<20000,<20000,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",80% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",1,0-30%,0-100%,Yes,Electric,EnergyStar,Gas,None,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain" +46,7A,Hour15,"G5500850, G55000600",No,None,Not in a census Place,"WI, Oneida County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"WI, 00600",Mobile Home,None,None,Mobile Home,Yes,5F,Night Setback +1h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,75,MROEc,No,Hour3,None,WI,East North Central,East North Central,Midwest,100% LED,CR02,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1970s,Natural Gas,Ducted Heating,1960-79,Ambient,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,500-749,2,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,None,Uninsulated,None,None,"Finished, R-19",None,"Wood Stud, R-7",0,Not Available,Not Available,Yes,Electric,EnergyStar,Electric Resistance,None,Not Available,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +47,7A,Hour19,"G3800170, G38000500",No,None,"ND, Fargo","ND, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"ND, 00500",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, not/partially in principal city",37,MROWc,None,Hour16,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,86%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Renter,2000s,Electricity,Ducted Heating,2000-09,Slab,Central AC,60F,Cooling Only,Shared Cooling,Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,Fan Coil Cooling Only,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,1,0-1499,20,Middle,326,Middle,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",8+,Steel Frame,"Aluminum, Light",100% Conditioned,10 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Wood Stud, R-19",1,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Premium,No,None,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain" +48,7B,Hour17,"G0800970, G08000400",No,None,In another census Place,"CO, Pitkin County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,2.3,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"CO, 00400",Single-Family Attached,12,Middle,Single-Family Attached,No,0F,None,Not Applicable,12,Not/partially in metro area,33,RMPAc,No,Hour13,None,CO,Mountain,Mountain North,West,100% CFL,CR05,79%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1990s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,1000-1499,2,0-1499,2,None,None,None,Single-Family Attached,2,None,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-19",None,"Wood Stud, R-11",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +49,7A,Hour5,"G3800550, G38000100",No,None,In another census Place,"ND, McLean County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"ND, 00100",Mobile Home,None,None,Mobile Home,Yes,2F,Night Setback +3h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour16,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,84%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2010s,Electricity,Ducted Heating,2010s,Ambient,Central AC,75F,None,"AC, SEER 15",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,65F,No,0F,None,140000-159999,140000+,150000+,2000-2499,4,1500-2499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",100% Conditioned,5 ACH50,None,Ceiling R-30,None,None,"Finished, R-30",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +50,7A,Hour3,"G5500030, G55000100",No,None,In another census Place,"WI, Ashland County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour18,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1970s,Propane,Ducted Heating,1960-79,Heated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,Yes,6F,Night -4h,Not Available,Not Available,Not Available,750-999,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,25 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",0,Not Available,Not Available,Yes,Propane,EnergyStar,Electric Resistance,290 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Single, Clear, Non-metal" +51,7A,Hour19,"G3800170, G38000500",No,None,"ND, Fargo","ND, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"ND, 00500",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -5h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",37,MROWc,No,Hour16,None,ND,West North Central,West North Central,Midwest,100% LED,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,5,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",100% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",5,80-100%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +52,7A,Hour19,"G3801010, G38000100",No,None,"ND, Minot","ND, Ward County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"ND, 00100",20 to 49 Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,Not/partially in metro area,37,MROWc,None,Hour11,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,86%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Renter,2010s,Electricity,Non-Ducted Heating,2010s,Slab,Room AC,68F,None,"Room AC, EER 10.7",No,"Electric Baseboard, 100% Efficiency",Yes,Electricity Baseboard,None,None,None,None,None,72F,No,0F,None,35000-39999,20000-39999,20000-39999,1000-1499,2,0-1499,3,Top,24,Middle,"Multifamily with 5+ units, 1-3 stories",3,None,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",20% Conditioned,15 ACH50,None,None,None,None,"Finished, R-38","2ft R10 Perimeter, Vertical","Wood Stud, R-19",1,30-60%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +53,7B,Hour22,"G0800930, G08000600",No,None,Not in a census Place,"CO, Park County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,2,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"CO, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,33,RMPAc,No,Hour11,None,CO,Mountain,Mountain North,West,100% CFL,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,None,68F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,10 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",3,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +54,7A,Hour5,"G2700350, G27000700",No,None,In another census Place,"MN, Crow Wing County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MN, 00700",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour18,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,84%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Propane,Ducted Heating,1980-99,Ambient,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,No,0F,None,45000-49999,40000-59999,40000-59999,1000-1499,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,Uninsulated,None,None,"Finished, Uninsulated",None,"Wood Stud, R-19",3,60-80%,200-300%,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 15.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +55,7A,Hour2,"G2700350, G27000700",No,None,Not in a census Place,"MN, Crow Wing County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 00700",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -1h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour4,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1990s,Natural Gas,Ducted Heating,1980-99,Slab,Room AC,75F,None,"Room AC, EER 9.8",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,750-999,2,0-1499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",Garage,"10% Leakage to Outside, R-4",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,None,None,None,None,"Finished, R-19","2ft R10 Under, Horizontal","Wood Stud, R-15",0,Not Available,Not Available,Yes,Gas,Standard,Gas,318 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +56,7AK,Hour0,"G0201700, G02000200",Yes,None,In another census Place,"AK, Matanuska-Susitna Borough",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"AK, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour16,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1980s,Natural Gas,Non-Ducted Heating,1980-99,Slab,None,70F,None,None,No,"Fuel Wall/Floor Furnace, 60% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,2500-2999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,2 Car,"Single-Family Detached, Slab, Finished Attic, 2 Car Garage",None,None,<8,Brick,None,None,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Brick, 12-in, 3-wythe, R-19",0,Not Available,Not Available,Yes,Electric,EnergyStar,Gas,318 Rated kWh,Not Available,EF 17.6,None,None,None,None,None,EF 15.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Garage,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +57,7A,Hour2,"G3800170, G38000500",No,None,In another census Place,"ND, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"ND, 00500",20 to 49 Unit,None,None,Multi-Family with 5+ Units,Yes,5F,Night Setback +5h,Double-Loaded Interior,7,"In metro area, not/partially in principal city",37,MROWc,None,Hour18,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,86%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2010s,Electricity,Ducted Heating,2010s,Unheated Basement,Central AC,60F,None,"AC, SEER 13",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,70F,Yes,12F,Night +5h,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,2,Top,20,Right,"Multifamily with 5+ units, 1-3 stories",2,None,None,"Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",100% Conditioned,10 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-19",3,60-80%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +58,7A,Hour6,"G2700070, G27000200",No,None,In another census Place,"MN, Beltrami County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"MN, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour7,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1970s,Propane,Ducted Heating,1960-79,Slab,Central AC,60F,None,"AC, SEER 15",Yes,"Fuel Furnace, 76% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",Garage,"10% Leakage to Outside, R-4",<8,Wood Frame,"Stucco, Light",80% Conditioned,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +59,7A,Hour1,"G3800030, G38000200",No,None,In another census Place,"ND, Barnes County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.5,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"ND, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour18,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Electricity,Ducted Heating,1960-79,Unheated Basement,Central AC,70F,None,"AC, SEER 15",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,72F,Yes,6F,Night -5h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Aluminum, Light",100% Conditioned,15 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Premium,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +60,7B,Hour14,"G0801170, G08000400",No,None,In another census Place,"CO, Summit County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"CO, 00400",10 to 19 Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,27,Not/partially in metro area,33,RMPAc,None,Hour7,None,CO,Mountain,Mountain North,West,100% Incandescent,CR05,105%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Renter,1970s,Natural Gas,Ducted Heating,1960-79,Slab,None,68F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,60000-69999,60000-79999,60000-99999,750-999,2,0-1499,2,Bottom,16,Left,"Multifamily with 5+ units, 1-3 stories",2,None,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",None,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-7",2,80-100%,300-400%,None,None,None,Electric Resistance,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F30 B30 L30 R30,"Single, Clear, Non-metal" +61,7A,Hour9,"G3801010, G38000100",No,None,"ND, Minot","ND, Ward County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"ND, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour11,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +1h,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",100% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-11",1,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,EF 17.6,"EF 12, National Average",Electricity,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Clear, Metal, Air" +62,7A,Hour18,"G2701370, G27000400",No,None,Not in a census Place,"MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour19,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,70F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Asbestos, Medium",40% Conditioned,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",0,Not Available,Not Available,Yes,Gas,Standard,Gas,318 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Tankless,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Clear, Metal, Air" +63,7A,Hour6,"G3800710, G38000200",No,None,In another census Place,"ND, Ramsey County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"ND, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour15,None,ND,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Propane,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +3h,80000-99999,80000-99999,60000-99999,750-999,2,0-1499,1,None,None,None,Single-Family Detached,1,Unvented Attic,None,"Single-Family Detached, Unheated Basement, Unvented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Aluminum, Light",60% Conditioned,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +64,7A,Hour20,"G2700710, G27000400",No,None,Not in a census Place,"MN, Koochiching County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MN, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour6,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,60F,Yes,6F,Night -3h,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",Electricity,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +65,7A,Hour2,"G3801050, G38000100",No,None,In another census Place,"ND, Williams County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"ND, 00100",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -4h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,36,MROWc,No,Hour19,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Shingle, Composition, Medium",80% Conditioned,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +66,7A,Hour4,"G5500690, G55000600",No,None,Not in a census Place,"WI, Lincoln County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"WI, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,75,MROEc,No,Hour19,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,80000-99999,80000-99999,60000-99999,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",80% Conditioned,10 ACH50,None,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Finished, R-30",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,Has Pool,None,1.0 HP Pump,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Triple, Low-E, Non-metal, Air, L-Gain" +67,7A,Hour20,"G5501250, G55000600",No,None,Not in a census Place,"WI, Vilas County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"WI, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,75,MROEc,No,Hour13,None,WI,East North Central,East North Central,Midwest,100% CFL,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Ambient,Central AC,65F,None,"AC, SEER 15",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,50000-59999,40000-59999,40000-59999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,20 ACH50,R-19,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,100-120%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F18 B18 L18 R18,"Single, Clear, Non-metal" +68,7A,Hour6,"G2701370, G27000400",No,None,Not in a census Place,"MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"MN, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour23,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1990s,Propane,Ducted Heating,1980-99,Unvented Crawlspace,Central AC,78F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unvented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",60% Conditioned,7 ACH50,R-38,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",4,120-150%,300-400%,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 15.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +69,7AK,Hour6,"G0200200, G02000101",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"AK, 00101",3 or 4 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,7,"In metro area, principal city",None,None,None,Hour14,None,AK,Pacific,Pacific,West,100% LED,CRAK,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,1970s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,65F,Heating and Cooling,Shared Cooling,No,Shared Heating,No,Natural Gas Shared Heating,"Fan Coil Heating and Cooling, Fuel",None,None,None,None,70F,Yes,3F,Night +5h,60000-69999,60000-79999,60000-99999,1000-1499,2,0-1499,2,Bottom,4,Right,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Bottom Unit, Slab, No Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-11",1,80-100%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Tankless,Yes,Living Space,F12 B12 L12 R12,"Single, Clear, Non-metal" +70,7A,Hour22,"G2700310, G27000400",No,None,Not in a census Place,"MN, Cook County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MN, 00400",Mobile Home,None,None,Mobile Home,Yes,5F,Night Setback -4h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour17,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,84%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1970s,Propane,Ducted Heating,1960-79,Ambient,Room AC,70F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,No,0F,None,<10000,<20000,<20000,750-999,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,None,Uninsulated,None,None,"Finished, R-13",None,"Wood Stud, R-11",2,0-30%,0-100%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +71,7A,Hour23,"G2701370, G27000400",No,None,In another census Place,"MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MN, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour18,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Propane,Ducted Heating,1960-79,Slab,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,65F,No,0F,None,100000-119999,100000-119999,100000-149999,3000-3999,4,2500-3999,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"10% Leakage to Outside, R-4",<8,Wood Frame,"Aluminum, Light",60% Conditioned,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-15",4,150%+,300-400%,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Premium,Yes,Garage,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +72,7AK,Hour1,"G0200200, G02000102",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"AK, 00102",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",None,None,No,Hour16,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Non-Ducted Heating,1960-79,Heated Basement,None,65F,None,None,No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,70F,Yes,6F,Night +3h,200000+,140000+,150000+,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",None,None,<8,Brick,None,None,10 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, R-11",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,EF 15.9,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Single, Clear, Non-metal" +73,7A,Hour2,"G2701150, G27000600",No,None,Not in a census Place,"MN, Pine County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MN, 00600",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour15,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,84%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Propane,Ducted Heating,1980-99,Ambient,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 76% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night +4h,60000-69999,60000-79999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,Ceiling R-19,None,None,"Finished, R-7",None,"Wood Stud, R-19",3,80-100%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +74,7A,Hour15,"G2600610, G26000100",No,None,Not in a census Place,"MI, Houghton County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,74,MROEc,No,Hour10,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,30 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",3,80-100%,200-300%,Yes,Gas,EnergyStar,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Metal, Air" +75,7A,Hour2,"G3800930, G38000200",No,None,In another census Place,"ND, Stutsman County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"ND, 00200",Mobile Home,None,None,Mobile Home,Yes,5F,Night Setback +4h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,37,MROWc,No,Hour12,None,ND,West North Central,West North Central,Midwest,100% CFL,CR02,84%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Propane,Ducted Heating,1960-79,Ambient,Room AC,75F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,No,0F,None,60000-69999,60000-79999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",20% Conditioned,15 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Wood Stud, R-7",2,80-100%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Electricity,Electric Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +76,7A,Hour20,"G5500410, G55000600",No,None,Not in a census Place,"WI, Forest County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"WI, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,75,MROEc,No,Hour18,None,WI,East North Central,East North Central,Midwest,100% CFL,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,None,No,None,None,None,Not Available,1990s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,500-749,3,0-1499,1,None,None,None,Single-Family Detached,1,Unvented Attic,1 Car,"Single-Family Detached, Heated Basement, Unvented Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,Not Available,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Electricity,Electric Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +77,7A,Hour3,"G2701370, G27000500",No,None,"MN, Duluth","MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"MN, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",43,MROWc,No,Hour15,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,65F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,Yes,3F,Night -2h,60000-69999,60000-79999,60000-99999,1000-1499,2,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",20% Conditioned,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,120-150%,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 6.7,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +78,7A,Hour11,"G2600530, G26000100",No,None,In another census Place,"MI, Gogebic County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"MI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,74,MROEc,No,Hour18,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Room AC,70F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,750-999,1,0-1499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Brick,None,20% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Metal, Air" +79,7A,Hour2,"G3800170, G38000500",No,None,"ND, Fargo","ND, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"ND, 00500",Single-Family Attached,16,Middle,Single-Family Attached,No,0F,None,Not Applicable,12,"In metro area, not/partially in principal city",37,MROWc,No,Hour7,None,ND,West North Central,West North Central,Midwest,100% Incandescent,CR02,113%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +5h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Attached,2,Unvented Attic,None,"Single-Family Attached, Heated Basement, Unvented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,R-30,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +80,7A,Hour23,"G2700750, G27000400",No,None,Not in a census Place,"MN, Lake County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MN, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour19,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1980s,Propane,Ducted Heating,1980-99,Slab,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,0-499,1,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"30% Leakage to Outside, R-4",<8,Wood Frame,"Stucco, Light",100% Conditioned,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-19",0,Not Available,Not Available,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +81,7B,Hour4,"G5600390, G56000100",No,None,In another census Place,"WY, Teton County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"WY, 00100",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,21,NWPPc,No,Hour20,None,WY,Mountain,Mountain North,West,100% Incandescent,CR05,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Ambient,None,68F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",None,10 ACH50,None,Uninsulated,None,None,"Finished, R-19",None,"Wood Stud, R-7",1,80-100%,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +82,7AK,Hour3,"G0200200, G02000102",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",Southwest,None,"AK, 00102",3 or 4 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",None,None,None,Hour12,None,AK,Pacific,Pacific,West,100% CFL,CRAK,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,1980s,Natural Gas,Ducted Heating,1980-99,Slab,Central AC,65F,Cooling Only,Shared Cooling,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,Fan Coil Cooling Only,None,None,None,None,70F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,2,0-1499,2,Top,4,Right,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Top Unit, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-19",2,60-80%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,No,None,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +83,7A,Hour1,"G2300030, G23000100",No,None,In another census Place,"ME, Aroostook County",Non-CBSA New England,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"ME, 00100",Mobile Home,None,None,Mobile Home,Yes,2F,Night Setback -5h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,134,NEWEc,No,Hour12,None,ME,New England,New England,Northeast,100% LED,CR03,137%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1990s,Fuel Oil,Non-Ducted Heating,1980-99,Ambient,None,72F,None,None,No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,70F,No,0F,None,50000-59999,40000-59999,40000-59999,1500-1999,2,1500-2499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",None,None,<8,Concrete,"Wood, Medium/Dark",None,6 ACH50,None,Uninsulated,None,None,"Finished, R-19",None,"CMU, 6-in Hollow, R-11",2,80-100%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Tankless,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +84,7A,Hour21,"G2700050, G27000200",No,None,Not in a census Place,"MN, Becker County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MN, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour14,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Propane,Ducted Heating,2000-09,Heated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night -5h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,6 ACH50,R-49,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",1,150%+,400%+,Yes,Electric,Standard,Propane,290 Rated kWh,No,EF 15.9,None,None,Has Pool,None,1.0 HP Pump,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +85,7A,Hour23,"G2700610, G27000300",No,None,Not in a census Place,"MN, Itasca County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MN, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour8,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1970s,Propane,Ducted Heating,1960-79,Heated Basement,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,750-999,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",0,Not Available,Not Available,Yes,Electric,EnergyStar,Propane,290 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Propane,Propane Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +86,7A,Hour16,"G2701370, G27000500",No,None,"MN, Duluth","MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.5,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"MN, 00500",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",43,MROWc,No,Hour15,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,None,72F,None,None,No,"Fuel Wall/Floor Furnace, 60% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,68F,Yes,6F,Night,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,1 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage",None,None,<8,Wood Frame,"Vinyl, Light",None,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +87,7A,Hour2,"G2701370, G27000400",No,None,In another census Place,"MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,Gas Lighting,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"MN, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour15,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,2000s,Propane,Ducted Heating,2000-09,Unvented Crawlspace,Room AC,70F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,65F,Yes,3F,Night -2h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"10% Leakage to Outside, R-6",<8,Wood Frame,"Vinyl, Light",20% Conditioned,10 ACH50,R-49,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",5,100-120%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Propane,Propane Premium,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +88,7A,Hour5,"G2700610, G27000300",No,None,In another census Place,"MN, Itasca County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northwest,None,"MN, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour6,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,75F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,65F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,4,0-1499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",2,80-100%,300-400%,Yes,Electric,Standard,Gas,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 15.9,Slate,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F6 B6 L6 R6,"Single, Clear, Metal" +89,7A,Hour21,"G5500130, G55000100",No,None,Not in a census Place,"WI, Burnett County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour6,None,WI,East North Central,East North Central,Midwest,100% CFL,CR02,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Vacant,"Standard Efficiency, No usage",No,None,None,None,Not Available,1990s,Propane,Ducted Heating,1980-99,Unheated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,55F,Yes,6F,Night +3h,Not Available,Not Available,Not Available,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,8 ACH50,R-49,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",0,Not Available,Not Available,Yes,Electric,Standard,Electric Resistance,None,Not Available,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Propane,Propane Tankless,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +90,7A,Hour2,"G5500310, G55000100",No,None,Not in a census Place,"WI, Douglas County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"WI, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,46,MROWc,No,Hour18,None,WI,East North Central,East North Central,Midwest,100% LED,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,None,No,None,None,None,Not Available,1950s,Natural Gas,Ducted Heating,1940-59,Slab,Central AC,70F,None,"AC, SEER 10",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,55F,No,0F,None,Not Available,Not Available,Not Available,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",Attic,"10% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,R-49,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",0,Not Available,Not Available,Yes,Electric,Standard,Gas,None,Not Available,None,None,None,None,None,None,EF 19.9,Wood Shingles,Electricity,Electric Premium,Yes,Living Space,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +91,7AK,Hour18,"G0202610, G02000300",No,None,In another census Place,"AK, Valdez-Cordova Census Area",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",North,None,"AK, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,None,None,No,Hour18,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Fuel Oil,Non-Ducted Heating,1960-79,Vented Crawlspace,None,72F,None,None,No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,68F,Yes,3F,Night +1h,80000-99999,80000-99999,60000-99999,1000-1499,4,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",None,None,<8,Concrete,None,None,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"CMU, 6-in Hollow, R-11",4,80-100%,300-400%,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Premium,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +92,7A,Hour22,"G2600970, G26000200",No,None,Not in a census Place,"MI, Mackinac County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MI, 00200",Mobile Home,None,None,Mobile Home,Yes,2F,Night Setback +5h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,103,RFCMc,No,Hour7,None,MI,East North Central,East North Central,Midwest,100% Incandescent,CR04,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Ambient,Central AC,68F,None,"AC, SEER 8",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,<10000,<20000,<20000,500-749,2,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,None,None,"Finished, R-19",None,"Wood Stud, R-7",1,0-30%,0-100%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,"EF 12, National Average",None,Has Pool,Other Fuel,1.0 HP Pump,EF 17.6,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +93,7A,Hour23,"G2700650, G27000600",No,None,Not in a census Place,"MN, Kanabec County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MN, 00600",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -3h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour12,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Vented Crawlspace,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 1 Car Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,10 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",2,120-150%,400%+,Yes,Gas,EnergyStar,Electric Resistance,318 Rated kWh,No,EF 19.9,"EF 12, National Average",None,Has Pool,Other Fuel,1.0 HP Pump,EF 15.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +94,7A,Hour6,"G2700210, G27000300",No,None,Not in a census Place,"MN, Cass County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 00300",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour19,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,84%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1970s,Propane,Non-Ducted Heating,1960-79,Ambient,Room AC,72F,None,"Room AC, EER 12.0",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Propane Fuel Wall/Floor Furnace,None,None,None,None,None,65F,Yes,3F,Night +3h,30000-34999,20000-39999,20000-39999,750-999,3,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",None,None,<8,Wood Frame,"Aluminum, Light",20% Conditioned,15 ACH50,None,Uninsulated,None,None,"Finished, R-30",None,"Wood Stud, R-15",1,60-80%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +95,7AK,Hour4,"G0200200, G02000101",No,None,"AK, Anchorage","AK, Anchorage Municipality",Non-CBSA Pacific,7AK,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"AK, 00101",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",None,None,No,Hour22,None,AK,Pacific,Pacific,West,100% LED,CRAK,94%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Heated Basement,None,75F,None,None,Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,No,0F,None,200000+,140000+,150000+,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,10 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +96,7A,Hour4,"G5501190, G55000100",No,None,Not in a census Place,"WI, Taylor County",Non-CBSA East North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"WI, 00100",2 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,7,Not/partially in metro area,46,MROWc,None,Hour12,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,96%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,60F,Heating Only,"AC, SEER 13",Yes,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,70F,No,0F,None,15000-19999,<20000,<20000,1000-1499,3,0-1499,2,Top,2,Not Applicable,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Top Unit, Unheated Basement, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated",3,0-30%,0-100%,Yes,Gas,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,No,None,F9 B9 L9 R9,"Single, Clear, Non-metal" +97,7A,Hour8,"G2701350, G27000100",No,None,Not in a census Place,"MN, Roseau County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"MN, 00100",Mobile Home,None,None,Mobile Home,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,42,MROWc,No,Hour14,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,84%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1970s,Propane,Ducted Heating,1960-79,Ambient,Room AC,65F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 92.5% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,65F,No,0F,None,10000-14999,<20000,<20000,1000-1499,2,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",40% Conditioned,10 ACH50,None,Uninsulated,None,None,"Finished, R-38",None,"Wood Stud, R-11",1,0-30%,100-150%,Yes,Electric,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Metal, Dark",Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +98,7A,Hour9,"G2701370, G27000500",No,None,"MN, Duluth","MN, St. Louis County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MN, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",43,MROWc,No,Hour21,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Non-Ducted Heating,1940-59,Heated Basement,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Boiler, 76% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,750-999,2,0-1499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Heated Basement, No Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, R-15",3,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +99,7A,Hour22,"G2700570, G27000200",No,None,Not in a census Place,"MN, Hubbard County",Non-CBSA West North Central,7A,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 00200",Mobile Home,None,None,Mobile Home,Yes,2F,Night Setback +2h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,43,MROWc,No,Hour1,None,MN,West North Central,West North Central,Midwest,100% LED,CR02,84%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1990s,Propane,Ducted Heating,1980-99,Ambient,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Propane Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +5h,10000-14999,<20000,<20000,750-999,2,0-1499,1,None,None,None,Mobile Home,1,None,None,"Mobile Home, Ambient, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,None,Ceiling R-19,None,None,"Finished, R-13",None,"Wood Stud, R-19",2,0-30%,0-100%,Yes,Electric,Standard,Propane,None,No,None,None,None,None,None,None,EF 17.6,"Metal, Dark",Electricity,Electric Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +100,7B,Hour23,"G5600350, G56000500",No,None,Not in a census Place,"WY, Sublette County",Non-CBSA Mountain,7B,Very Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",West,None,"WY, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,21,NWPPc,No,Hour15,None,WY,Mountain,Mountain North,West,100% LED,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Unheated Basement,None,75F,None,None,Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",Unheated Basement,"20% Leakage to Outside, R-6",<8,Wood Frame,"Vinyl, Light",None,15 ACH50,R-38,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,EF 15.9,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +101,4A,Hour22,"G2900950, G29001005",No,None,"MO, Kansas City","MO, Jackson County",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MO, 01005",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",54,SPNOc,No,Hour11,None,MO,West North Central,West North Central,Midwest,100% Incandescent,CR08,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,70F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,Yes,3F,Night -3h,60000-69999,60000-79999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Heated Basement, No Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated",2,80-100%,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +102,4A,Hour20,"G5105100, G51051255",No,None,"VA, Alexandria","VA, Alexandria city","CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"VA, 51255",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",99,SRVCc,None,Hour23,None,VA,South Atlantic,South Atlantic,South,100% Incandescent,CR08,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,1970s,Electricity,Ducted Heating,1960-79,Vented Crawlspace,Central AC,72F,None,"AC, SEER 13",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,750-999,2,0-1499,21,Middle,326,Middle,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",8+,Steel Frame,"Brick, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-7",1,100-120%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F30 B30 L30 R30,"Single, Clear, Non-metal" +103,3A,Hour3,"G4500070, G45000200",No,None,Not in a census Place,"SC, Anderson County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"SC, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",95,SRVCc,No,Hour12,None,SC,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1970s,Electricity,Ducted Heat Pump,1960-79,Vented Crawlspace,Ducted Heat Pump,76F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,72F,Yes,3F,Night +4h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Premium,Yes,Outside,F18 B18 L18 R18,"Single, Clear, Metal" +104,4A,Hour11,"G3600810, G36004110",No,None,"NY, New York","NY, Queens County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"NY, 04110",2 Unit,None,None,Multi-Family with 2 - 4 Units,Yes,2F,Night Setback +5h,Double-Loaded Interior,7,"In metro area, principal city",127,NYSTc,None,Hour8,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,119%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,72F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,500-749,1,0-1499,1,Bottom,2,Right,Multifamily with 2-4 Units,1,None,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",40% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",1,100-120%,400%+,None,None,None,Electric Resistance,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +105,4A,Hour13,"G4201010, G42003204",No,None,"PA, Philadelphia","PA, Philadelphia County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"PA, 03204",Single-Family Attached,10,Middle,Single-Family Attached,No,0F,None,Not Applicable,27,"In metro area, principal city",122,RFCEc,No,Hour19,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,108%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Heated Basement,Room AC,70F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,72F,Yes,6F,Night +4h,<10000,<20000,<20000,1500-1999,2,1500-2499,2,None,None,None,Single-Family Attached,2,None,None,"Single-Family Attached, Heated Basement, No Attic, No Garage",None,None,<8,Brick,None,20% Conditioned,30 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated",1,0-30%,0-100%,Yes,Gas,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Single, Clear, Non-metal" +106,3A,Hour23,"G1301210, G13001005",No,None,"GA, Roswell","GA, Fulton County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"GA, 01005",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour17,None,GA,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Vented Crawlspace,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2000-2499,5,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-19,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +107,4A,Hour21,"G3600470, G36004009",No,None,"NY, New York","NY, Kings County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 04009",2 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",127,NYSTc,None,Hour18,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,119%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,60F,Heating Only,"Room AC, EER 12.0",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,70F,Yes,3F,Night +5h,80000-99999,80000-99999,60000-99999,750-999,2,0-1499,2,Bottom,2,Not Applicable,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",None,None,<8,Brick,None,60% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated",2,100-120%,400%+,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F18 B18 L18 R18,"Single, Clear, Non-metal" +108,3A,Hour23,"G3700570, G37003500",No,None,Not in a census Place,"NC, Davidson County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NC, 03500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",97,SRVCc,No,Hour16,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,78F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,67F,Yes,3F,Night -5h,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Slab, No Attic, 1 Car Garage",Garage,"30% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Garage,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +109,4A,Hour18,"G3400050, G34002002",No,None,Not in a census Place,"NJ, Burlington County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NJ, 02002",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",126,RFCEc,No,Hour17,None,NJ,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Heated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2500-2999,4,2500-3999,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",60% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-7",3,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Metal, Air" +110,4A,Hour5,"G5107000, G51051175",No,None,"VA, Newport News","VA, Newport News city",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"VA, 51175",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",99,SRVCc,No,Hour10,None,VA,South Atlantic,South Atlantic,South,100% CFL,CR08,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,EnergyStar,Gas,290 Rated kWh,No,EF 15.9,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +111,4A,Hour8,"G3600810, G36004112",No,None,"NY, New York","NY, Queens County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 04112",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",127,NYSTc,No,Hour11,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,3F,Night +4h,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",2,100-120%,400%+,Yes,Gas,Standard,Gas,290 Rated kWh,No,None,None,None,Has Pool,None,1.0 HP Pump,EF 19.9,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +112,4A,Hour19,"G4201010, G42003206",No,None,"PA, Philadelphia","PA, Philadelphia County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"PA, 03206",Single-Family Attached,6,Middle,Single-Family Attached,No,0F,None,Not Applicable,27,"In metro area, principal city",122,RFCEc,No,Hour20,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,108%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,72F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 76% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,70F,Yes,3F,Night +5h,200000+,140000+,150000+,1000-1499,2,0-1499,2,None,None,None,Single-Family Attached,2,None,None,"Single-Family Attached, Unheated Basement, No Attic, No Garage",None,None,<8,Brick,None,60% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated",2,150%+,400%+,Yes,Gas,Standard,Gas,None,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F6 B6 L6 R6,"Single, Clear, Non-metal" +113,4A,Hour7,"G5101530, G51051246",No,None,In another census Place,"VA, Prince William County","CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"VA, 51246",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",99,SRVCc,No,Hour11,None,VA,South Atlantic,South Atlantic,South,100% Incandescent,CR08,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"20% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-19","2ft R5 Under, Horizontal","Wood Stud, R-11",2,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Clear, Metal, Air" +114,4A,Hour13,"G4701870, G47002600",No,None,"TN, Franklin","TN, Williamson County",Non-CBSA East South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"TN, 02600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",92,SRTVc,No,Hour17,None,TN,East South Central,East South Central,South,100% Incandescent,CR08,110%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Vented Crawlspace,Central AC,70F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,12F,Night -1h,200000+,140000+,150000+,3000-3999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,3 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage",Crawlspace,"30% Leakage to Outside, R-6",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,5 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Garage,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +115,4A,Hour22,"G3400170, G34000601",No,None,"NJ, Jersey City","NJ, Hudson County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"NJ, 00601",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",126,RFCEc,None,Hour18,None,NJ,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2000s,Electricity,Non-Ducted Heating,2000-09,Vented Crawlspace,Room AC,60F,None,"Room AC, EER 12.0",No,"Electric Wall Furnace, 100% AFUE",No,Electricity Electric Wall Furnace,None,None,None,None,None,75F,No,0F,None,200000+,140000+,150000+,1000-1499,2,0-1499,5,Middle,116,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Brick,None,40% Conditioned,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +116,3A,Hour23,"G1300670, G13003001",No,None,Not in a census Place,"GA, Cobb County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"GA, 03001",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour17,None,GA,South Atlantic,South Atlantic,South,100% CFL,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,100000-119999,100000-119999,100000-149999,2500-2999,3,2500-3999,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +117,4A,Hour19,"G3600050, G36003709",No,None,"NY, New York","NY, Bronx County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,Gas Lighting,None,"Cooling Season, 7 days/wk",West,None,"NY, 03709",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",127,NYSTc,None,Hour18,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Fuel Oil,Non-Ducted Heating,<1940,Unheated Basement,Central AC,70F,Heating Only,"AC, SEER 13",Yes,Shared Heating,No,Fuel Oil Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,75F,Yes,3F,Night +2h,<10000,<20000,<20000,0-499,1,0-1499,5,Middle,67,Right,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated",1,0-30%,0-100%,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Standard,No,None,F9 B9 L9 R9,"Single, Clear, Non-metal" +118,4A,Hour19,"G2101170, G21002400",No,None,In another census Place,"KY, Kenton County",Non-CBSA East South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"KY, 02400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",109,SRTVc,No,Hour14,None,KY,East South Central,East South Central,South,100% CFL,CR08,110%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Slab,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"30% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",60% Conditioned,20 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",4,100-120%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +119,3A,Hour17,"G1301210, G13001006",No,None,"GA, Atlanta","GA, Fulton County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"GA, 01006",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",94,SRSOc,None,Hour17,None,GA,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2000s,Electricity,Ducted Heating,2000-09,Slab,Central AC,70F,None,"AC, SEER 10",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,72F,Yes,3F,Night +5h,80000-99999,80000-99999,60000-99999,750-999,2,0-1499,3,Top,67,Middle,"Multifamily with 5+ units, 1-3 stories",3,None,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" +120,3A,Hour9,"G2800330, G28000100",No,None,In another census Place,"MS, DeSoto County",Non-CBSA East South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MS, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",87,SRMVc,No,Hour13,None,MS,East South Central,East South Central,South,100% CFL,CR09,110%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,70F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,5,2500-3999,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"20% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Attic,F9 B9 L9 R9,"Double, Clear, Metal, Air" +121,3A,Hour0,"G4001090, G40001002",No,None,"OK, Oklahoma City","OK, Oklahoma County",Non-CBSA West South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"OK, 01002",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",50,SPSOc,No,Hour9,None,OK,West South Central,West South Central,South,100% LED,CR09,113%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,70F,None,"AC, SEER 10",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,Yes,3F,Night +3h,80000-99999,80000-99999,60000-99999,2000-2499,5,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +122,3A,Hour1,"G4701570, G47003201",No,None,"TN, Memphis","TN, Shelby County",Non-CBSA East South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",East,None,"TN, 03201",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",92,SRTVc,No,Hour13,None,TN,East South Central,East South Central,South,100% CFL,CR08,110%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Single, Clear, Non-metal" +123,4A,Hour2,"G2002090, G20000500",No,None,"KS, Kansas City","KS, Wyandotte County",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",South,None,"KS, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",53,SPNOc,No,Hour16,None,KS,West North Central,West North Central,Midwest,100% LED,CR08,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,Yes,3F,Night +1h,30000-34999,20000-39999,20000-39999,1000-1499,3,0-1499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",1,30-60%,200-300%,Yes,Electric,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Single, Clear, Non-metal" +124,3A,Hour6,"G4500030, G45001500",No,None,Not in a census Place,"SC, Aiken County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"SC, 01500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",96,SRVCc,No,Hour16,None,SC,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"20% Leakage to Outside, R-8",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,Standard,Electric Induction,318 Rated kWh,No,EF 15.9,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +125,4A,Hour0,"G4200910, G42003106",No,None,Not in a census Place,"PA, Montgomery County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northwest,None,"PA, 03106",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",122,RFCEc,No,Hour9,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Brick, 12-in, 3-wythe, Uninsulated",3,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,Has Pool,Other Fuel,1.0 HP Pump,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +126,4A,Hour1,"G3600610, G36003806",No,None,"NY, New York","NY, New York County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"NY, 03806",50 or more Unit,None,None,Multi-Family with 5+ Units,Yes,2F,Night Setback +1h,Double-Loaded Interior,7,"In metro area, principal city",127,NYSTc,None,Hour20,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Renter,<1940,Natural Gas,Ducted Heating,<1940,Slab,Room AC,68F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,1000-1499,3,0-1499,21,Middle,326,Right,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",None,None,8+,Steel Frame,"Aluminum, Light",100% Conditioned,40 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, Uninsulated",3,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,No,None,F30 B30 L30 R30,"Single, Clear, Metal" +127,3A,Hour8,"G4500830, G45000302",No,None,Not in a census Place,"SC, Spartanburg County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"SC, 00302",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",95,SRVCc,No,Hour17,None,SC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,2,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"10% Leakage to Outside, R-8",<8,Brick,None,100% Conditioned,8 ACH50,R-38,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Brick, 12-in, 3-wythe, R-15",3,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Tankless,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +128,4A,Hour20,"G2400310, G24001004",No,None,"MD, Bethesda","MD, Montgomery County","CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MD, 01004",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",123,RFCEc,No,Hour4,None,MD,South Atlantic,South Atlantic,South,100% LED,CR08,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,3000-3999,3,2500-3999,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",3,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F6 B6 L6 R6,"Single, Clear, Non-metal" +129,4A,Hour3,"G3600610, G36003810",No,None,"NY, New York","NY, New York County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"NY, 03810",50 or more Unit,None,None,Multi-Family with 5+ Units,Yes,2F,Night Setback +2h,Double-Loaded Interior,27,"In metro area, principal city",127,NYSTc,None,Hour16,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,80F,Heating Only,"Room AC, EER 12.0",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,500-749,1,0-1499,4,Middle,67,Right,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",None,None,<8,Brick,None,60% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated",2,150%+,400%+,None,None,None,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F30 B30 L30 R30,"Double, Clear, Metal, Air" +130,4A,Hour23,"G4201010, G42003209",No,None,"PA, Philadelphia","PA, Philadelphia County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"PA, 03209",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,4,"In metro area, principal city",122,RFCEc,None,Hour17,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Electricity,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,75F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Electricity Shared Heating,"Boiler Baseboards Heating Only, Electricity",None,None,None,None,60F,Yes,3F,Night +5h,<10000,<20000,<20000,500-749,1,0-1499,21,Middle,116,Left,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",None,None,8+,Steel Frame,"Aluminum, Light",60% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",1,0-30%,0-100%,None,None,None,Electric Resistance,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F30 B30 L30 R30,"Double, Clear, Metal, Air" +131,4A,Hour17,"G3600610, G36003808",No,None,"NY, New York","NY, New York County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"NY, 03808",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,4,"In metro area, principal city",127,NYSTc,None,Hour18,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Renter,1960s,Natural Gas,Non-Ducted Heating,1960-79,Slab,Room AC,68F,None,"Room AC, EER 12.0",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,500-749,1,0-1499,5,Top,67,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Top Unit, Slab, No Attic, No Garage",None,None,<8,Brick,None,20% Conditioned,25 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated",1,150%+,400%+,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F18 B18 L18 R18,"Double, Clear, Metal, Air" +132,3A,Hour5,"G3701510, G37003600",No,None,Not in a census Place,"NC, Randolph County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",East,None,"NC, 03600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",97,SRVCc,No,Hour7,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Vented Crawlspace,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,68F,No,0F,None,100000-119999,100000-119999,100000-149999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, R-6",<8,Wood Frame,"Vinyl, Light",100% Conditioned,7 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 15.9,"Asphalt Shingles, Medium",Electricity,Electric Premium,Yes,Living Space,F18 B18 L18 R18,"Double, Clear, Metal, Air" +133,3A,Hour11,"G4000270, G40000900",No,None,"OK, Norman","OK, Cleveland County",Non-CBSA West South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"OK, 00900",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",50,SPSOc,No,Hour16,None,OK,West South Central,West South Central,South,100% Incandescent,CR09,113%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,78F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,100000-119999,100000-119999,100000-149999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"20% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +134,4A,Hour16,"G3400290, G34001201",No,None,In another census Place,"NJ, Ocean County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NJ, 01201",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",126,RFCEc,No,Hour16,None,NJ,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,76F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,2,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-30,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",2,100-120%,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +135,3A,Hour1,"G0101170, G01001200",No,None,In another census Place,"AL, Shelby County",Non-CBSA East South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"AL, 01200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",89,SRSOc,No,Hour12,None,AL,East South Central,East South Central,South,100% CFL,CR09,110%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,68F,Yes,3F,Night +2h,200000+,140000+,150000+,4000+,5,4000+,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"10% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,2 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,Has Pool,Electricity,1.0 HP Pump,EF 17.6,"Metal, Dark",Electricity,Electric Standard,Yes,Garage,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +136,4A,Hour19,"G3900610, G39005502",No,None,In another census Place,"OH, Hamilton County",Non-CBSA East North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"OH, 05502",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",114,RFCWc,No,Hour17,None,OH,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night -1h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +137,3A,Hour9,"G1301350, G13004006",No,None,Not in a census Place,"GA, Gwinnett County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"GA, 04006",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour10,None,GA,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Ambient,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night -5h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Unvented Attic,None,"Single-Family Detached, Ambient, Unvented Attic, No Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-19,Uninsulated,None,None,"Unfinished, Uninsulated",None,"Wood Stud, R-11",4,100-120%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,Natural Gas,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Clear, Metal, Air" +138,4A,Hour20,"G3600810, G36004101",No,None,"NY, New York","NY, Queens County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 04101",20 to 49 Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",127,NYSTc,None,Hour10,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,89%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,None,70F,Heating Only,None,No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,70F,Yes,3F,Night -5h,100000-119999,100000-119999,100000-149999,750-999,1,0-1499,3,Bottom,24,Middle,"Multifamily with 5+ units, 1-3 stories",3,None,None,"Multi-Family with 5+ Units Bottom Unit, Unheated Basement, No Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",None,50 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",1,120-150%,400%+,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F18 B18 L18 R18,"Single, Clear, Non-metal" +139,3A,Hour18,"G4001430, G40001202",Yes,None,"OK, Tulsa","OK, Tulsa County",Non-CBSA West South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"OK, 01202",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",51,SPSOc,No,Hour5,None,OK,West South Central,West South Central,South,100% Incandescent,CR09,113%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",80% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",3,120-150%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",Electricity,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +140,3A,Hour1,"G4001090, G40001003",No,None,"OK, Edmond","OK, Oklahoma County",Non-CBSA West South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"OK, 01003",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",50,SPSOc,No,Hour20,None,OK,West South Central,West South Central,South,100% Incandescent,CR09,113%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,76F,None,"AC, SEER 10",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",Attic,"10% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-15",4,150%+,400%+,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 17.6,"Metal, Dark",Natural Gas,Natural Gas Premium,Yes,Garage,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +141,4A,Hour5,"G4201330, G42003601",No,None,Not in a census Place,"PA, York County",Non-CBSA Middle Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"PA, 03601",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup -4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",122,RFCEc,No,Hour4,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Room AC,60F,None,"Room AC, EER 9.8",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,100000-119999,100000-119999,100000-149999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",40% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",3,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,None,No,EF 17.6,None,None,None,None,None,EF 15.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F6 B6 L6 R6,"Double, Clear, Non-metal, Air" +142,4A,Hour23,"G1701190, G17001205",No,None,In another census Place,"IL, Madison County",Non-CBSA East North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"IL, 01205",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",81,SRMWc,No,Hour16,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,3F,Night -2h,80000-99999,80000-99999,60000-99999,1000-1499,1,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,40 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Gas,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Single, Clear, Metal" +143,4A,Hour20,"G5100870, G51051225",No,None,Not in a census Place,"VA, Henrico County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"VA, 51225",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",99,SRVCc,No,Hour8,None,VA,South Atlantic,South Atlantic,South,100% CFL,CR08,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,72F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,200000+,140000+,150000+,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,15 ACH50,R-30,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-15",4,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Tile, Clay or Ceramic",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Single, Clear, Non-metal" +144,4A,Hour4,"G3700010, G37001600",No,None,Not in a census Place,"NC, Alamance County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"NC, 01600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",98,SRVCc,No,Hour11,None,NC,South Atlantic,South Atlantic,South,100% CFL,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,65F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"30% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, R-11",5,120-150%,200-300%,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Metal, Air" +145,3A,Hour6,"G1301170, G13003300",No,None,Not in a census Place,"GA, Forsyth County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"GA, 03300",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour13,None,GA,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Unheated Basement,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,4000+,4,4000+,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",Unheated Basement,"20% Leakage to Outside, R-6",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,4 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Garage,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +146,4A,Hour1,"G1100010, G11000105",No,None,"DC, Washington","DC, District of Columbia","CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,2,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"DC, 00105",50 or more Unit,None,None,Multi-Family with 5+ Units,Yes,2F,Night Setback +4h,Double-Loaded Interior,27,"In metro area, principal city",123,RFCEc,None,Hour6,None,DC,South Atlantic,South Atlantic,South,100% Incandescent,CR08,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2000s,Electricity,Ducted Heating,2000-09,Slab,Central AC,68F,Cooling Only,Shared Cooling,Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,Fan Coil Cooling Only,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,1000-1499,1,0-1499,6,Bottom,67,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Bottom Unit, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Concrete,"Brick, Medium/Dark",100% Conditioned,10 ACH50,None,None,None,None,"Finished, R-38","2ft R5 Perimeter, Vertical","CMU, 6-in Hollow, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F12 B12 L12 R12,"Double, Clear, Metal, Air" +147,4A,Hour19,"G3900610, G39005504",No,None,"OH, Cincinnati","OH, Hamilton County",Non-CBSA East North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,Gas Lighting,Typical Efficiency,"Cooling Season, 7 days/wk",West,None,"OH, 05504",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",114,RFCWc,No,Hour18,None,OH,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,75F,None,"Room AC, EER 8.5",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,72F,Yes,3F,Night -4h,200000+,140000+,150000+,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",40% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Metal, Air" +148,4A,Hour10,"G4200450, G42003302",No,None,In another census Place,"PA, Delaware County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,2,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"PA, 03302",Single-Family Attached,5,Middle,Single-Family Attached,No,0F,None,Not Applicable,27,"In metro area, not/partially in principal city",122,RFCEc,No,Hour23,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,108%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Slab,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Attached,2,Vented Attic,None,"Single-Family Attached, Slab, Vented Attic, No Garage",Attic,"30% Leakage to Outside, R-4",<8,Brick,None,100% Conditioned,40 ACH50,R-7,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Tile, Clay or Ceramic",Electricity,Electric Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +149,4A,Hour19,"G3700350, G37002800",No,None,Not in a census Place,"NC, Catawba County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NC, 02800",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",97,SRVCc,No,Hour6,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1970s,Electricity,Ducted Heat Pump,1960-79,Vented Crawlspace,Ducted Heat Pump,68F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Wood Shingles,Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Single, Clear, Non-metal" +150,4A,Hour15,"G3600610, G36003809",No,None,"NY, New York","NY, New York County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NY, 03809",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",127,NYSTc,None,Hour17,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,1960s,Natural Gas,Non-Ducted Heating,1960-79,Vented Crawlspace,Room AC,72F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,65F,No,0F,None,<10000,<20000,<20000,500-749,1,0-1499,4,Middle,67,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Brick,None,40% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated",2,0-30%,0-100%,None,None,None,Electric Resistance,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Standard,No,None,F18 B18 L18 R18,"Single, Clear, Metal" +151,4A,Hour20,"G4200170, G42003003",No,None,Not in a census Place,"PA, Bucks County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"PA, 03003",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",122,RFCEc,No,Hour9,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1950s,Fuel Oil,Non-Ducted Heating,1940-59,Vented Crawlspace,Room AC,68F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",None,None,<8,Brick,None,20% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Metal, Dark",Electricity,Electric Standard,Yes,Garage,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +152,4A,Hour0,"G3600470, G36004001",No,None,"NY, New York","NY, Kings County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 04001",5 to 9 Unit,None,None,Multi-Family with 5+ Units,Yes,5F,Night Setback +5h,Double-Loaded Interior,12,"In metro area, principal city",127,NYSTc,None,Hour17,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,70F,Heating Only,"Room AC, EER 12.0",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,1000-1499,2,0-1499,3,Bottom,6,Right,"Multifamily with 5+ units, 1-3 stories",3,None,None,"Multi-Family with 5+ Units Bottom Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Wood Frame,"Brick, Medium/Dark",40% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,None,No,None,None,None,None,None,None,EF 15.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F30 B30 L30 R30,"Double, Clear, Metal, Air" +153,4A,Hour0,"G2900190, G29000600",No,None,"MO, Columbia","MO, Boone County",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,0.8,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MO, 00600",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",72,SRMWc,No,Hour16,None,MO,West North Central,West North Central,Midwest,100% LED,CR08,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,80000-99999,80000-99999,60000-99999,3000-3999,4,2500-3999,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,6 ACH50,R-30,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",4,100-120%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +154,4A,Hour5,"G3600810, G36004105",No,None,"NY, New York","NY, Queens County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",North,None,"NY, 04105",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback,Not Applicable,Left/Right at 15ft,"In metro area, principal city",127,NYSTc,No,Hour12,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,100000-119999,100000-119999,100000-149999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Gas,Standard,Electric Resistance,318 Rated kWh,No,EF 15.9,None,None,None,None,None,EF 17.6,Slate,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +155,3A,Hour3,"G1300890, G13002004",No,None,"GA, Dunwoody","GA, DeKalb County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"GA, 02004",Single-Family Detached,None,None,Single-Family Detached,Yes,9F,Night Setback -4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour18,None,GA,South Atlantic,South Atlantic,South,100% CFL,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,Yes,12F,Night +4h,200000+,140000+,150000+,2000-2499,4,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,20 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,EF 15.9,None,None,Has Pool,Natural Gas,1.0 HP Pump,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +156,3A,Hour2,"G3701190, G37003104",No,None,"NC, Charlotte","NC, Mecklenburg County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"NC, 03104",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",97,SRVCc,No,Hour8,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Slab,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"30% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Metal, Air" +157,4A,Hour6,"G3701830, G37001202",No,None,"NC, Raleigh","NC, Wake County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"NC, 01202",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",98,SRVCc,No,Hour0,None,NC,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-19,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11",4,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Heated Basement,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +158,4A,Hour7,"G3601030, G36003305",No,None,In another census Place,"NY, Suffolk County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",West,None,"NY, 03305",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",128,NYSTc,No,Hour17,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Fuel Oil,Ducted Heating,1960-79,Vented Crawlspace,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2000-2499,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +159,3A,Hour5,"G0100810, G01001900",No,None,"AL, Auburn","AL, Lee County",Non-CBSA East South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"AL, 01900",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",90,SRSOc,No,Hour15,None,AL,East South Central,East South Central,South,100% Incandescent,CR09,110%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Electricity,Ducted Heating,2000-09,Slab,Central AC,70F,None,"AC, SEER 15",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,70F,Yes,3F,Night -1h,100000-119999,100000-119999,100000-149999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"10% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,6 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Metal, Air" +160,4A,Hour5,"G0501430, G05000200",No,None,"AR, Fayetteville","AR, Washington County",Non-CBSA West South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"AR, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",56,SPSOc,No,Hour19,None,AR,West South Central,West South Central,South,100% LED,CR09,113%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,No,0F,None,200000+,140000+,150000+,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"10% Leakage to Outside, R-8",<8,Brick,None,80% Conditioned,7 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Brick, 12-in, 3-wythe, R-11",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +161,3A,Hour5,"G0501190, G05000900",No,None,In another census Place,"AR, Pulaski County",Non-CBSA West South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"AR, 00900",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",85,SRMVc,No,Hour9,None,AR,West South Central,West South Central,South,100% CFL,CR09,113%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,80F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"10% Leakage to Outside, R-4",<8,Brick,None,100% Conditioned,15 ACH50,R-30,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-7",2,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Garage,F15 B15 L15 R15,"Single, Clear, Non-metal" +162,4A,Hour17,"G5108100, G51051164",No,None,"VA, Virginia Beach","VA, Virginia Beach city",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"VA, 51164",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",99,SRVCc,No,Hour16,None,VA,South Atlantic,South Atlantic,South,100% CFL,CR08,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,200000+,140000+,150000+,2000-2499,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"30% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +163,4A,Hour18,"G2400310, G24001003",No,None,"MD, Rockville","MD, Montgomery County","CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northeast,None,"MD, 01003",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",123,RFCEc,No,Hour7,None,MD,South Atlantic,South Atlantic,South,100% Incandescent,CR08,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Electricity,Ducted Heat Pump,1980-99,Slab,Ducted Heat Pump,70F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,72F,Yes,3F,Night +5h,200000+,140000+,150000+,4000+,5,4000+,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",100% Conditioned,4 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Metal, Air" +164,3A,Hour3,"G4500450, G45000103",No,None,In another census Place,"SC, Greenville County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"SC, 00103",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",95,SRVCc,No,Hour9,None,SC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1960s,Electricity,Ducted Heat Pump,1960-79,Vented Crawlspace,Ducted Heat Pump,70F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,76F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,20 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",3,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +165,3A,Hour0,"G4500630, G45000601",No,None,Not in a census Place,"SC, Lexington County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"SC, 00601",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",96,SRVCc,No,Hour9,None,SC,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,5,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"10% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,7 ACH50,R-19,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Wood Stud, R-11",4,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 15.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Garage,F30 B30 L30 R30,"Double, Clear, Metal, Air" +166,4A,Hour16,"G4700370, G47002501",No,None,"TN, Nashville-Davidson Metropolitan Government Balance","TN, Davidson County",Non-CBSA East South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northwest,None,"TN, 02501",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",92,SRTVc,No,Hour3,None,TN,East South Central,East South Central,South,100% Incandescent,CR08,110%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Unheated Basement,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,100000-119999,100000-119999,100000-149999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,10 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +167,3A,Hour18,"G1300670, G13003004",No,None,Not in a census Place,"GA, Cobb County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",East,None,"GA, 03004",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour13,None,GA,South Atlantic,South Atlantic,South,100% CFL,CR09,106%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,200000+,140000+,150000+,1500-1999,2,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"30% Leakage to Outside, R-8",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,7 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R5 Under, Horizontal","Wood Stud, R-11",3,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,EF 17.6,None,Natural Gas,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F12 B12 L12 R12,"Double, Clear, Metal, Air" +168,4A,Hour22,"G2905100, G29001901",No,None,"MO, St Louis","MO, St. Louis city",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MO, 01901",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",72,SRMWc,No,Hour13,None,MO,West North Central,West North Central,Midwest,100% Incandescent,CR08,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,78F,None,"AC, SEER 10",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +2h,<10000,<20000,<20000,1000-1499,4,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,50 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",1,0-30%,0-100%,Yes,Electric,EnergyStar,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +169,3A,Hour17,"G0100730, G01001303",No,None,In another census Place,"AL, Jefferson County",Non-CBSA East South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"AL, 01303",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",89,SRSOc,No,Hour17,None,AL,East South Central,East South Central,South,100% LED,CR09,110%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,70F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night -3h,200000+,140000+,150000+,3000-3999,5,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",80% Conditioned,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",4,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Metal, Air" +170,4A,Hour11,"G3601190, G36003105",No,None,In another census Place,"NY, Westchester County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"NY, 03105",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour14,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Room AC,65F,None,"Room AC, EER 9.8",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night -3h,200000+,140000+,150000+,3000-3999,5,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",40% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",4,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Single, Clear, Non-metal" +171,4A,Hour14,"G1100010, G11000104",No,None,"DC, Washington","DC, District of Columbia","CBSA Washington-Arlington-Alexandria, DC-VA-MD-WV",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"DC, 00104",Single-Family Attached,8,Middle,Single-Family Attached,No,0F,None,Not Applicable,12,"In metro area, principal city",123,RFCEc,No,Hour14,None,DC,South Atlantic,South Atlantic,South,100% Incandescent,CR08,96%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1940s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Attached,1,None,None,"Single-Family Attached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated",1,100-120%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +172,3A,Hour17,"G1300890, G13002003",No,None,Not in a census Place,"GA, DeKalb County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"GA, 02003",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour18,None,GA,South Atlantic,South Atlantic,South,100% LED,CR09,106%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night,200000+,140000+,150000+,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"30% Leakage to Outside, R-4",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,25 ACH50,None,None,None,None,"Finished, R-13",Uninsulated,"Wood Stud, Uninsulated",3,150%+,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +173,4A,Hour23,"G5400390, G54001000",No,None,In another census Place,"WV, Kanawha County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,0.8,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"WV, 01000",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setup +5h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",117,RFCWc,No,Hour17,None,WV,South Atlantic,South Atlantic,South,100% LED,CR08,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Night +4h,50000-59999,40000-59999,40000-59999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,40 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,100-120%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +174,4A,Hour21,"G3600470, G36004017",No,None,"NY, New York","NY, Kings County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Southeast,None,"NY, 04017",2 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",127,NYSTc,None,Hour11,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,119%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Room AC,70F,Heating Only,"Room AC, EER 12.0",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,2,Top,2,Not Applicable,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Brick,None,100% Conditioned,30 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated",3,80-100%,300-400%,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 17.6,Wood Shingles,Natural Gas,Natural Gas Standard,No,None,F6 B6 L6 R6,"Single, Clear, Metal" +175,3A,Hour2,"G1300630, G13005002",No,None,Not in a census Place,"GA, Clayton County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"GA, 05002",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour11,None,GA,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Vented Crawlspace,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,60000-69999,60000-79999,60000-99999,3000-3999,2,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"30% Leakage to Outside, R-6",<8,Wood Frame,"Fiber-Cement, Light",100% Conditioned,10 ACH50,R-30,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",2,80-100%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +176,4A,Hour18,"G3700630, G37001301",No,None,"NC, Durham","NC, Durham County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"NC, 01301",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",98,SRVCc,No,Hour17,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Unheated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night -2h,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",Unheated Basement,"30% Leakage to Outside, R-6",<8,Wood Frame,"Wood, Medium/Dark",60% Conditioned,7 ACH50,R-19,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",3,150%+,400%+,Yes,Electric,EnergyStar,Gas,290 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 15.9,Composition Shingles,Electricity,Electric Premium,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +177,4A,Hour22,"G2905100, G29001902",No,None,"MO, St Louis","MO, St. Louis city",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MO, 01902",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",72,SRMWc,No,Hour6,None,MO,West North Central,West North Central,Midwest,100% CFL,CR08,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Room AC,72F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Gas,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Heated Basement,F30 B30 L30 R30,"Single, Clear, Non-metal" +178,4A,Hour4,"G0500070, G05000100",No,None,In another census Place,"AR, Benton County",Non-CBSA West South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"AR, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",56,SPSOc,No,Hour7,None,AR,West South Central,West South Central,South,100% Incandescent,CR09,113%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,4000+,4,4000+,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"20% Leakage to Outside, R-8",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,2 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Wood Stud, R-15",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Metal, Air" +179,4A,Hour6,"G3601190, G36003106",No,None,"NY, Yonkers","NY, Westchester County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,2,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"NY, 03106",50 or more Unit,None,None,Multi-Family with 5+ Units,Yes,9F,Night Setback +3h,Double-Loaded Interior,27,"In metro area, not/partially in principal city",127,NYSTc,None,Hour14,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,89%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Renter,1950s,Natural Gas,Non-Ducted Heating,1940-59,Vented Crawlspace,Room AC,75F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,70F,Yes,3F,Night +3h,35000-39999,20000-39999,20000-39999,750-999,1,0-1499,21,Middle,183,Middle,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",None,None,8+,Steel Frame,"Aluminum, Light",40% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated",1,30-60%,200-300%,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,No,None,F30 B30 L30 R30,"Single, Clear, Non-metal" +180,3A,Hour23,"G4500790, G45000603",No,None,Not in a census Place,"SC, Richland County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"SC, 00603",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",96,SRVCc,No,Hour17,None,SC,South Atlantic,South Atlantic,South,100% LED,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Ambient,Ducted Heat Pump,75F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Ambient, Vented Attic, No Garage",Attic,"30% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,R-30,Ceiling R-13,None,None,"Unfinished, Uninsulated",None,"Wood Stud, R-11",4,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Outside,F9 B9 L9 R9,"Double, Clear, Metal, Air" +181,4A,Hour18,"G2405100, G24000804",No,None,"MD, Baltimore","MD, Baltimore city",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MD, 00804",Single-Family Attached,8,Middle,Single-Family Attached,No,0F,None,Not Applicable,7,"In metro area, principal city",123,RFCEc,No,Hour20,None,MD,South Atlantic,South Atlantic,South,100% CFL,CR08,96%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,3000-3999,3,2500-3999,2,None,None,None,Single-Family Attached,2,None,None,"Single-Family Attached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Clear, Metal, Air" +182,3A,Hour23,"G3701590, G37003400",No,None,Not in a census Place,"NC, Rowan County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"NC, 03400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",97,SRVCc,No,Hour14,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,76F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,4000+,4,4000+,2,None,None,None,Single-Family Detached,2,Unvented Attic,2 Car,"Single-Family Detached, Slab, Unvented Attic, 2 Car Garage",Attic,"10% Leakage to Outside, R-8",<8,Brick,None,100% Conditioned,3 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Under, Horizontal","Brick, 12-in, 3-wythe, R-19",6,120-150%,200-300%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Wood Shingles,Electricity,Electric Standard,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Metal, Air" +183,4A,Hour3,"G2100670, G21001902",No,None,"KY, Lexington-Fayette","KY, Fayette County",Non-CBSA East South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",West,None,"KY, 01902",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setup -3h,Not Applicable,Left/Right at 15ft,"In metro area, principal city",109,SRTVc,No,Hour6,None,KY,East South Central,East South Central,South,100% Incandescent,CR08,110%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Vented Crawlspace,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"10% Leakage to Outside, R-6",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",4,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Clear, Non-metal, Air" +184,4A,Hour7,"G1801630, G18003300",No,None,"IN, Evansville","IN, Vanderburgh County",Non-CBSA East North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"IN, 03300",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",107,RFCWc,No,Hour11,None,IN,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,6F,Night +1h,80000-99999,80000-99999,60000-99999,1000-1499,4,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",4,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Single, Clear, Non-metal" +185,3A,Hour18,"G3701470, G37004200",No,None,"NC, Greenville","NC, Pitt County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NC, 04200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",98,SRVCc,No,Hour15,None,NC,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heating,2000-09,Slab,Central AC,72F,None,"AC, SEER 13",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,5,1500-2499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,2 Car,"Single-Family Detached, Slab, Finished Attic, 2 Car Garage",Garage,"30% Leakage to Outside, R-8",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,10 ACH50,None,None,None,None,"Finished, R-13","2ft R10 Under, Horizontal","Wood Stud, R-19",3,150%+,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,EF 15.9,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Metal, Air" +186,4A,Hour3,"G2001730, G20001304",No,None,"KS, Wichita","KS, Sedgwick County",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"KS, 01304",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",53,SPNOc,No,Hour17,None,KS,West North Central,West North Central,Midwest,100% CFL,CR08,95%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,67F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,Yes,6F,Night -5h,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,80-100%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +187,4A,Hour21,"G5107100, G51051154",No,None,"VA, Norfolk","VA, Norfolk city",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"VA, 51154",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",99,SRVCc,No,Hour19,None,VA,South Atlantic,South Atlantic,South,100% CFL,CR08,106%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Slab,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,60F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Unvented Attic,1 Car,"Single-Family Detached, Slab, Unvented Attic, 1 Car Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",100% Conditioned,25 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",3,120-150%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +188,3A,Hour1,"G1301210, G13004600",No,None,"GA, Atlanta","GA, Fulton County","CBSA Atlanta-Sandy Springs-Roswell, GA",3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"GA, 04600",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -5h,Not Applicable,Left/Right at 15ft,"In metro area, principal city",94,SRSOc,No,Hour16,None,GA,South Atlantic,South Atlantic,South,100% Incandescent,CR09,106%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,35000-39999,20000-39999,20000-39999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated",1,60-80%,300-400%,Yes,Gas,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +189,3A,Hour6,"G3701010, G37001100",No,None,Not in a census Place,"NC, Johnston County",Non-CBSA South Atlantic,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NC, 01100",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",98,SRVCc,No,Hour12,None,NC,South Atlantic,South Atlantic,South,100% CFL,CR09,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heating,2000-09,Slab,Central AC,70F,None,"AC, SEER 13",Yes,"Electric Furnace, 100% AFUE",No,Electricity Electric Furnace,None,None,None,None,None,70F,Yes,6F,Night +5h,100000-119999,100000-119999,100000-149999,3000-3999,4,2500-3999,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"10% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,5 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 19.9,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Tankless,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" +190,4A,Hour13,"G3600610, G36003807",No,None,"NY, New York","NY, New York County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 03807",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,7,"In metro area, principal city",127,NYSTc,None,Hour8,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,65F,Heating Only,"Room AC, EER 9.8",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,72F,Yes,6F,Night +4h,200000+,140000+,150000+,750-999,1,0-1499,21,Middle,116,Right,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",None,None,8+,Steel Frame,"Aluminum, Light",60% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated",2,150%+,400%+,None,None,None,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F30 B30 L30 R30,"Single, Clear, Metal" +191,4A,Hour2,"G1701630, G17001104",No,None,In another census Place,"IL, St. Clair County",Non-CBSA East North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"IL, 01104",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",81,SRMWc,No,Hour5,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Unheated Basement,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +3h,200000+,140000+,150000+,4000+,5,4000+,2,None,None,None,Single-Family Detached,2,Vented Attic,3 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 3 Car Garage",Unheated Basement,"20% Leakage to Outside, R-6",<8,Wood Frame,"Vinyl, Light",100% Conditioned,3 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15",2,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +192,4A,Hour21,"G1000050, G10000300",No,None,Not in a census Place,"DE, Sussex County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"DE, 00300",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",125,RFCEc,No,Hour18,None,DE,South Atlantic,South Atlantic,South,100% CFL,CR08,106%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Heated Basement,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,67F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,4,2500-3999,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,R-30,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11",3,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Heated Basement,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +193,4A,Hour15,"G3601190, G36003107",No,None,"NY, New Rochelle","NY, Westchester County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"NY, 03107",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour18,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,72F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,2500-2999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",None,None,<8,Wood Frame,"Brick, Medium/Dark",20% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",4,150%+,400%+,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,EF 17.6,None,Electricity,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +194,4A,Hour17,"G1301390, G13003400",No,None,Not in a census Place,"GA, Hall County",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"GA, 03400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",94,SRSOc,No,Hour17,None,GA,South Atlantic,South Atlantic,South,100% LED,CR09,106%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Electricity,Ducted Heat Pump,2000-09,Slab,Ducted Heat Pump,78F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,3000-3999,5,2500-3999,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"20% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Wood Stud, R-11",5,120-150%,200-300%,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Garage,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +195,3A,Hour23,"G0100730, G01001304",No,None,In another census Place,"AL, Jefferson County",Non-CBSA East South Central,3A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,South-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"AL, 01304",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",89,SRSOc,No,Hour21,None,AL,East South Central,East South Central,South,100% LED,CR09,110%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7",3,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Single, Clear, Metal" +196,4A,Hour8,"G4700370, G47002505",No,None,"TN, Nashville-Davidson Metropolitan Government Balance","TN, Davidson County",Non-CBSA East South Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"TN, 02505",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",92,SRTVc,No,Hour16,None,TN,East South Central,East South Central,South,100% Incandescent,CR08,110%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,3000-3999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,10 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",Electricity,None,None,None,EF 17.6,"Metal, Dark",Electricity,Electric Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +197,4A,Hour20,"G5108100, G51051165",No,None,"VA, Virginia Beach","VA, Virginia Beach city",Non-CBSA South Atlantic,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",West,None,"VA, 51165",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +2h,Not Applicable,Left/Right at 15ft,"In metro area, principal city",99,SRVCc,No,Hour19,None,VA,South Atlantic,South Atlantic,South,100% LED,CR08,106%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Electricity,Ducted Heat Pump,1980-99,Vented Crawlspace,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 15, 8.5 HSPF",No,Electricity ASHP,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,2,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-19,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Premium,Yes,Garage,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +198,4A,Hour3,"G4201010, G42003205",No,None,"PA, Philadelphia","PA, Philadelphia County","CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,2,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"PA, 03205",Single-Family Attached,7,Middle,Single-Family Attached,Yes,2F,Night Setback +4h,Not Applicable,4,"In metro area, principal city",122,RFCEc,No,Hour2,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,108%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,75F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,<10000,<20000,<20000,1000-1499,3,0-1499,1,None,None,None,Single-Family Attached,1,None,None,"Single-Family Attached, Unheated Basement, No Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Brick,None,20% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",1,0-30%,0-100%,Yes,Electric,Standard,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +199,4A,Hour7,"G3600610, G36003801",No,None,"NY, New York","NY, New York County","CBSA New York-Newark-Jersey City, NY-NJ-PA",4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.7,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 03801",20 to 49 Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",127,NYSTc,None,Hour10,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,89%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Fuel Oil,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,70F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Fuel Oil Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,68F,Yes,6F,Night +1h,<10000,<20000,<20000,750-999,2,0-1499,6,Top,43,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Top Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Wood Frame,"Stucco, Light",100% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",1,0-30%,0-100%,Yes,Electric,Standard,Electric Resistance,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Premium,No,None,F30 B30 L30 R30,"Single, Clear, Metal" +200,4A,Hour18,"G2000910, G20000602",No,None,"KS, Overland Park","KS, Johnson County",Non-CBSA West North Central,4A,Mixed-Humid,None,20 ft^2,Fiberglass,2 ft,None,North-Central,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"KS, 00602",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",53,SPNOc,No,Hour17,None,KS,West North Central,West North Central,Midwest,100% Incandescent,CR08,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2500-2999,5,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",4,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +201,5A,Hour4,"G1801410, G18000402",No,None,Not in a census Place,"IN, St. Joseph County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"IN, 00402",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",105,RFCWc,No,Hour19,None,IN,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Vented Crawlspace,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,2500-2999,3,2500-3999,3,None,None,None,Single-Family Detached,3,None,2 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,15 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-15",3,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +202,6A,Hour21,"G5501010, G55030000",No,None,In another census Place,"WI, Racine County",Non-CBSA East North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"WI, 30000",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",79,RFCWc,No,Hour11,None,WI,East North Central,East North Central,Midwest,100% CFL,CR02,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +4h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",60% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +203,5B,Hour5,"G0800590, G08000819",No,None,"CO, Lakewood","CO, Jefferson County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"CO, 00819",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",33,RMPAc,No,Hour16,None,CO,Mountain,Mountain North,West,100% Incandescent,CR05,91%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,75F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,No,0F,None,100000-119999,100000-119999,100000-149999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7",2,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +204,5A,Hour6,"G3900350, G39000909",No,None,In another census Place,"OH, Cuyahoga County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"OH, 00909",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",111,RFCWc,No,Hour10,None,OH,East North Central,East North Central,Midwest,100% LED,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Room AC,62F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Heated Basement, No Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",40% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 15.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +205,5A,Hour0,"G2500030, G25000100",No,None,Not in a census Place,"MA, Berkshire County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MA, 00100",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",131,NEWEc,No,Hour15,None,MA,New England,New England,Northeast,100% CFL,CR03,99%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Fuel Oil,Ducted Heating,<1940,Heated Basement,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,75F,Yes,3F,Night -2h,80000-99999,80000-99999,60000-99999,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",3,100-120%,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Fuel Oil,Fuel Oil Standard,Yes,Heated Basement,F9 B9 L9 R9,"Single, Clear, Non-metal" +206,6A,Hour16,"G5000070, G50000100",No,None,Not in a census Place,"VT, Chittenden County",Non-CBSA New England,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"VT, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",129,NEWEc,No,Hour17,None,VT,New England,New England,Northeast,100% Incandescent,CR03,99%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,<1940,Fuel Oil,Ducted Heating,<1940,Unheated Basement,Room AC,60F,None,"Room AC, EER 9.8",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Night,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,30 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Fuel Oil,Fuel Oil Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +207,5A,Hour0,"G1700310, G17003529",No,None,"IL, Chicago","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"IL, 03529",50 or more Unit,None,None,Multi-Family with 5+ Units,Yes,2F,Night Setback +4h,Double-Loaded Interior,27,"In metro area, principal city",80,RFCWc,None,Hour17,None,IL,East North Central,East North Central,Midwest,100% LED,CR04,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +5h,<10000,<20000,<20000,0-499,1,0-1499,21,Middle,67,Middle,"Multifamily with 5+ units, 8+ stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",8+,Steel Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",1,0-30%,0-100%,None,None,None,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F30 B30 L30 R30,"Double, Clear, Metal, Air" +208,5B,Hour3,"G0801230, G08000300",No,None,"CO, Greeley","CO, Weld County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"CO, 00300",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",33,RMPAc,No,Hour20,None,CO,Mountain,Mountain North,West,100% LED,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,3000-3999,4,2500-3999,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"20% Leakage to Outside, R-8",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,3 ACH50,None,None,None,None,"Finished, R-49","2ft R10 Perimeter, Vertical","Wood Stud, R-19",5,100-120%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +209,5A,Hour21,"G3600010, G36002002",No,None,Not in a census Place,"NY, Albany County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"NY, 02002",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour19,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,100000-119999,100000-119999,100000-149999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Heated Basement, No Attic, 1 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Heated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +210,5A,Hour20,"G1700310, G17003420",No,None,In another census Place,"IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"IL, 03420",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback +5h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour12,None,IL,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Slab,Central AC,70F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,Yes,3F,Night +1h,200000+,140000+,150000+,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Slab, Finished Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Brick,None,60% Conditioned,15 ACH50,None,None,None,None,"Finished, R-49",Uninsulated,"Brick, 12-in, 3-wythe, Uninsulated",5,150%+,400%+,Yes,Gas,EnergyStar,Electric Resistance,290 Rated kWh,No,EF 15.9,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F6 B6 L6 R6,"Double, Clear, Non-metal, Air" +211,5A,Hour9,"G1700310, G17003413",No,None,In another census Place,"IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"IL, 03413",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour9,None,IL,East North Central,East North Central,Midwest,100% LED,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,80-100%,400%+,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +212,6A,Hour6,"G3601110, G36002702",No,None,In another census Place,"NY, Ulster County",Non-CBSA Middle Atlantic,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"NY, 02702",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour17,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Fuel Oil,Ducted Heating,<1940,Unheated Basement,Room AC,70F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",40% Conditioned,10 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",3,100-120%,400%+,Yes,Electric,EnergyStar,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Fuel Oil,FIXME Fuel Oil Indirect,Yes,Unheated Basement,F30 B30 L30 R30,"Double, Clear, Non-metal, Air" +213,5A,Hour23,"G2600810, G26001002",No,None,"MI, Grand Rapids","MI, Kent County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"MI, 01002",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour13,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,75F,None,"Room AC, EER 9.8",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,Unvented Attic,None,"Single-Family Detached, Unheated Basement, Unvented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,20% Conditioned,10 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",3,120-150%,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F6 B6 L6 R6,"Single, Clear, Non-metal" +214,5A,Hour6,"G3900570, G39004700",No,None,In another census Place,"OH, Greene County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"OH, 04700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",113,RFCWc,No,Hour15,None,OH,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,78F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Unvented Attic,None,"Single-Family Detached, Heated Basement, Unvented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",4,120-150%,300-400%,Yes,Electric,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F18 B18 L18 R18,"Single, Clear, Non-metal" +215,5A,Hour22,"G3900890, G39003800",No,None,In another census Place,"OH, Licking County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"OH, 03800",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",112,RFCWc,No,Hour11,None,OH,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,25 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Gas,Standard,Electric Resistance,290 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F30 B30 L30 R30,"Double, Clear, Non-metal, Air" +216,5A,Hour0,"G3600930, G36001700",No,None,"NY, Schenectady","NY, Schenectady County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northeast,None,"NY, 01700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour17,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,68F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Night +4h,80000-99999,80000-99999,60000-99999,3000-3999,4,2500-3999,1,None,None,None,Single-Family Detached,1,Unvented Attic,1 Car,"Single-Family Detached, Unheated Basement, Unvented Attic, 1 Car Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",40% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",3,100-120%,400%+,Yes,Gas,EnergyStar,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F6 B6 L6 R6,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +217,6B,Hour17,"G3000290, G30000100",No,None,In another census Place,"MT, Flathead County",Non-CBSA Mountain,6B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"MT, 00100",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,17,NWPPc,No,Hour14,None,MT,Mountain,Mountain North,West,100% CFL,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"10% Leakage to Outside, R-6",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-49,Ceiling R-19,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-15",3,120-150%,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Tile, Clay or Ceramic",Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +218,5A,Hour13,"G3901030, G39001900",No,None,In another census Place,"OH, Medina County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"OH, 01900",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",111,RFCWc,No,Hour18,None,OH,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,100000-119999,100000-119999,100000-149999,2000-2499,4,1500-2499,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-49",None,"Wood Stud, R-15",2,150%+,400%+,Yes,Gas,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Metal, Air" +219,6A,Hour18,"G2300110, G23000400",No,None,Not in a census Place,"ME, Kennebec County",Non-CBSA New England,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"ME, 00400",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,134,NEWEc,No,Hour13,None,ME,New England,New England,Northeast,100% CFL,CR03,99%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,<1940,Fuel Oil,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,75F,None,"Room AC, EER 9.8",No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Fuel Oil,FIXME Fuel Oil Indirect,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +220,5A,Hour21,"G4200190, G42001600",No,None,Not in a census Place,"PA, Butler County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,Gas Lighting,None,"Cooling Season, 7 days/wk",Southeast,None,"PA, 01600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",115,RFCWc,No,Hour20,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Heated Basement,None,70F,None,None,No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,68F,Yes,3F,Day and Night +1h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",None,25 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Gas,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +221,5A,Hour7,"G1901530, G19001700",No,None,"IA, Des Moines","IA, Polk County",Non-CBSA West North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"IA, 01700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",70,MROWc,No,Hour13,None,IA,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,75F,None,"AC, SEER 10",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,25 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +222,5A,Hour18,"G2500090, G25000703",No,None,In another census Place,"MA, Essex County","CBSA Boston-Cambridge-Newton, MA-NH",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"MA, 00703",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",131,NEWEc,No,Hour13,None,MA,New England,New England,Northeast,100% CFL,CR03,99%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,72F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,"Vinyl, Light",20% Conditioned,25 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated",2,150%+,400%+,Yes,Gas,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +223,5A,Hour0,"G2500250, G25003302",No,None,"MA, Boston","MA, Suffolk County","CBSA Boston-Cambridge-Newton, MA-NH",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MA, 03302",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",131,NEWEc,None,Hour8,None,MA,New England,New England,Northeast,100% CFL,CR03,94%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Renter,2010s,Electricity,Non-Ducted Heating,2010s,Slab,Room AC,68F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Electricity Shared Heating,"Boiler Baseboards Heating Only, Electricity",None,None,None,None,72F,No,0F,None,200000+,140000+,150000+,1000-1499,2,0-1499,5,Middle,67,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",20% Conditioned,15 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Under, Horizontal","Wood Stud, R-19",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain" +224,5A,Hour8,"G2601250, G26002908",No,None,In another census Place,"MI, Oakland County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",East,None,"MI, 02908",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour17,None,MI,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,750-999,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",3,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,Electricity,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +225,5A,Hour14,"G1700310, G17003410",No,None,In another census Place,"IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"IL, 03410",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour16,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Vented Crawlspace,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +1h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,2 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 2 Car Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",60% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-7",4,100-120%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +226,5A,Hour20,"G1700310, G17003411",No,None,In another census Place,"IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"IL, 03411",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour7,None,IL,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,68F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated",3,100-120%,400%+,Yes,Gas,Standard,Gas,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 15.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F6 B6 L6 R6,"Single, Clear, Non-metal" +227,5B,Hour1,"G0800310, G08000814",No,None,"CO, Denver","CO, Denver County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"CO, 00814",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, principal city",33,RMPAc,No,Hour16,None,CO,Mountain,Mountain North,West,100% Incandescent,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,None,72F,None,None,Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,200000+,140000+,150000+,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +228,5A,Hour1,"G4200030, G42001804",No,None,In another census Place,"PA, Allegheny County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"PA, 01804",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",115,RFCWc,No,Hour19,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Day and Night +2h,80000-99999,80000-99999,60000-99999,1000-1499,5,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,40 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,EF 19.9,"EF 12, National Average",Electricity,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Single, Clear, Non-metal" +229,5A,Hour5,"G2500270, G25000300",No,None,"MA, Worcester","MA, Worcester County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Southwest,None,"MA, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",131,NEWEc,No,Hour5,None,MA,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,65F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Day and Night +5h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",<10% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Wood Stud, Uninsulated",2,100-120%,400%+,Yes,Electric,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +230,6A,Hour1,"G5500090, G55000300",No,None,In another census Place,"WI, Brown County",Non-CBSA East North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",Northwest,None,"WI, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",75,MROEc,No,Hour17,None,WI,East North Central,East North Central,Midwest,100% LED,CR02,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,120000-139999,120000-139999,100000-149999,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Heated Basement, No Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",80% Conditioned,5 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-38",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Gas,EnergyStar,Gas,290 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +231,5A,Hour0,"G2601630, G26003211",No,None,"MI, Detroit","MI, Wayne County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MI, 03211",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",103,RFCMc,No,Hour7,None,MI,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,75F,None,"Room AC, EER 12.0",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",None,None,<8,Brick,None,60% Conditioned,20 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Gas,Standard,Gas,None,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F18 B18 L18 R18,"Single, Clear, Non-metal, Exterior Clear Storm" +232,5A,Hour6,"G1801570, G18001200",No,None,"IN, Lafayette","IN, Tippecanoe County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"IN, 01200",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setup +4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",105,RFCWc,No,Hour19,None,IN,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Heated Basement,Central AC,70F,None,"AC, SEER 10",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,3F,Night +4h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Brick,None,80% Conditioned,15 ACH50,R-38,Uninsulated,"Wall R-5, Exterior","R-5, Exterior","Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-15",4,120-150%,300-400%,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +233,5A,Hour18,"G4200490, G42000102",No,None,Not in a census Place,"PA, Erie County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",East,None,"PA, 00102",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",122,RFCEc,No,Hour7,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,75F,None,"Room AC, EER 12.0",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,67F,Yes,3F,Night,60000-69999,60000-79999,60000-99999,2500-2999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Unvented Attic,1 Car,"Single-Family Detached, Vented Crawlspace, Unvented Attic, 1 Car Garage",None,None,<8,Brick,None,20% Conditioned,15 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,300-400%,Yes,Electric,EnergyStar,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Single, Clear, Non-metal" +234,6A,Hour1,"G2300310, G23000800",No,None,Not in a census Place,"ME, York County",Non-CBSA New England,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"ME, 00800",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",134,NEWEc,No,Hour12,None,ME,New England,New England,Northeast,100% CFL,CR03,99%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Fuel Oil,Non-Ducted Heating,<1940,Heated Basement,None,72F,None,None,No,"Fuel Boiler, 80% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,68F,No,0F,None,60000-69999,60000-79999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",None,None,<8,Concrete,"Wood, Medium/Dark",None,30 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"CMU, 6-in Hollow, Uninsulated",2,100-120%,300-400%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Slate,Fuel Oil,Fuel Oil Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +235,5A,Hour19,"G4200890, G42000600",No,None,Not in a census Place,"PA, Monroe County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",West,None,"PA, 00600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",122,RFCEc,No,Hour14,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Electricity,Ducted Heat Pump,1980-99,Unheated Basement,Ducted Heat Pump,72F,None,Ducted Heat Pump,Yes,"ASHP, SEER 13, 7.7 HSPF",No,Electricity ASHP,None,None,None,None,None,68F,Yes,3F,Night -2h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Single, Clear, Non-metal" +236,5A,Hour23,"G1800970, G18002305",No,None,"IN, Indianapolis City Balance","IN, Marion County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,None,"Cooling Season, 7 days/wk",South,None,"IN, 02305",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",106,RFCWc,No,Hour11,None,IN,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,60F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,30 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +237,5A,Hour5,"G2600750, G26002600",No,None,Not in a census Place,"MI, Jackson County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MI, 02600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour11,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,None,76F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night -2h,80000-99999,80000-99999,60000-99999,1500-1999,2,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",None,25 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Gas,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +238,6A,Hour23,"G3600650, G36000402",No,None,"NY, Utica","NY, Oneida County",Non-CBSA Middle Atlantic,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northwest,None,"NY, 00402",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour8,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,68F,None,"Room AC, EER 12.0",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,67F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",40% Conditioned,25 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,80-100%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 6.7,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +239,5A,Hour20,"G3901330, G39001700",No,None,In another census Place,"OH, Portage County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"OH, 01700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",111,RFCWc,No,Hour15,None,OH,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night -3h,80000-99999,80000-99999,60000-99999,3000-3999,3,2500-3999,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F12 B12 L12 R12,"Single, Clear, Non-metal" +240,5A,Hour3,"G4201070, G42002600",No,None,In another census Place,"PA, Schuylkill County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Southeast,None,"PA, 02600",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +5h,Not Applicable,Left/Right at 15ft,Not/partially in metro area,122,RFCEc,No,Hour18,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Fuel Oil,Ducted Heating,<1940,Vented Crawlspace,Room AC,72F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night -1h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",40% Conditioned,15 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 15.9,Composition Shingles,Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +241,5A,Hour0,"G1700190, G17002100",No,None,"IL, Champaign","IL, Champaign County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northeast,None,"IL, 02100",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",83,SRMWc,No,Hour18,None,IL,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,Yes,3F,Night -4h,80000-99999,80000-99999,60000-99999,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,30 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Premium,Yes,Living Space,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +242,6A,Hour22,"G5500730, G55001600",No,None,In another census Place,"WI, Marathon County",Non-CBSA East North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"WI, 01600",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",75,MROEc,No,Hour19,None,WI,East North Central,East North Central,Midwest,100% LED,CR02,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Vented Crawlspace,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night -2h,80000-99999,80000-99999,60000-99999,1500-1999,1,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",80% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" +243,6A,Hour0,"G5500590, G55010000",No,None,"WI, Kenosha","WI, Kenosha County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"WI, 10000",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",79,RFCWc,No,Hour16,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Heated Basement,Room AC,65F,None,"Room AC, EER 10.7",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",20% Conditioned,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-7",2,120-150%,400%+,Yes,Electric,EnergyStar,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 21.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Single, Clear, Non-metal" +244,5A,Hour15,"G2601450, G26001500",No,None,Not in a census Place,"MI, Saginaw County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MI, 01500",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour16,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,3F,Night -1h,80000-99999,80000-99999,60000-99999,2500-2999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,10 ACH50,R-7,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",1,150%+,400%+,Yes,Gas,Standard,Gas,290 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +245,5A,Hour3,"G2600930, G26002800",No,None,Not in a census Place,"MI, Livingston County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MI, 02800",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour17,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Unheated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Unheated Basement, No Attic, 2 Car Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,None,Ceiling R-13,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, R-11",3,150%+,400%+,Yes,Gas,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +246,6A,Hour5,"G2701090, G27002500",No,None,"MN, Rochester","MN, Olmsted County",Non-CBSA West North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"MN, 02500",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -5h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",43,MROWc,No,Hour9,None,MN,West North Central,West North Central,Midwest,100% CFL,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Vented Crawlspace,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,65F,Yes,3F,Night +2h,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,3 Car,"Single-Family Detached, Vented Crawlspace, Vented Attic, 3 Car Garage",Crawlspace,"20% Leakage to Outside, R-6",<8,Wood Frame,"Vinyl, Light",100% Conditioned,4 ACH50,R-49,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",4,150%+,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +247,6A,Hour2,"G2300190, G23000300",No,None,Not in a census Place,"ME, Penobscot County",Non-CBSA New England,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"ME, 00300",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",134,NEWEc,No,Hour18,None,ME,New England,New England,Northeast,100% Incandescent,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Fuel Oil,Ducted Heating,<1940,Vented Crawlspace,None,70F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Brick,"Wood, Medium/Dark",None,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",4,120-150%,300-400%,Yes,Electric,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +248,6A,Hour22,"G2700530, G27001407",No,None,"MN, Minneapolis","MN, Hennepin County",Non-CBSA West North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MN, 01407",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",43,MROWc,None,Hour17,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,86%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2010s,Natural Gas,Ducted Heating,2010s,Unheated Basement,Central AC,70F,Heating and Cooling,Shared Cooling,No,Shared Heating,No,Natural Gas Shared Heating,"Fan Coil Heating and Cooling, Fuel",None,None,None,None,70F,No,0F,None,<10000,<20000,<20000,0-499,1,0-1499,3,Top,67,Middle,"Multifamily with 5+ units, 1-3 stories",3,None,None,"Multi-Family with 5+ Units Top Unit, Unheated Basement, No Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, R-19",1,0-30%,0-100%,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +249,5A,Hour17,"G2601250, G26002903",No,None,"MI, Troy","MI, Oakland County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MI, 02903",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour8,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Unheated Basement,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, R-7",4,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +250,5B,Hour18,"G0400050, G04000400",No,None,"AZ, Flagstaff","AZ, Coconino County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"AZ, 00400",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",28,AZNMc,No,Hour16,None,AZ,Mountain,Mountain South,West,100% CFL,CR10,84%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Vented Crawlspace,Central AC,75F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Night +5h,80000-99999,80000-99999,60000-99999,3000-3999,5,2500-3999,2,None,None,None,Single-Family Detached,2,None,3 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 3 Car Garage",Crawlspace,"20% Leakage to Outside, R-6",<8,Wood Frame,"Stucco, Light",100% Conditioned,5 ACH50,None,Ceiling R-19,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, R-19",2,120-150%,400%+,Yes,Gas,Standard,Electric Resistance,318 Rated kWh,No,EF 19.9,None,None,None,None,None,EF 17.6,"Tile, Clay or Ceramic",Natural Gas,Natural Gas Standard,Yes,Garage,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +251,5A,Hour8,"G1700310, G17003421",No,None,"IL, Evanston","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"IL, 03421",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour8,None,IL,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,Yes,12F,Day and Night +3h,200000+,140000+,150000+,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",80% Conditioned,15 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Electric,EnergyStar,Gas,290 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Single, Clear, Metal" +252,5A,Hour17,"G2500090, G25000701",No,None,"MA, Lawrence","MA, Essex County","CBSA Boston-Cambridge-Newton, MA-NH",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,Gas Lighting,None,"Cooling Season, 7 days/wk",West,None,"MA, 00701",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",131,NEWEc,No,Hour15,None,MA,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Heated Basement,Room AC,60F,None,"Room AC, EER 12.0",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Heated Basement, Vented Attic, 1 Car Garage",None,None,<8,Wood Frame,"Vinyl, Light",20% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,80-100%,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +253,5A,Hour6,"G1700310, G17003501",No,None,"IL, Chicago","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"IL, 03501",50 or more Unit,None,None,Multi-Family with 5+ Units,Yes,5F,Night Setback +5h,Double-Loaded Interior,27,"In metro area, principal city",80,RFCWc,None,Hour20,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,89%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,60F,None,"Room AC, EER 12.0",No,"Fuel Boiler, 76% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,70F,Yes,6F,Night +4h,<10000,<20000,<20000,500-749,2,0-1499,6,Middle,67,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Unheated Basement, No Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",40% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",1,0-30%,0-100%,None,None,None,Gas,None,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F30 B30 L30 R30,"Single, Clear, Non-metal" +254,5A,Hour1,"G4400030, G44000201",No,None,"RI, Warwick","RI, Kent County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"RI, 00201",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setup +2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",133,NEWEc,No,Hour17,None,RI,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Fuel Oil,Ducted Heating,1940-59,Vented Crawlspace,Room AC,70F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 92.5% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,70F,Yes,12F,Night +2h,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,None,None,"Single-Family Detached, Vented Crawlspace, No Attic, No Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Fuel Oil,Fuel Oil Standard,Yes,Living Space,F15 B15 L15 R15,"Single, Clear, Non-metal" +255,5B,Hour23,"G1600550, G16000200",No,None,In another census Place,"ID, Kootenai County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"ID, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",14,NWPPc,No,Hour16,None,ID,Mountain,Mountain North,West,100% CFL,CR05,91%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,Yes,6F,Night -3h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",60% Conditioned,5 ACH50,R-30,Uninsulated,"Wall R-15, Exterior","R-15, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-19",4,120-150%,300-400%,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +256,5A,Hour1,"G3600290, G36001204",No,None,"NY, Cheektowaga","NY, Erie County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NY, 01204",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour17,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Room AC,72F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night -4h,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",20% Conditioned,30 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +257,5A,Hour20,"G2500010, G25004800",No,None,In another census Place,"MA, Barnstable County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MA, 04800",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,131,NEWEc,No,Hour8,None,MA,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Vacant,None,No,None,None,None,Not Available,1970s,Natural Gas,Non-Ducted Heating,1960-79,Slab,Room AC,70F,None,"Room AC, EER 10.7",No,"Fuel Wall/Floor Furnace, 68% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,55F,Yes,3F,Night +3h,Not Available,Not Available,Not Available,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-7",0,Not Available,Not Available,Yes,Electric,EnergyStar,Gas,318 Rated kWh,Not Available,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +258,5A,Hour18,"G4400070, G44000102",No,None,"RI, Pawtucket","RI, Providence County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Southwest,None,"RI, 00102",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",133,NEWEc,No,Hour7,None,RI,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Room AC,60F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Vented Crawlspace, Vented Attic, No Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",20% Conditioned,20 ACH50,R-38,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,EnergyStar,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" +259,6A,Hour5,"G2701230, G27001304",No,None,"MN, St Paul","MN, Ramsey County",Non-CBSA West North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"MN, 01304",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +5h,Not Applicable,Left/Right at 15ft,"In metro area, principal city",43,MROWc,No,Hour16,None,MN,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Night -4h,200000+,140000+,150000+,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +260,5A,Hour5,"G1700310, G17003524",No,None,"IL, Chicago","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"IL, 03524",3 or 4 Unit,None,None,Multi-Family with 2 - 4 Units,No,0F,None,Double-Loaded Interior,27,"In metro area, principal city",80,RFCWc,None,Hour13,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,96%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,2,Bottom,4,Right,Multifamily with 2-4 Units,2,None,None,"Multi-Family with 2 - 4 Units Bottom Unit, Unheated Basement, No Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated",3,100-120%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,No,None,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +261,6B,Hour20,"G3000630, G30000200",No,None,"MT, Missoula","MT, Missoula County",Non-CBSA Mountain,6B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MT, 00200",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,17,NWPPc,No,Hour17,None,MT,Mountain,Mountain North,West,100% LED,CR05,91%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,60000-69999,60000-79999,60000-99999,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"20% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19",2,100-120%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +262,5A,Hour21,"G2601630, G26003201",No,None,Not in a census Place,"MI, Wayne County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MI, 03201",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour17,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Slab,Central AC,67F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,6F,Night -5h,200000+,140000+,150000+,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"30% Leakage to Outside, R-4",<8,Brick,None,100% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Brick, 12-in, 3-wythe, R-7",4,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +263,5A,Hour17,"G0900010, G09000105",No,None,"CT, Stratford","CT, Fairfield County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"CT, 00105",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",132,NEWEc,No,Hour18,None,CT,New England,New England,Northeast,100% Incandescent,CR03,99%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,1950s,Fuel Oil,Ducted Heating,1940-59,Slab,Room AC,68F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +1h,200000+,140000+,150000+,1500-1999,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",60% Conditioned,20 ACH50,R-19,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",4,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +264,6A,Hour14,"G3600450, G36000500",No,None,In another census Place,"NY, Jefferson County",Non-CBSA Middle Atlantic,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"NY, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,127,NYSTc,No,Hour18,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 21.9,Composition Shingles,Natural Gas,Natural Gas Tankless,Yes,Unheated Basement,F30 B30 L30 R30,"Double, Low-E, Non-metal, Air, M-Gain" +265,5A,Hour19,"G2600210, G26002400",No,None,Not in a census Place,"MI, Berrien County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"MI, 02400",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",104,RFCMc,No,Hour21,None,MI,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Vented Crawlspace,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,60000-69999,60000-79999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,None,1 Car,"Single-Family Detached, Vented Crawlspace, No Attic, 1 Car Garage",Crawlspace,"30% Leakage to Outside, Uninsulated",<8,Brick,None,80% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +266,5B,Hour3,"G0800310, G08000815",No,None,"CO, Denver","CO, Denver County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"CO, 00815",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback +3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",33,RMPAc,No,Hour16,None,CO,Mountain,Mountain North,West,100% CFL,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Heated Basement,Central AC,78F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +2h,200000+,140000+,150000+,2000-2499,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Low-E, Non-metal, Air, M-Gain" +267,5A,Hour18,"G4200070, G42001502",No,None,In another census Place,"PA, Beaver County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"PA, 01502",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +1h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",115,RFCWc,No,Hour18,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% CFL,CR07,101%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,4,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,10 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +268,5A,Hour7,"G2601250, G26002904",No,None,Not in a census Place,"MI, Oakland County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MI, 02904",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -3h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour20,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Slab,Central AC,68F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night -5h,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"30% Leakage to Outside, R-4",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,25 ACH50,R-49,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Gas,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Tankless,Yes,Living Space,F6 B6 L6 R6,"Double, Low-E, Non-metal, Air, M-Gain" +269,6B,Hour7,"G3000310, G30000500",No,None,"MT, Bozeman","MT, Gallatin County",Non-CBSA Mountain,6B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"MT, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,Not/partially in metro area,18,NWPPc,No,Hour15,None,MT,Mountain,Mountain North,West,100% Incandescent,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,None,70F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +5h,120000-139999,120000-139999,100000-149999,2500-2999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,5 ACH50,R-38,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Unfinished, Uninsulated",None,"Wood Stud, R-11",2,150%+,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +270,5A,Hour2,"G3600550, G36000906",No,None,Not in a census Place,"NY, Monroe County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NYISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NY, 00906",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",127,NYSTc,No,Hour15,None,NY,Middle Atlantic,Middle Atlantic,Northeast,100% LED,CR07,101%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1960s,Natural Gas,Ducted Heating,1960-79,Heated Basement,Room AC,70F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night -3h,80000-99999,80000-99999,60000-99999,1500-1999,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Heated Basement, Vented Attic, 2 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",20% Conditioned,15 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Premium,Yes,Heated Basement,F9 B9 L9 R9,"Single, Clear, Non-metal" +271,5A,Hour12,"G4200030, G42001802",No,None,Not in a census Place,"PA, Allegheny County",Non-CBSA Middle Atlantic,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"PA, 01802",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",115,RFCWc,No,Hour10,None,PA,Middle Atlantic,Middle Atlantic,Northeast,100% Incandescent,CR07,101%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,76F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,200000+,140000+,150000+,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",4,150%+,400%+,Yes,Gas,Standard,Gas,318 Rated kWh,No,EF 19.9,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +272,5A,Hour20,"G1701110, G17003602",No,None,In another census Place,"IL, McHenry County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"IL, 03602",Single-Family Detached,None,None,Single-Family Detached,Yes,9F,Night Setback,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour21,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Slab,Central AC,65F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,3000-3999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Slab, Vented Attic, 2 Car Garage",Attic,"10% Leakage to Outside, R-4",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,10 ACH50,R-30,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11",2,150%+,400%+,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Premium,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +273,5A,Hour9,"G1700310, G17003408",No,None,"IL, Cicero","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southeast,None,"IL, 03408",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour20,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Non-Ducted Heating,<1940,Unheated Basement,Room AC,72F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 80% AFUE",No,Natural Gas Fuel Boiler,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,3000-3999,3,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",None,None,<8,Wood Frame,"Brick, Medium/Dark",<10% Conditioned,25 ACH50,Uninsulated,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Single, Clear, Non-metal" +274,5A,Hour2,"G2601630, G26003212",No,None,"MI, Detroit","MI, Wayne County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"MI, 03212",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -5h,Not Applicable,Left/Right at 15ft,"In metro area, principal city",103,RFCMc,No,Hour18,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,78F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,<10000,<20000,<20000,750-999,2,0-1499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Brick,None,60% Conditioned,20 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Brick, 12-in, 3-wythe, Uninsulated",1,0-30%,0-100%,Yes,Electric,Standard,Gas,None,No,None,None,None,None,None,None,EF 19.9,Wood Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +275,5A,Hour16,"G3101090, G31000801",No,None,"NE, Lincoln","NE, Lancaster County",Non-CBSA West North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northeast,None,"NE, 00801",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",41,MROWc,No,Hour17,None,NE,West North Central,West North Central,Midwest,100% Incandescent,CR08,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Slab,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"10% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",100% Conditioned,30 ACH50,R-13,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",3,120-150%,400%+,Yes,Electric,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F9 B9 L9 R9,"Single, Clear, Metal" +276,5A,Hour0,"G2600990, G26003004",No,None,Not in a census Place,"MI, Macomb County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,Gas Fireplace,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"MI, 03004",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour18,None,MI,East North Central,East North Central,Midwest,100% LED,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1970s,Natural Gas,Ducted Heating,1960-79,Unheated Basement,Room AC,70F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,75F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,2,0-1499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,"Vinyl, Light",40% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, R-7",2,120-150%,400%+,Yes,Gas,Standard,Electric Resistance,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 15.9,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +277,5B,Hour22,"G4900350, G49035005",No,None,"UT, Millcreek","UT, Salt Lake County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"UT, 35005",Single-Family Detached,None,None,Single-Family Detached,Yes,9F,Night Setback +5h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",25,NWPPc,No,Hour10,None,UT,Mountain,Mountain North,West,100% CFL,CR05,91%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Slab,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night -4h,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Slab, Vented Attic, 1 Car Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Brick, Medium/Dark",100% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Premium,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +278,5A,Hour0,"G3900950, G39000500",No,None,"OH, Toledo","OH, Lucas County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"OH, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",111,RFCWc,No,Hour19,None,OH,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,<10000,<20000,<20000,1500-1999,2,1500-2499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,20 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",2,0-30%,0-100%,Yes,Electric,Standard,Gas,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +279,5A,Hour20,"G3900410, G39004000",No,None,Not in a census Place,"OH, Delaware County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"OH, 04000",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",112,RFCWc,No,Hour13,None,OH,East North Central,East North Central,Midwest,100% LED,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,75F,None,"AC, SEER 8",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,Yes,3F,Night +3h,200000+,140000+,150000+,3000-3999,5,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,3 Car,"Single-Family Detached, Slab, Vented Attic, 3 Car Garage",Attic,"30% Leakage to Outside, R-8",<8,Wood Frame,"Vinyl, Light",60% Conditioned,5 ACH50,R-38,None,None,None,"Unfinished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-11",4,150%+,400%+,Yes,Electric,EnergyStar,Gas,290 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Garage,F18 B18 L18 R18,"Double, Clear, Metal, Air" +280,5B,Hour19,"G3200310, G32000101",No,None,"NV, Reno","NV, Washoe County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.5,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"NV, 00101",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",12,NWPPc,No,Hour10,None,NV,Mountain,Mountain South,West,100% CFL,CR10,84%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1990s,Natural Gas,Ducted Heating,1980-99,Slab,Central AC,76F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,Yes,6F,Night +4h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"30% Leakage to Outside, R-4",<8,Wood Frame,"Stucco, Light",100% Conditioned,15 ACH50,None,None,None,None,"Finished, R-38",Uninsulated,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,EF 17.6,None,None,Has Pool,None,1.0 HP Pump,EF 19.9,"Tile, Concrete",Electricity,Electric Standard,Yes,Garage,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +281,5A,Hour23,"G1901630, G19000900",No,None,"IA, Davenport","IA, Scott County",Non-CBSA West North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"IA, 00900",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",70,MROWc,No,Hour10,None,IA,West North Central,West North Central,Midwest,100% Incandescent,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,80F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night +3h,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,20 ACH50,R-49,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",1,100-120%,400%+,Yes,Gas,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +282,5B,Hour2,"G0800310, G08000812",No,None,"CO, Denver","CO, Denver County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northwest,None,"CO, 00812",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, principal city",33,RMPAc,No,Hour18,None,CO,Mountain,Mountain North,West,100% CFL,CR05,91%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Slab,Central AC,70F,None,"AC, SEER 15",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2500-2999,4,2500-3999,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Slab, No Attic, No Garage",Living Space,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",80% Conditioned,15 ACH50,None,None,None,None,"Finished, R-19",Uninsulated,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,290 Rated kWh,No,None,"EF 12, National Average",Electricity,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Living Space,F12 B12 L12 R12,"Double, Clear, Non-metal, Air" +283,5A,Hour3,"G3100550, G31000901",No,None,"NE, Omaha","NE, Douglas County",Non-CBSA West North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,SPP,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NE, 00901",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback +2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",41,MROWc,No,Hour14,None,NE,West North Central,West North Central,Midwest,100% CFL,CR08,95%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Heated Basement,Central AC,70F,None,"AC, SEER 13",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,4000+,3,4000+,2,None,None,None,Single-Family Detached,2,None,3 Car,"Single-Family Detached, Heated Basement, No Attic, 3 Car Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",60% Conditioned,2 ACH50,None,Uninsulated,"Wall R-10, Exterior","R-10, Exterior","Finished, R-38",None,"Wood Stud, R-15",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Heated Basement,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +284,5A,Hour23,"G1700310, G17003525",No,None,"IL, Chicago","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",South,None,"IL, 03525",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",80,RFCWc,None,Hour16,None,IL,East North Central,East North Central,Midwest,100% Incandescent,CR04,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,2000s,Electricity,Non-Ducted Heating,2000-09,Slab,Room AC,70F,None,"Room AC, EER 10.7",No,"Electric Baseboard, 100% Efficiency",Yes,Electricity Baseboard,None,None,None,None,None,70F,No,0F,None,200000+,140000+,150000+,1000-1499,2,0-1499,4,Middle,183,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Slab, No Attic, No Garage",None,None,<8,Wood Frame,"Brick, Medium/Dark",60% Conditioned,15 ACH50,None,None,None,None,"Finished, R-30","2ft R10 Perimeter, Vertical","Wood Stud, R-11",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,No,None,F30 B30 L30 R30,"Double, Clear, Metal, Air" +285,5A,Hour4,"G1701130, G17002000",No,None,"IL, Bloomington","IL, McLean County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"IL, 02000",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",83,SRMWc,No,Hour10,None,IL,East North Central,East North Central,Midwest,100% CFL,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,78F,None,"AC, SEER 8",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,80000-99999,80000-99999,60000-99999,1000-1499,4,0-1499,2,None,None,None,Single-Family Detached,2,None,1 Car,"Single-Family Detached, Unheated Basement, No Attic, 1 Car Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,40 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-19",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,Yes,Gas,EnergyStar,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Double, Low-E, Non-metal, Air, M-Gain" +286,5A,Hour18,"G3900990, G39001500",No,None,"OH, Youngstown","OH, Mahoning County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",Northeast,None,"OH, 01500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",111,RFCWc,No,Hour11,None,OH,East North Central,East North Central,Midwest,100% LED,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,Yes,3F,Night -1h,80000-99999,80000-99999,60000-99999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Brick,None,100% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-38",None,"Brick, 12-in, 3-wythe, Uninsulated",5,120-150%,200-300%,Yes,Electric,Standard,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Low-E, Non-metal, Air, M-Gain" +287,5A,Hour21,"G1700310, G17003414",No,None,In another census Place,"IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"IL, 03414",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback -2h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",80,RFCWc,No,Hour8,None,IL,East North Central,East North Central,Midwest,100% LED,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1950s,Natural Gas,Ducted Heating,1940-59,Unheated Basement,Room AC,78F,None,"Room AC, EER 12.0",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,100000-119999,100000-119999,100000-149999,1000-1499,2,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,1 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 1 Car Garage",Unheated Basement,"20% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",20% Conditioned,30 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,EF 19.9,None,Electricity,None,None,None,EF 17.6,Composition Shingles,Electricity,Electric Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air, Exterior Clear Storm" +288,5A,Hour6,"G1700310, G17003502",No,None,"IL, Chicago","IL, Cook County","CBSA Chicago-Naperville-Elgin, IL-IN-WI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"IL, 03502",50 or more Unit,None,None,Multi-Family with 5+ Units,No,0F,None,Double-Loaded Interior,12,"In metro area, principal city",80,RFCWc,None,Hour1,None,IL,East North Central,East North Central,Midwest,100% Incandescent,CR04,89%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,None,70F,None,None,No,"Fuel Wall/Floor Furnace, 60% AFUE",No,Natural Gas Fuel Wall/Floor Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,750-999,2,0-1499,6,Middle,116,Middle,"Multifamily with 5+ units, 4-7 stories",4+,None,None,"Multi-Family with 5+ Units Middle Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Brick,None,None,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Brick, 12-in, 3-wythe, Uninsulated",2,120-150%,400%+,None,None,None,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F18 B18 L18 R18,"Single, Clear, Non-metal" +289,6A,Hour23,"G5501390, G55001501",No,None,"WI, Oshkosh","WI, Winnebago County",Non-CBSA East North Central,6A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"WI, 01501",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",76,MROEc,No,Hour22,None,WI,East North Central,East North Central,Midwest,100% Incandescent,CR02,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Heated Basement,Central AC,75F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,3F,Night -5h,100000-119999,100000-119999,100000-149999,1500-1999,3,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Heated Basement, Vented Attic, No Garage",Heated Basement,"0% Leakage to Outside, Uninsulated",<8,Wood Frame,"Brick, Medium/Dark",60% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,"Metal, Dark",Electricity,Electric Standard,Yes,Heated Basement,F9 B9 L9 R9,"Single, Clear, Non-metal" +290,5A,Hour1,"G3300150, G33001000",No,None,Not in a census Place,"NH, Rockingham County","CBSA Boston-Cambridge-Newton, MA-NH",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",West,None,"NH, 01000",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",130,NEWEc,No,Hour0,None,NH,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,None,No,None,None,None,Owner,1980s,Fuel Oil,Ducted Heating,1980-99,Slab,Room AC,80F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 80% AFUE",No,Fuel Oil Fuel Furnace,None,None,None,None,None,70F,Yes,3F,Night +5h,200000+,140000+,150000+,3000-3999,5,2500-3999,2,None,None,None,Single-Family Detached,2,None,2 Car,"Single-Family Detached, Slab, No Attic, 2 Car Garage",Garage,"30% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",20% Conditioned,15 ACH50,None,None,None,None,"Finished, R-30",Uninsulated,"Wood Stud, R-11",4,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Fuel Oil,Fuel Oil Standard,Yes,Garage,F15 B15 L15 R15,"Double, Clear, Non-metal, Air" +291,5A,Hour20,"G4400070, G44000103",No,None,"RI, Providence","RI, Providence County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.7,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",East,None,"RI, 00103",3 or 4 Unit,None,None,Multi-Family with 2 - 4 Units,Yes,2F,Night Setback +5h,Double-Loaded Interior,12,"In metro area, principal city",133,NEWEc,None,Hour0,None,RI,New England,New England,Northeast,100% CFL,CR03,121%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Renter,<1940,Natural Gas,Non-Ducted Heating,<1940,Vented Crawlspace,Room AC,70F,Heating Only,"Room AC, EER 10.7",No,Shared Heating,No,Natural Gas Shared Heating,"Boiler Baseboards Heating Only, Fuel",None,None,None,None,68F,No,0F,None,15000-19999,<20000,<20000,1000-1499,2,0-1499,3,Top,3,Not Applicable,Multifamily with 2-4 Units,3,None,None,"Multi-Family with 2 - 4 Units Top Unit, Vented Crawlspace, No Attic, No Garage",None,None,<8,Wood Frame,"Vinyl, Light",40% Conditioned,8 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-49",None,"Wood Stud, Uninsulated",1,0-30%,100-150%,Yes,Electric,Standard,Gas,None,No,None,None,None,None,None,None,EF 17.6,Composition Shingles,Natural Gas,Natural Gas Standard,No,None,F15 B15 L15 R15,"Single, Clear, Non-metal" +292,5A,Hour6,"G3900350, G39000902",No,None,In another census Place,"OH, Cuyahoga County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"OH, 00902",Single-Family Detached,None,None,Single-Family Detached,Yes,9F,Night Setback -5h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",111,RFCWc,No,Hour14,None,OH,East North Central,East North Central,Midwest,100% LED,CR04,85%,Low,80% Usage,80% Usage,80% Usage,80% Usage,50% Usage,50%,95% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 13",Yes,"Fuel Furnace, 76% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,70F,No,0F,None,80000-99999,80000-99999,60000-99999,2500-2999,4,2500-3999,2,None,None,None,Single-Family Detached,2,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,R-13,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",5,100-120%,300-400%,Yes,Electric,EnergyStar,Electric Resistance,None,No,None,None,None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Metal, Air" +293,5A,Hour0,"G3900930, G39000802",No,None,In another census Place,"OH, Lorain County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,PJM,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",North,None,"OH, 00802",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",111,RFCWc,No,Hour1,None,OH,East North Central,East North Central,Midwest,100% Incandescent,CR04,85%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Unheated Basement,Central AC,72F,None,"AC, SEER 15",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,Yes,12F,Night -5h,80000-99999,80000-99999,60000-99999,2000-2499,3,1500-2499,1,None,None,None,Single-Family Detached,1,Vented Attic,2 Car,"Single-Family Detached, Unheated Basement, Vented Attic, 2 Car Garage",Unheated Basement,"30% Leakage to Outside, R-6",<8,Wood Frame,"Vinyl, Light",100% Conditioned,15 ACH50,R-30,Ceiling R-13,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,EF 17.6,None,None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Low-E, Non-metal, Air, M-Gain" +294,5A,Hour20,"G2601210, G26000700",No,None,Not in a census Place,"MI, Muskegon County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Northeast,None,"MI, 00700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour17,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Central AC,72F,None,"AC, SEER 10",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,72F,No,0F,None,60000-69999,60000-79999,60000-99999,1500-1999,5,1500-2499,2,None,None,None,Single-Family Detached,2,Finished Attic or Cathedral Ceilings,None,"Single-Family Detached, Unheated Basement, Finished Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,10 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-30",None,"Wood Stud, Uninsulated",2,120-150%,300-400%,Yes,Gas,Standard,Electric Resistance,None,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +295,5A,Hour6,"G1800390, G18000500",No,None,Not in a census Place,"IN, Elkhart County",Non-CBSA East North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",Southwest,None,"IN, 00500",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",105,RFCWc,No,Hour17,None,IN,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,Room AC,70F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,67F,No,0F,None,50000-59999,40000-59999,40000-59999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Unheated Basement, Vented Attic, No Garage",Unheated Basement,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Vinyl, Light",100% Conditioned,20 ACH50,R-19,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, Uninsulated",2,100-120%,300-400%,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 15.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Unheated Basement,F6 B6 L6 R6,"Double, Clear, Non-metal, Air" +296,5A,Hour10,"G2500010, G25004700",No,None,In another census Place,"MA, Barnstable County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"MA, 04700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",131,NEWEc,No,Hour6,None,MA,New England,New England,Northeast,100% LED,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,1980s,Natural Gas,Ducted Heating,1980-99,Unvented Crawlspace,Central AC,60F,None,"AC, SEER 13",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,200000+,140000+,150000+,2000-2499,4,1500-2499,2,None,None,None,Single-Family Detached,2,Vented Attic,2 Car,"Single-Family Detached, Unvented Crawlspace, Vented Attic, 2 Car Garage",Crawlspace,"10% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",100% Conditioned,15 ACH50,R-30,Uninsulated,Uninsulated,Uninsulated,"Unfinished, Uninsulated",None,"Wood Stud, R-19",4,150%+,400%+,Yes,Electric,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Electricity,Electric Premium,Yes,Living Space,F6 B6 L6 R6,"Double, Clear, Non-metal, Air" +297,5A,Hour18,"G2601470, G26003100",No,None,Not in a census Place,"MI, St. Clair County","CBSA Detroit-Warren-Dearborn, MI",5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.4,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,Gas Grill,None,None,"Cooling Season, 7 days/wk",Northwest,None,"MI, 03100",Single-Family Detached,None,None,Single-Family Detached,Yes,2F,Night Setback +4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",103,RFCMc,No,Hour17,None,MI,East North Central,East North Central,Midwest,100% CFL,CR04,85%,High,120% Usage,120% Usage,120% Usage,120% Usage,200% Usage,200%,105% Usage,Occupied,None,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Unheated Basement,None,70F,None,None,Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,68F,No,0F,None,80000-99999,80000-99999,60000-99999,2000-2499,2,1500-2499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",Unheated Basement,"30% Leakage to Outside, Uninsulated",<8,Wood Frame,"Wood, Medium/Dark",None,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-13",None,"Wood Stud, Uninsulated",4,100-120%,300-400%,Yes,Gas,EnergyStar,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 17.6,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Unheated Basement,F15 B15 L15 R15,"Single, Clear, Non-metal" +298,5B,Hour1,"G4900110, G49011001",No,None,In another census Place,"UT, Davis County",Non-CBSA Mountain,5B,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,0.8,None,None,None,No,No Exterior Use,Uninsulated,None,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"UT, 11001",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",25,NWPPc,No,Hour7,None,UT,Mountain,Mountain North,West,100% LED,CR05,91%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,2000s,Natural Gas,Ducted Heating,2000-09,Slab,Central AC,68F,None,"AC, SEER 15",Yes,"Fuel Furnace, 80% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,62F,Yes,3F,Night +3h,100000-119999,100000-119999,100000-149999,3000-3999,4,2500-3999,2,None,None,None,Single-Family Detached,2,None,3 Car,"Single-Family Detached, Slab, No Attic, 3 Car Garage",Garage,"10% Leakage to Outside, R-8",<8,Wood Frame,"Stucco, Light",60% Conditioned,4 ACH50,None,None,None,None,"Finished, Uninsulated","2ft R10 Perimeter, Vertical","Wood Stud, R-19",2,150%+,400%+,Yes,Electric,Standard,Electric Resistance,318 Rated kWh,No,None,"EF 12, National Average",None,None,None,None,EF 19.9,Composition Shingles,Natural Gas,Natural Gas Standard,Yes,Garage,F18 B18 L18 R18,"Double, Clear, Non-metal, Air" +299,5A,Hour6,"G0900070, G09000700",No,None,Not in a census Place,"CT, Middlesex County",Non-CBSA New England,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,NEISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,None,"Cooling Season, 7 days/wk",South,None,"CT, 00700",Single-Family Detached,None,None,Single-Family Detached,No,0F,None,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",132,NEWEc,No,Hour17,None,CT,New England,New England,Northeast,100% Incandescent,CR03,99%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Fuel Oil,Non-Ducted Heating,<1940,Unheated Basement,Room AC,70F,None,"Room AC, EER 10.7",No,"Fuel Boiler, 90% AFUE",No,Fuel Oil Fuel Boiler,None,None,None,None,None,65F,Yes,3F,Night +4h,100000-119999,100000-119999,100000-149999,1000-1499,3,0-1499,2,None,None,None,Single-Family Detached,2,None,None,"Single-Family Detached, Unheated Basement, No Attic, No Garage",None,None,<8,Wood Frame,"Wood, Medium/Dark",40% Conditioned,15 ACH50,None,Uninsulated,Uninsulated,Uninsulated,"Finished, R-7",None,"Wood Stud, Uninsulated",2,120-150%,400%+,Yes,Electric,Standard,Gas,318 Rated kWh,No,None,None,None,None,None,None,EF 19.9,Composition Shingles,Fuel Oil,FIXME Fuel Oil Indirect,Yes,Unheated Basement,F9 B9 L9 R9,"Double, Clear, Non-metal, Air" +300,5A,Hour23,"G1901130, G19001000",No,None,"IA, Cedar Rapids","IA, Linn County",Non-CBSA West North Central,5A,Cold,None,20 ft^2,Fiberglass,2 ft,None,Northern,1.1,None,None,None,No,No Exterior Use,Uninsulated,MISO,"Summer = 0.7, Winter = 0.85",100% Usage,100% Usage,None,None,None,None,Typical Efficiency,"Cooling Season, 7 days/wk",North,None,"IA, 01000",Single-Family Detached,None,None,Single-Family Detached,Yes,5F,Night Setback -4h,Not Applicable,Left/Right at 15ft,"In metro area, not/partially in principal city",70,MROWc,No,Hour14,None,IA,West North Central,West North Central,Midwest,100% LED,CR02,95%,Medium,100% Usage,100% Usage,100% Usage,100% Usage,100% Usage,100%,100% Usage,Occupied,Standard Efficiency,No,None,None,None,Owner,<1940,Natural Gas,Ducted Heating,<1940,Slab,Room AC,76F,None,"Room AC, EER 10.7",Yes,"Fuel Furnace, 92.5% AFUE",No,Natural Gas Fuel Furnace,None,None,None,None,None,62F,Yes,3F,Night +5h,80000-99999,80000-99999,60000-99999,1000-1499,3,0-1499,1,None,None,None,Single-Family Detached,1,Vented Attic,None,"Single-Family Detached, Slab, Vented Attic, No Garage",Attic,"20% Leakage to Outside, R-4",<8,Wood Frame,"Vinyl, Light",60% Conditioned,15 ACH50,R-38,None,None,None,"Unfinished, Uninsulated",Uninsulated,"Wood Stud, R-11",2,120-150%,400%+,Yes,Electric,Standard,Gas,290 Rated kWh,No,EF 17.6,"EF 12, National Average",None,None,None,None,EF 19.9,"Asphalt Shingles, Medium",Electricity,Electric Standard,Yes,Living Space,F15 B15 L15 R15,"Double, Clear, Metal, Air" From e71f464f98b4f8ad20aa69fbab121220bfc70a92 Mon Sep 17 00:00:00 2001 From: Yingli Date: Wed, 28 Feb 2024 14:07:08 -0700 Subject: [PATCH 19/19] hp sizing --- project_national/panel_upgrades_hp_sizing.yml | 82 ++++++++++++++++++- resources/options_lookup.tsv | 8 +- 2 files changed, 85 insertions(+), 5 deletions(-) diff --git a/project_national/panel_upgrades_hp_sizing.yml b/project_national/panel_upgrades_hp_sizing.yml index 816106fba4..62c73fa9d1 100644 --- a/project_national/panel_upgrades_hp_sizing.yml +++ b/project_national/panel_upgrades_hp_sizing.yml @@ -3,7 +3,7 @@ os_version: 3.7.0 os_sha: d5269793f1 buildstock_directory: ../ # Relative to this file or absolute project_directory: project_national # Relative to buildstock_directory -output_directory: /kfs2/projects/panels/test_run/test_run_20240126 +output_directory: /kfs2/projects/panels/test_run/hp_sizing_test_run_20240228 #weather_files_url: https://data.nrel.gov/system/files/156/BuildStock_TMY3_FIPS.zip weather_files_path: /kfs2/shared-projects/buildstock/weather/BuildStock_2018_FIPS.zip @@ -107,7 +107,7 @@ references: - *logic_ducted_hvac_no_ashp - *logic_ductless_hvac_no_mshp - #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + #### 1.2 Federal Minimum Heat Pump With Electric Backup Max Load, 2 options #### - &fed_min_ashp_ducted option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing # same as base option apply_logic: @@ -148,7 +148,7 @@ references: multiplier: Size, Heating System Primary (kBtu/h) lifetime: *lifetime_HP - #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + #### 1.4 High-Efficiency Heat Pump With Electric Backup Max Load, 2 options #### - &high_eff_ashp_ducted option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing apply_logic: @@ -188,6 +188,52 @@ references: - value: 369.43 multiplier: Size, Heating System Primary (kBtu/h) lifetime: *lifetime_HP + + #### 1.2 Federal Minimum Heat Pump With Electric Backup HERS, 2 options #### + - &fed_min_ashp_ducted_hers + option: HVAC Heating Efficiency|ASHP, SEER 15.05, 8.82 HSPF, HERS, Supplemental Backup Sizing # same as base option + apply_logic: + - HVAC Has Ducts|Yes + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: *costs_ashp_ducted_8-82_HSPF + lifetime: *lifetime_HP + + - &fed_min_mshp_ductless_hers + option: HVAC Heating Efficiency|MSHP, SEER 14.5, 8.33 HSPF, HERS, Supplemental Backup Sizing # federal minimum is SEER 14.3, but 14.5 is lowest SEER in baseline ResStock + apply_logic: + - HVAC Has Ducts|No + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: *costs_mshp_ductless_8-33_HSPF + lifetime: *lifetime_HP + + #### 1.4 High-Efficiency Heat Pump With Electric Backup HERS, 2 options #### + - &high_eff_ashp_ducted_hers + option: HVAC Heating Efficiency|ASHP, SEER 20, 11 HSPF, CCHP, HERS, Supplemental Backup Sizing + apply_logic: + - HVAC Has Ducts|Yes + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity ASHP + costs: *costs_ashp_ducted_SEER_20_11_HSPF + lifetime: *lifetime_HP + + - &high_eff_mshp_ductless_hers + option: HVAC Heating Efficiency|MSHP, SEER 20, 11 HSPF, CCHP, HERS, Supplemental Backup Sizing + apply_logic: + - HVAC Has Ducts|No + - not: + - Heating Fuel|None + - HVAC Cooling Type|None + - not: HVAC Heating Type And Fuel|Electricity MSHP + costs: *costs_mshp_ductless_SEER_20_11_HSPF + lifetime: *lifetime_HP upgrades: - upgrade_name: Federal Minimum Heat Pump With Electric Backup MaxLoad Sizing @@ -219,6 +265,36 @@ upgrades: #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### - *high_eff_ashp_ducted - *high_eff_mshp_ductless + + - upgrade_name: Federal Minimum Heat Pump With Electric Backup HERS Sizing + options: + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none + #### 1.2 Federal Minimum Heat Pump With Electric Backup, 2 options #### + - *fed_min_ashp_ducted_hers + - *fed_min_mshp_ductless_hers + + - upgrade_name: High-Efficiency Heat Pump With Electric Backup HERS Sizing + options: + #### 1.0 Common Options For Heat Pump with ele backup, 8 options #### + - *heating_fuel + - *cooling_efficiency_ducted + - *cooling_efficiency_ductless + - *100_percent_conditioned + - *cooling_setpoint_offset_magnitude_0 + - *cooling_setpoint_offset_period_none + - *heating_setpoint_offset_magnitude_0 + - *heating_setpoint_offset_period_none + #### 1.4 High-Efficiency Heat Pump With Electric Backup, 2 options #### + - *high_eff_ashp_ducted_hers + - *high_eff_mshp_ductless_hers kestrel: n_jobs: 40 #240 for 550K diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 183dae8845..a35c804e28 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -9641,7 +9641,7 @@ Ground Thermal Conductivity 0.8 ResStockArguments site_ground_conductivity=0.8 Ground Thermal Conductivity 1.1 ResStockArguments site_ground_conductivity=1.1 Ground Thermal Conductivity 1.4 ResStockArguments site_ground_conductivity=1.4 Ground Thermal Conductivity 1.7 ResStockArguments site_ground_conductivity=1.7 -Ground Thermal Conductivity 2.0 ResStockArguments site_ground_conductivity=2.0 +Ground Thermal Conductivity 2 ResStockArguments site_ground_conductivity=2.0 Ground Thermal Conductivity 2.3 ResStockArguments site_ground_conductivity=2.3 Ground Thermal Conductivity 2.6 ResStockArguments site_ground_conductivity=2.6 HVAC Cooling Efficiency "AC, SEER 10" ResStockArguments cooling_system_type=central air conditioner cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=10 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false cooling_system_cooling_compressor_type=auto cooling_system_cooling_sensible_heat_fraction=auto cooling_system_crankcase_heater_watts=auto cooling_system_integrated_heating_system_capacity=auto cooling_system_integrated_heating_system_efficiency_percent=auto cooling_system_integrated_heating_system_fraction_heat_load_served=auto cooling_system_integrated_heating_system_fuel=auto @@ -12990,7 +12990,7 @@ Windows No Windows ResStockArguments window_ufactor=0.84 window_shgc=0.63 skylig Windows Void Infiltration Reduction 30% ResStockArguments air_leakage_percent_reduction=30 HVAC Secondary Heating Fuel Other Fuel ResStockArguments heating_system_2_fuel=wood -HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, Max Load, Emergency Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental @@ -13020,3 +13020,7 @@ HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backu HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Propane, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 15.05, 8.82 HSPF, Integrated Backup, Emergency Backup Sizing, 92.5% AFUE Other Fuel, 0F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=wood heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, Separate Backup, Emergency Backup Sizing, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=MaxLoad heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=0.0 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=emergency +HVAC Heating Efficiency "ASHP, SEER 15.05, 8.82 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.82 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15.05 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.425 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=0 heat_pump_cooling_compressor_type=single stage heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.33 HSPF, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.33 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-15 heat_pump_cooling_compressor_type=variable speed heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_is_ducted=true heat_pump_backup_sizing_methodology=supplemental +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, HERS, Supplemental Backup Sizing" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=HERS heat_pump_heating_capacity=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto heat_pump_backup_sizing_methodology=supplemental